QPropertyAnimation

PyQt5.QtCore.QPropertyAnimation

Inherits from QVariantAnimation.

Description

The QPropertyAnimation class animates Qt properties.

QPropertyAnimation interpolates over Qt properties. As property values are stored in QVariants, the class inherits QVariantAnimation, and supports animation of the same Type as its super class.

A class declaring properties must be a QObject. To make it possible to animate a property, it must provide a setter (so that QPropertyAnimation can set the property鈥檚 value). Note that this makes it possible to animate many of Qt鈥檚 widgets. Let鈥檚 look at an example:

#     QPropertyAnimation *animation = new QPropertyAnimation(myWidget, "geometry");
#     animation->setDuration(10000);
#     animation->setStartValue(QRect(0, 0, 100, 30));
#     animation->setEndValue(QRect(250, 250, 100, 30));

#     animation->start();

The property name and the QObject instance of which property should be animated are passed to the constructor. You can then specify the start and end value of the property. The procedure is equal for properties in classes you have implemented yourself鈥搄ust check with QVariantAnimation that your QVariant type is supported.

The QVariantAnimation class description explains how to set up the animation in detail. Note, however, that if a start value is not set, the property will start at the value it had when the QPropertyAnimation instance was created.

QPropertyAnimation works like a charm on its own. For complex animations that, for instance, contain several objects, QAnimationGroup is provided. An animation group is an animation that can contain other animations, and that can manage when its animations are played. Look at QParallelAnimationGroup for an example.

Methods

__init__(parent: QObject = None)

Construct a QPropertyAnimation object. parent is passed to QObject鈥檚 constructor.


__init__(QObject, Union[QByteArray, bytes, bytearray], parent: QObject = None)

Construct a QPropertyAnimation object. parent is passed to QObject鈥檚 constructor. The animation changes the property propertyName on target. The default duration is 250ms.


event(QEvent) → bool

TODO


propertyName() → QByteArray

See also

setPropertyName().


setPropertyName(Union[QByteArray, bytes, bytearray])

See also

propertyName().


setTargetObject(QObject)

See also

targetObject().


targetObject() → QObject

See also

setTargetObject().


updateCurrentValue(Any)

TODO


updateState(State, State)

TODO