ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/Vago/libs/DropLineEdit/droplineedit.h
Revision: 1061
Committed: Fri Dec 9 19:04:18 2016 UTC (8 years, 10 months ago) by s10k
Content type: text/x-chdr
Original Path: Vago/trunk/Vago/libs/DropLineEdit/droplineedit.h
File size: 438 byte(s)
Log Message:
Added Vago 1.3

File Contents

# Content
1 #ifndef DROPLINEEDIT_H
2 #define DROPLINEEDIT_H
3
4 #include <QLineEdit>
5 #include <QtWidgets>
6
7 class DropLineEdit : public QLineEdit {
8
9 Q_OBJECT
10
11 public:
12 DropLineEdit(QWidget *parent = 0);
13
14 protected:
15 void dragEnterEvent(QDragEnterEvent *event);
16 void dragMoveEvent(QDragMoveEvent *event);
17 void dragLeaveEvent(QDragLeaveEvent *event);
18 void dropEvent(QDropEvent *event);
19 };
20
21 #endif // DROPLINEEDIT_H