Initial commit.
[jspeed] / src / mainwindow.h
diff --git a/src/mainwindow.h b/src/mainwindow.h
new file mode 100644 (file)
index 0000000..373fe2d
--- /dev/null
@@ -0,0 +1,56 @@
+/*
+ * This file is part of jSpeed.
+ *
+ * jSpeed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * jSpeed is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with jSpeed.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+
+#include <QMainWindow>
+
+class MainScreen;
+class MainWindowStack;
+class MainMenu;
+class Theme;
+
+class MainWindow : public QMainWindow
+{
+    Q_OBJECT
+
+public:
+    MainWindow();
+    ~MainWindow();
+
+signals:
+    void quit();
+
+private slots:
+    void minimize();
+    void openMenu();
+    void keepBacklightOn();
+    bool loadTheme();
+
+private:
+    void addScreens();
+    void startGps();
+    void startBacklight();
+    MainWindowStack* stack_;
+    MainMenu* menu_;
+    Theme* theme_;
+
+};
+
+#endif