blob: 4c9a5acf710df27644f502ea2b1132b637d5c96d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/***************************************************************************
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
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
|