diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-05-22 11:11:41 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-05-22 11:11:41 (GMT) |
commit | 1a709fbe25a2446a9b311ded88aec5565258f3ac (patch) | |
tree | 0c7b0a5fbd94b7a4d59666f671fc8f995153161b /src/corelib/tools/qtimeline.h | |
parent | 5a734e4657161e0877b32181df35a56241b21de4 (diff) | |
download | Qt-1a709fbe25a2446a9b311ded88aec5565258f3ac.zip Qt-1a709fbe25a2446a9b311ded88aec5565258f3ac.tar.gz Qt-1a709fbe25a2446a9b311ded88aec5565258f3ac.tar.bz2 |
Say hello to animation API & state machine API
Diffstat (limited to 'src/corelib/tools/qtimeline.h')
-rw-r--r-- | src/corelib/tools/qtimeline.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/corelib/tools/qtimeline.h b/src/corelib/tools/qtimeline.h index 18c3980..48c9232 100644 --- a/src/corelib/tools/qtimeline.h +++ b/src/corelib/tools/qtimeline.h @@ -42,6 +42,7 @@ #ifndef QTIMELINE_H #define QTIMELINE_H +#include <QtCore/qeasingcurve.h> #include <QtCore/qobject.h> QT_BEGIN_HEADER @@ -60,6 +61,7 @@ class Q_CORE_EXPORT QTimeLine : public QObject Q_PROPERTY(Direction direction READ direction WRITE setDirection) Q_PROPERTY(int loopCount READ loopCount WRITE setLoopCount) Q_PROPERTY(CurveShape curveShape READ curveShape WRITE setCurveShape) + Q_PROPERTY(QEasingCurve easingCurve READ easingCurve WRITE setEasingCurve) public: enum State { NotRunning, @@ -105,6 +107,9 @@ public: CurveShape curveShape() const; void setCurveShape(CurveShape shape); + QEasingCurve easingCurve() const; + void setEasingCurve(const QEasingCurve &curve); + int currentTime() const; int currentFrame() const; qreal currentValue() const; |