/*************************************************************************** kafkadragobject.h ------------------- copyright : (C) 2004 - Paulo Moura Guedes email : moura@tdewebdev.org ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef KAFKADRAGOBJECT_H #define KAFKADRAGOBJECT_H #include #include class Node; /** @author Paulo Moura Guedes */ class KafkaDragObject: public TQStoredDrag { Q_OBJECT TQ_OBJECT public: KafkaDragObject(Node const* item, TQWidget* dragSource = 0, const char* name = 0); ~KafkaDragObject(); TQByteArray encodedData(const char* c) const; Node const* getItem() const; static bool canDecode(TQMimeSource*); static bool decode(TQMimeSource*, Node* node); private: TQByteArray m_array; Node const* m_item; static char const* m_mimetype; }; #endif