QPauseAnimation Class

The QPauseAnimation class provides a pause for QSequentialAnimationGroup. More...

Header: #include <QPauseAnimation>
CMake: find_package(Qt6 COMPONENTS Core REQUIRED)
target_link_libraries(mytarget PRIVATE Qt6::Core)
qmake: QT += core
Inherits: QAbstractAnimation

Properties

Public Functions

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

Reimplemented Public Functions

virtual int duration() const override

Reimplemented Protected Functions

virtual bool event(QEvent *e) override
virtual void updateCurrentTime(int) 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.

Property Documentation

[bindable] duration : int

Note: This property supports QProperty bindings.

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.

Member Function Documentation

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

Constructs a QPauseAnimation. msecs is the duration of the pause. parent is passed to QObject's constructor.

QPauseAnimation::QPauseAnimation(QObject *parent = nullptr)

Constructs a QPauseAnimation. parent is passed to QObject's constructor. The default duration is 0.

[virtual] QPauseAnimation::~QPauseAnimation()

Destroys the pause animation.

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

Reimplements: QAbstractAnimation::event(QEvent *event).

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

Reimplements: QAbstractAnimation::updateCurrentTime(int currentTime).

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.