...
[jspeed] / src / compass.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 COMPASS_H
20 #define COMPASS_H
21
22 #include <QtCore/QObject>
23 #include "graphicselement.h"
24
25 class QGraphicsPixmapItem;
26 class QTimeLine;
27 class QGraphicsItem;
28 class GraphicsScene;
29 class Reader;
30
31 class Compass : public GraphicsElement
32 {
33     Q_OBJECT
34
35 public:
36     enum Attribute {XPOS, YPOS, ZPOS, VISIBLEWHEN, SRC, XROTATIONPOINT, YROTATIONPOINT, ATTRIBUTE_COUNT};
37     Compass(Reader* reader, bool animate);
38     ~Compass();
39     virtual bool setAttribute(QString const& name, QString const& value);
40     virtual void addToScene(GraphicsScene* scene);
41     virtual void update();
42     virtual QGraphicsItem* getElement() const;
43
44 private slots:
45     void setFrame(int frame);
46
47 private:
48     bool loadImage(QString const& name);
49     QGraphicsPixmapItem* element_;
50     int xRotationPoint_;
51     int yRotationPoint_;
52     int x_;
53     int y_;
54     int targetAngle_;
55     int startAngle_;
56     int angle_;
57     int width_;
58     int height_;
59     bool imageSet_;
60     bool animate_;
61     QTimeLine* timer_;
62 };
63
64 #endif