Initial commit, just the project skell
[slock] / src / mainwindow.cpp
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
new file mode 100644 (file)
index 0000000..3bb2417
--- /dev/null
@@ -0,0 +1,17 @@
+#include "mainwindow.h"
+
+#include <QDebug>
+
+MainWindow::MainWindow(QWidget *parent)
+    : QMainWindow(parent)
+{
+#ifdef MAEMO
+    showFullScreen();
+#endif
+    qDebug() << "Trying to grab all inputs.";
+}
+
+MainWindow::~MainWindow()
+{
+
+}