summaryrefslogtreecommitdiffstats
path: root/kbarcode/mimesources.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbarcode/mimesources.h')
-rw-r--r--kbarcode/mimesources.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/kbarcode/mimesources.h b/kbarcode/mimesources.h
new file mode 100644
index 0000000..abaf5d7
--- /dev/null
+++ b/kbarcode/mimesources.h
@@ -0,0 +1,41 @@
+/***************************************************************************
+ mimesources.h - description
+ -------------------
+ begin : Son Sep 14 2003
+ copyright : (C) 2003 by Dominik Seichter
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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 MIMESOURCES_H
+#define MIMESOURCES_H
+
+#include <qdragobject.h>
+#include "documentitem.h"
+
+class KCommandHistory;
+class TokenProvider;
+class MyCanvasView;
+
+class DocumentItemDrag : public QStoredDrag {
+ Q_OBJECT
+ public:
+ DocumentItemDrag( QWidget* dragSource = NULL, const char* name = 0 );
+
+ static QString mimeType();
+
+ void setDocumentItem( DocumentItemList* list );
+
+ static bool canDecode( QMimeSource * );
+ static bool decode( QMimeSource *, MyCanvasView* cv, TokenProvider* token, KCommandHistory* history );
+};
+
+#endif