blob: 00bb1a3ac656deb386b949d4b7aa5c2ce69cb842 (
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
|
// (c) 2000 Peter Putzer
#ifndef KSVDRAG_H
#define KSVDRAG_H
#include <tqdragobject.h>
class KSVData;
class KSVItem;
class TQWidget;
class KSVDrag : public TQDragObject
{
Q_OBJECT
TQ_OBJECT
public:
KSVDrag (const KSVData& item, TQWidget* dragSource = 0L, const char* name = 0L);
KSVDrag (const KSVItem& item, TQWidget* dragSource = 0L, const char* name = 0L);
virtual ~KSVDrag();
virtual const char* format (int i) const;
TQByteArray tqencodedData (const char*) const;
static bool decodeNative (const TQMimeSource*, KSVData&);
private:
enum
{
Native, Text, URL
};
class Private;
Private* d;
};
#endif // KSVDRAG_H
|