diff options
author | Robert Jonsson <spamatica@gmail.com> | 2011-08-27 20:17:59 +0000 |
---|---|---|
committer | Robert Jonsson <spamatica@gmail.com> | 2011-08-27 20:17:59 +0000 |
commit | cb4ae0b104084e9c054d2a1b28ce531d104e9d76 (patch) | |
tree | 28fd952bf2e1ab34826b8162e4980833c546e747 /muse2/awl/lineedit.h | |
parent | 543dbb22e201208aee602a1c56ab92d8b9adb53f (diff) |
full screen + part edit focus
Diffstat (limited to 'muse2/awl/lineedit.h')
-rw-r--r-- | muse2/awl/lineedit.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/muse2/awl/lineedit.h b/muse2/awl/lineedit.h new file mode 100644 index 00000000..4ad6116e --- /dev/null +++ b/muse2/awl/lineedit.h @@ -0,0 +1,18 @@ +#ifndef LINEEDIT_H +#define LINEEDIT_H + +#include <QLineEdit> + +class LineEdit : public QLineEdit +{ + Q_OBJECT +public: + explicit LineEdit(QWidget *parent = 0); + void focusOutEvent ( QFocusEvent * e ); +signals: + +public slots: + +}; + +#endif // LINEEDIT_H |