blob: 272f16dc7ee8f6d79df8ea8e43f463139625b836 (
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 <qdragobject.h>
class KSVData;
class KSVItem;
class QWidget;
class KSVDrag : public QDragObject
{
Q_OBJECT
public:
KSVDrag (const KSVData& item, QWidget* dragSource = 0L, const char* name = 0L);
KSVDrag (const KSVItem& item, QWidget* dragSource = 0L, const char* name = 0L);
virtual ~KSVDrag();
virtual const char* format (int i) const;
QByteArray encodedData (const char*) const;
static bool decodeNative (const QMimeSource*, KSVData&);
private:
enum
{
Native, Text, URL
};
class Private;
Private* d;
};
#endif // KSVDRAG_H
|