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.
tdewebdev/quanta/parts/kafka/kafkadragobject.h

52 lines
1.6 KiB

/***************************************************************************
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 <tqcstring.h>
#include <tqdragobject.h>
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 tqencodedData(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