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