QPauseAnimation Class
The QPauseAnimation class provides a pause for QSequentialAnimationGroup. More...
| Header: | #include <QPauseAnimation> |
| qmake: | QT += core |
| Since: | Qt 4.6 |
| Inherits: | QAbstractAnimation |
This class was introduced in Qt 4.6.
Properties
- duration : int
Public Functions
| void | setDuration(int msecs) |
Reimplemented Public Functions
| virtual int | duration() const override |
Detailed Description
If you wish to introduce a delay between animations in a QSequentialAnimationGroup, you can insert a QPauseAnimation. This class does not animate anything, but does not finish before a specified number of milliseconds have elapsed from when it was started. You specify the duration of the pause in the constructor. It can also be set directly with setDuration().
It is not necessary to construct a QPauseAnimation yourself. QSequentialAnimationGroup provides the convenience functions addPause() and insertPause(). These functions simply take the number of milliseconds the pause should last.
See also QSequentialAnimationGroup.