blob: bbbb41536dd3201a796b21d7a9415d7d377020a2 (
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
|
// (c) 2000 Peter Putzer
#ifndef KSVDRAG_H
#define KSVDRAG_H
#include <tqdragobject.h>
class KSVData;
class KSVItem;
class QWidget;
class KSVDrag : public QDragObject
{
Q_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 encodedData (const char*) const;
static bool decodeNative (const TQMimeSource*, KSVData&);
private:
enum
{
Native, Text, URL
};
class Private;
Private* d;
};
#endif // KSVDRAG_H
|