summaryrefslogtreecommitdiffstats
path: root/ksysv/ksvdrag.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksysv/ksvdrag.h')
-rw-r--r--ksysv/ksvdrag.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/ksysv/ksvdrag.h b/ksysv/ksvdrag.h
new file mode 100644
index 0000000..272f16d
--- /dev/null
+++ b/ksysv/ksvdrag.h
@@ -0,0 +1,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