From 6dffe5cf7d64fc134f4db81362404949da9c56c1 Mon Sep 17 00:00:00 2001
From: Kevin Smith <git@kismith.co.uk>
Date: Mon, 24 May 2010 21:14:32 +0100
Subject: Forgotten files


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);
+}
+
+}
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);
+	};
+}
-- 
cgit v0.10.2-6-g49f6