diff options
Diffstat (limited to 'Swift/QtUI/QtLineEdit.h')
-rw-r--r-- | Swift/QtUI/QtLineEdit.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Swift/QtUI/QtLineEdit.h b/Swift/QtUI/QtLineEdit.h new file mode 100644 index 0000000..de4706e --- /dev/null +++ b/Swift/QtUI/QtLineEdit.h @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2010 Kevin Smith + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <QLineEdit> + +namespace Swift { + class QtLineEdit : public QLineEdit { + Q_OBJECT + public: + QtLineEdit(QWidget* parent = NULL); + signals: + void escapePressed(); + protected: + virtual void keyPressEvent(QKeyEvent* event); + }; +} |