author | insilmaril |
Wed Feb 27 16:09:06 2008 +0000 (2008-02-27) | |
changeset 675 | e524edc45aff |
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