summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/QtViewHistoryWindow.cpp')
-rw-r--r--Swift/QtUI/QtViewHistoryWindow.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/Swift/QtUI/QtViewHistoryWindow.cpp b/Swift/QtUI/QtViewHistoryWindow.cpp
new file mode 100644
index 0000000..2f3bd9e
--- /dev/null
+++ b/Swift/QtUI/QtViewHistoryWindow.cpp
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 2011 Vlad Voicu
+ * Licensed under the Simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+#include "QtViewHistoryWindow.h"
+#include <QWidget>
+#include "QtDebug"
+#include <QBoxLayout>
+
+namespace Swift {
+
+QtViewHistoryWindow::QtViewHistoryWindow() {
+ qDebug() << "I am here";
+}
+
+void QtViewHistoryWindow::show() {
+ QWidget::show();
+ QWidget::activateWindow();
+}
+
+void QtViewHistoryWindow::hide() {
+ QWidget::hide();
+}
+
+void QtViewHistoryWindow::setEnabled(bool b) {
+ QWidget::setEnabled(b);
+}
+
+}