Added signal strength indicator to detail screen. Changed speed treshold to change...
[jspeed] / src / graphicsscreen.h
index 75947a7..7bc8ed8 100644 (file)
 
 #include <QtGui/QGraphicsView>
 #include "abstractscreen.h"
-#include "location.h"
-#include "imageitem.h"
 
-class QGraphicsScene;
 class GraphicsScene;
+class ToolbarItem;
 
 class GraphicsScreen : public QGraphicsView, public AbstractScreen
 {
@@ -52,10 +50,11 @@ protected:
 
 private:
     GraphicsScene* scene_;
-    ImageItem* minimizeButton_;
-    ImageItem* settingsButton_;
-    ImageItem* closeButton_;
+    ToolbarItem* minimizeButton_;
+    ToolbarItem* settingsButton_;
+    ToolbarItem* closeButton_;
     int imageWidth_;
+    bool isFlipped_;
 };
 
 #endif