You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
/***************************************************************************
|
|
copyright : (C) 2007 by Robby Stephenson
|
|
email : robby@periapsis.org
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of version 2 of the GNU General Public License as *
|
|
* published by the Free Software Foundation; *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef TELLICO_DROPHANDLER_H
|
|
#define TELLICO_DROPHANDLER_H
|
|
|
|
#include <tqobject.h>
|
|
#include <kurl.h>
|
|
|
|
namespace Tellico {
|
|
|
|
class DropHandler : public TQObject {
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
DropHandler(TQObject* parent);
|
|
~DropHandler();
|
|
|
|
protected:
|
|
bool eventFilter(TQObject* object, TQEvent* event);
|
|
|
|
private:
|
|
bool dragEnter(TQDragEnterEvent* event);
|
|
bool drop(TQDropEvent* event);
|
|
bool handleURL(const KURL::List& urls);
|
|
};
|
|
|
|
}
|
|
#endif
|