Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef QGO4LINEEDIT_H
00015 #define QGO4LINEEDIT_H
00016
00017 #include <QLineEdit>
00018
00019 #include <QDropEvent>
00020 #include <QDragEnterEvent>
00021
00028 #ifdef WIN32
00029
00030 class QGo4LineEdit : public QLineEdit {
00031
00032 #else
00033
00034 #include <QtDesigner/QDesignerExportWidget>
00035 class QDESIGNER_WIDGET_EXPORT QGo4LineEdit : public QLineEdit {
00036
00037 #endif
00038 Q_OBJECT
00039
00040
00041 public:
00042 QGo4LineEdit(QWidget *parent=0, const char *name=0);
00043 virtual ~QGo4LineEdit();
00044
00045 signals:
00046 void textDropped();
00047
00048 protected:
00049 virtual void dropEvent(QDropEvent*);
00050 virtual void dragEnterEvent(QDragEnterEvent*);
00051 };
00052
00053 #endif