combjs

view gui/droplist.h @ 1:dd02002227a2

- added a few commandline arguments to combjs - trying to make a gui frontend
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 14 Jul 2011 15:40:20 +0300
parents
children
line source
1 #ifndef DROPLIST_H_
2 #define DROPLIST_H_
4 #include <QListWidget>
6 /* a custom drop-target list for the virtual joystick creation */
7 class DropList : public QListWidget {
8 Q_OBJECT
9 protected:
10 void dragMoveEvent(QDragMoveEvent *ev);
11 void dragEnterEvent(QDragEnterEvent *ev);
12 void dropEvent(QDropEvent *ev);
14 public:
15 DropList(QWidget *parent);
16 };
18 #endif /* DROPLIST_H_ */