Fix Symbian bugs.
[dorian] / fullscreenwindow.h
index f7844a4..601269b 100644 (file)
@@ -1,31 +1,33 @@
 #ifndef FULLSCREENWINDOW_H
 #define FULLSCREENWINDOW_H
 
-#include <QMainWindow>
+#include <QRect>
+#include <QObject>
 
+#include "adopterwindow.h"
+
+class QWidget;
+class QMouseEvent;
+class QResizeEvent;
 class TranslucentButton;
 
-class FullScreenWindow: public QMainWindow
+/** A full screen window with a restore button. */
+class FullScreenWindow: public AdopterWindow
 {
     Q_OBJECT
+
 public:
-    explicit FullScreenWindow(QWidget *child, QWidget *parent);
+    explicit FullScreenWindow(QWidget *parent);
     void showFullScreen();
 
 signals:
+    /** Emitted when the restore button is pressed. */
     void restore();
 
-public slots:
-
 protected:
-#ifdef Q_WS_MAEMO_5
-#   define MOUSE_ACTIVATE_EVENT mouseReleaseEvent
-#else
-#   define MOUSE_ACTIVATE_EVENT mousePressEvent
-#endif
-    virtual void MOUSE_ACTIVATE_EVENT(QMouseEvent *event);
-    virtual void resizeEvent(QResizeEvent *event);
-    QRect fullScreenZone() const;
+    void resizeEvent(QResizeEvent *e);
+
+private:
     TranslucentButton *restoreButton;
 };