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