Added POI text field. Some tuning to detail screen item position.
[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 QGraphicsItem;
28 class GraphicsScene;
29 class Reader;
30
31 class Pointer : public GraphicsElement
32 {
33     Q_OBJECT
34
35 public:
36     enum Attribute {XPOS, YPOS, ZPOS, VISIBLEWHEN, 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     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 zeroAngle_;
55     int fullAngle_;
56     int zeroSpeed_;
57     int fullSpeed_;
58     int targetAngle_;
59     int startAngle_;
60     int angle_;
61     bool imageSet_;
62     bool animate_;
63     QTimeLine* timer_;
64 };
65
66 #endif