1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** Contact: Qt Software Information ([email protected])
|
---|
5 | **
|
---|
6 | ** This file is part of the QtCore module of the Qt Toolkit.
|
---|
7 | **
|
---|
8 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
9 | ** Commercial Usage
|
---|
10 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
11 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
12 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
13 | ** a written agreement between you and Nokia.
|
---|
14 | **
|
---|
15 | ** GNU Lesser General Public License Usage
|
---|
16 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
17 | ** General Public License version 2.1 as published by the Free Software
|
---|
18 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
19 | ** packaging of this file. Please review the following information to
|
---|
20 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
21 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
22 | **
|
---|
23 | ** In addition, as a special exception, Nokia gives you certain
|
---|
24 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
---|
25 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
---|
26 | ** package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you are unsure which license is appropriate for your use, please
|
---|
37 | ** contact the sales department at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | #ifndef QTIMELINE_H
|
---|
43 | #define QTIMELINE_H
|
---|
44 |
|
---|
45 | #include <QtCore/qobject.h>
|
---|
46 |
|
---|
47 | QT_BEGIN_HEADER
|
---|
48 |
|
---|
49 | QT_BEGIN_NAMESPACE
|
---|
50 |
|
---|
51 | QT_MODULE(Core)
|
---|
52 |
|
---|
53 | class QTimeLinePrivate;
|
---|
54 | class Q_CORE_EXPORT QTimeLine : public QObject
|
---|
55 | {
|
---|
56 | Q_OBJECT
|
---|
57 | Q_PROPERTY(int duration READ duration WRITE setDuration)
|
---|
58 | Q_PROPERTY(int updateInterval READ updateInterval WRITE setUpdateInterval)
|
---|
59 | Q_PROPERTY(int currentTime READ currentTime WRITE setCurrentTime)
|
---|
60 | Q_PROPERTY(Direction direction READ direction WRITE setDirection)
|
---|
61 | Q_PROPERTY(int loopCount READ loopCount WRITE setLoopCount)
|
---|
62 | Q_PROPERTY(CurveShape curveShape READ curveShape WRITE setCurveShape)
|
---|
63 | public:
|
---|
64 | enum State {
|
---|
65 | NotRunning,
|
---|
66 | Paused,
|
---|
67 | Running
|
---|
68 | };
|
---|
69 | enum Direction {
|
---|
70 | Forward,
|
---|
71 | Backward
|
---|
72 | };
|
---|
73 | enum CurveShape {
|
---|
74 | EaseInCurve,
|
---|
75 | EaseOutCurve,
|
---|
76 | EaseInOutCurve,
|
---|
77 | LinearCurve,
|
---|
78 | SineCurve,
|
---|
79 | CosineCurve
|
---|
80 | };
|
---|
81 |
|
---|
82 | explicit QTimeLine(int duration = 1000, QObject *parent = 0);
|
---|
83 | virtual ~QTimeLine();
|
---|
84 |
|
---|
85 | State state() const;
|
---|
86 |
|
---|
87 | int loopCount() const;
|
---|
88 | void setLoopCount(int count);
|
---|
89 |
|
---|
90 | Direction direction() const;
|
---|
91 | void setDirection(Direction direction);
|
---|
92 |
|
---|
93 | int duration() const;
|
---|
94 | void setDuration(int duration);
|
---|
95 |
|
---|
96 | int startFrame() const;
|
---|
97 | void setStartFrame(int frame);
|
---|
98 | int endFrame() const;
|
---|
99 | void setEndFrame(int frame);
|
---|
100 | void setFrameRange(int startFrame, int endFrame);
|
---|
101 |
|
---|
102 | int updateInterval() const;
|
---|
103 | void setUpdateInterval(int interval);
|
---|
104 |
|
---|
105 | CurveShape curveShape() const;
|
---|
106 | void setCurveShape(CurveShape shape);
|
---|
107 |
|
---|
108 | int currentTime() const;
|
---|
109 | int currentFrame() const;
|
---|
110 | qreal currentValue() const;
|
---|
111 |
|
---|
112 | int frameForTime(int msec) const;
|
---|
113 | virtual qreal valueForTime(int msec) const;
|
---|
114 |
|
---|
115 | public Q_SLOTS:
|
---|
116 | void start();
|
---|
117 | void resume();
|
---|
118 | void stop();
|
---|
119 | void setPaused(bool paused);
|
---|
120 | void setCurrentTime(int msec);
|
---|
121 | void toggleDirection();
|
---|
122 |
|
---|
123 | Q_SIGNALS:
|
---|
124 | void valueChanged(qreal x);
|
---|
125 | void frameChanged(int);
|
---|
126 | void stateChanged(QTimeLine::State newState);
|
---|
127 | void finished();
|
---|
128 |
|
---|
129 | protected:
|
---|
130 | void timerEvent(QTimerEvent *event);
|
---|
131 |
|
---|
132 | private:
|
---|
133 | Q_DISABLE_COPY(QTimeLine)
|
---|
134 | Q_DECLARE_PRIVATE(QTimeLine)
|
---|
135 | };
|
---|
136 |
|
---|
137 | QT_END_NAMESPACE
|
---|
138 |
|
---|
139 | QT_END_HEADER
|
---|
140 |
|
---|
141 | #endif
|
---|
142 |
|
---|