author | insilmaril |
Wed, 25 Apr 2007 16:02:54 +0000 | |
changeset 463 | 694f5e35e87c |
parent 461 | b0d72eb511c9 |
child 688 | d0086df58648 |
permissions | -rw-r--r-- |
1 #ifndef ANIMPOINT_H
2 #define ANIMPOINT_H
4 #include <QPointF>
6 class AnimPoint: public QPointF
7 {
8 public:
9 AnimPoint();
10 void operator= ( const AnimPoint & );
11 void operator= ( const QPointF & );
12 bool operator== ( const QPointF & );
13 bool operator== ( AnimPoint );
14 void init();
15 void copy(AnimPoint other);
16 void setDest (const QPointF &);
17 void setAnimated(bool);
18 bool isAnimated ();
19 void animate();
21 private:
22 QPointF currentPos;
23 QPointF destPos;
24 qreal n;
25 bool animated;
27 };
29 #endif