QPauseAnimation Class

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

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

特性

公共函数

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

重实现公共函数

virtual int duration () const override

静态公共成员

const QMetaObject staticMetaObject

重实现保护函数

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

额外继承成员

详细描述

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 override
void setDuration (int msecs )

成员函数文档编制

QPauseAnimation:: QPauseAnimation ( QObject * parent = nullptr)

构造 QPauseAnimation . parent 会被传递给 QObject 's constructor. The default duration is 0.

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

构造 QPauseAnimation . msecs is the duration of the pause. parent 会被传递给 QObject 的构造函数。

[virtual] QPauseAnimation:: ~QPauseAnimation ()

Destroys the pause animation.

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

重实现自 QAbstractAnimation::event ().

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

重实现自 QAbstractAnimation::updateCurrentTime ().