summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-05-24 20:14:32 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-05-24 20:14:32 (GMT)
commit6dffe5cf7d64fc134f4db81362404949da9c56c1 (patch)
treecdcfc9f5681848bbe12be1a63f10fc2913a61c7f /Swift/QtUI/QtLineEdit.cpp
parent95ff0fccf5fdefc395091a16e278bf3c2cd9d865 (diff)
downloadswift-6dffe5cf7d64fc134f4db81362404949da9c56c1.zip
swift-6dffe5cf7d64fc134f4db81362404949da9c56c1.tar.bz2
Forgotten files
Diffstat (limited to 'Swift/QtUI/QtLineEdit.cpp')
-rw-r--r--Swift/QtUI/QtLineEdit.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/Swift/QtUI/QtLineEdit.cpp b/Swift/QtUI/QtLineEdit.cpp
new file mode 100644
index 0000000..77134b1
--- /dev/null
+++ b/Swift/QtUI/QtLineEdit.cpp
@@ -0,0 +1,23 @@
+/*
+ * Copyright (c) 2010 Kevin Smith
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#include "Swift/QtUI/QtLineEdit.h"
+
+#include <QKeyEvent>
+
+namespace Swift {
+QtLineEdit::QtLineEdit(QWidget* parent) : QLineEdit(parent) {
+
+}
+
+void QtLineEdit::keyPressEvent(QKeyEvent* event) {
+ if (event->key() == Qt::Key_Escape) {
+ emit escapePressed();
+ }
+ QLineEdit::keyPressEvent(event);
+}
+
+}