75947a7893414515e7516bde6a8a4073ee6c62cc
[jspeed] / src / graphicsscreen.h
1 /*
2  * This file is part of jSpeed.
3  *
4  * jSpeed is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * jSpeed is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with jSpeed.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #ifndef GRAPHICSSCREEN_H
20 #define GRAPHICSSCREEN_H
21
22 #include <QtGui/QGraphicsView>
23 #include "abstractscreen.h"
24 #include "location.h"
25 #include "imageitem.h"
26
27 class QGraphicsScene;
28 class GraphicsScene;
29
30 class GraphicsScreen : public QGraphicsView, public AbstractScreen
31 {
32     Q_OBJECT
33
34 public:
35     enum Orientation {LANDSCAPE, PORTRAIT};
36     GraphicsScreen(QWidget* parent = 0);
37     virtual ~GraphicsScreen();
38
39 signals:
40     void minimizePressed();
41     void settingsPressed();
42     void closePressed();
43     void clicked();
44
45 public slots:
46     virtual void update() = 0;
47     virtual void reArrange();
48     void flip();
49
50 protected:
51     GraphicsScene* getScene() const;
52
53 private:
54     GraphicsScene* scene_;
55     ImageItem* minimizeButton_;
56     ImageItem* settingsButton_;
57     ImageItem* closeButton_;
58     int imageWidth_;
59 };
60
61 #endif