changeset 6175 | a80833ddaef0 |
parent 6060 | fdfc01419815 |
child 6616 | f77bb02b669f |
--- a/QTfrontend/ui/widget/about.h Fri Oct 21 20:58:49 2011 +0200 +++ b/QTfrontend/ui/widget/about.h Sat Oct 22 00:00:48 2011 +0200 @@ -20,6 +20,8 @@ #define _ABOUT_H #include <QWidget> +#include <QDropEvent> +#include <QTextBrowser> class About : public QWidget @@ -28,6 +30,13 @@ public: About(QWidget * parent = 0); + +protected: + virtual void dragEnterEvent(QDragEnterEvent * event); + virtual void dropEvent(QDropEvent * event); + +private: + QTextBrowser * lbl2; }; #endif // _ABOUT_H