/*************************************************************************** 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 #include namespace Tellico { class DropHandler : public TQObject { TQ_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