QPauseAnimation Class

The QPauseAnimation class provides a pause for QSequentialAnimationGroup . 更多...

頭: #include <QPauseAnimation>
qmake: QT += core
Since: Qt 4.6
繼承: QAbstractAnimation

特性

公共函數

QPauseAnimation (QObject * parent = Q_NULLPTR)
QPauseAnimation (int msecs , QObject * parent = Q_NULLPTR)
~QPauseAnimation ()
void setDuration (int msecs )

重實現公共函數

virtual int duration () const

重實現保護函數

virtual bool event (QEvent * e )
virtual void updateCurrentTime ( int )

額外繼承成員

詳細描述

The QPauseAnimation class provides a pause for QSequentialAnimationGroup .

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.

另請參閱 QSequentialAnimationGroup .

特性文檔編製

duration : int

This property holds the duration of the pause.

The duration of the pause. The duration should not be negative. The default duration is 250 milliseconds.

訪問函數:

virtual int duration () const
void setDuration (int msecs )

成員函數文檔編製

QPauseAnimation:: QPauseAnimation ( QObject * parent = Q_NULLPTR)

構造 QPauseAnimation . parent 被傳遞給 QObject 's constructor. The default duration is 0.

QPauseAnimation:: QPauseAnimation ( int msecs , QObject * parent = Q_NULLPTR)

構造 QPauseAnimation . msecs is the duration of the pause. parent 被傳遞給 QObject 的構造函數。

QPauseAnimation:: ~QPauseAnimation ()

Destroys the pause animation.

[virtual protected] bool QPauseAnimation:: event ( QEvent * e )

重實現自 QObject::event ().

[virtual protected] void QPauseAnimation:: updateCurrentTime ( int )

重實現自 QAbstractAnimation::updateCurrentTime ().