summaryrefslogtreecommitdiffstats
path: root/examples/demo/dnd/dnd.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/demo/dnd/dnd.h')
-rw-r--r--examples/demo/dnd/dnd.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/examples/demo/dnd/dnd.h b/examples/demo/dnd/dnd.h
new file mode 100644
index 0000000..79d4526
--- /dev/null
+++ b/examples/demo/dnd/dnd.h
@@ -0,0 +1,40 @@
+#include <qpixmap.h>
+#include <qmap.h>
+#include "dndbase.h"
+
+#ifndef DNDDEMO_H
+#define DNDDEMO_H
+
+class IconItem
+{
+public:
+ IconItem( const QString& name = QString::null, const QString& icon = QString::null );
+
+ QString name() { return _name; }
+ QPixmap *pixmap() { return &_pixmap; }
+
+ Q_DUMMY_COMPARISON_OPERATOR( IconItem )
+
+protected:
+ QPixmap loadPixmap( const QString& name );
+
+private:
+ QString _name;
+ QPixmap _pixmap;
+};
+
+class DnDDemo : public DnDDemoBase
+{
+ Q_OBJECT
+
+public:
+ DnDDemo( QWidget* parent = 0, const char* name = 0 );
+ ~DnDDemo();
+
+ IconItem findItem( const QString& tag );
+
+private:
+ QMap<QString,IconItem> items;
+};
+
+#endif