[gui] s/Line_Edit/Drag_Drop_Line_Edit/.
[ttfautohint.git] / frontend / ddlineedit.h
blob4f8c9b7b62878c60b3b0efdbb87ffce447724709
1 // ddlineedit.h
3 // Copyright (C) 2012 by Werner Lemberg.
4 //
5 // This file is part of the ttfautohint library, and may only be used,
6 // modified, and distributed under the terms given in `COPYING'. By
7 // continuing to use, modify, or distribute this file you indicate that you
8 // have read `COPYING' and understand and accept it fully.
9 //
10 // The file `COPYING' mentioned in the previous paragraph is distributed
11 // with the ttfautohint library.
14 #ifndef __DDLINEEDIT_H__
15 #define __DDLINEEDIT_H__
17 #include <config.h>
19 #include <QtGui>
21 class Drag_Drop_Line_Edit
22 : public QLineEdit
24 Q_OBJECT
26 public:
27 Drag_Drop_Line_Edit(QWidget* = 0);
29 void dragEnterEvent(QDragEnterEvent*);
30 void dropEvent(QDropEvent*);
34 #endif // __DDLINEEDIT_H__
36 // end of ddlineedit.h