Pause/unpause by tapping the screen now works
[ghostsoverboard] / mainwindow.h
index 58d2a4e..b96eb4a 100644 (file)
@@ -1,9 +1,34 @@
+/**************************************************************************
+        Ghosts Overboard - a game for Maemo 5
+
+        Copyright (C) 2011  Heli Hyvättinen
+
+        This file is part of Ghosts Overboard
+
+        Ghosts Overboard 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 2 of the License, or
+        (at your option) any later version.
+
+        This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
+**************************************************************************/
+
 #ifndef MAINWINDOW_H
 #define MAINWINDOW_H
 
 #include <QtGui/QMainWindow>
 #include <QGraphicsView>
 #include "orientationcontrolledgraphicspixmapobject.h"
+#include "seascene.h"
+#include "seaview.h"
+#include "level.h"
 
 class MainWindow : public QMainWindow
 {
@@ -13,18 +38,25 @@ public:
     MainWindow(QWidget *parent = 0);
     ~MainWindow();
 
+    bool event(QEvent *event);
+
 public slots:
     void initializeBoundaries();
-    void pause(bool paused);
+    void restartLevel();
+    void about();
+    void nextLevel();
+    void restartGame();
 
-private:
 
-QGraphicsScene * pScene_;
-QGraphicsView * pView_;
-OrientationControlledGraphicsPixmapObject * pTursas_;
-bool paused_;
 
+private:
 
+SeaScene * pScene_;
+SeaView * pView_;
+QAction* pPauseAction_;
+QList<Level> levelList_;
+int currentLevel_;
+QAction* pVibrateAction_;
 
 
 };