QVariantAnimation露
- PyQt5.QtCore.QVariantAnimation
Inherits from QAbstractAnimation.
Inherited by QPropertyAnimation.
Description露
The QVariantAnimation class provides a base class for animations.
This class is part of The Animation Framework. It serves as a base class for property and item animations, with functions for shared functionality.
The class performs interpolation over QVariants, but leaves using the interpolated values to its subclasses. Currently, Qt provides QPropertyAnimation, which animates Qt properties. See the QPropertyAnimation class description if you wish to animate such properties.
You can then set start and end values for the property by calling setStartValue() and setEndValue(), and finally call start() to start the animation. QVariantAnimation will interpolate the property of the target object and emit valueChanged. To react to a change in the current value you have to reimplement the updateCurrentValue() virtual function or connect to said signal.
It is also possible to set values at specified steps situated between the start and end value. The interpolation will then touch these points at the specified steps. Note that the start and end values are defined as the key values at 0.0 and 1.0.
There are two ways to affect how QVariantAnimation interpolates the values. You can set an easing curve by calling setEasingCurve(), and configure the duration by calling setDuration(). You can change how the QVariants are interpolated by creating a subclass of QVariantAnimation, and reimplementing the virtual interpolated() function.
Subclassing QVariantAnimation can be an alternative if you have QVariants that you do not wish to declare as Qt properties. Note, however, that you in most cases will be better off declaring your QVariant as a property.
Not all QVariant types are supported. Below is a list of currently supported QVariant types:
If you need to interpolate other variant types, including custom types, you have to implement interpolation for these yourself. To do this, you can register an interpolator function for a given type. This function takes 3 parameters: the start value, the end value, and the current progress.
Example:
# QVariant myColorInterpolator(const QColor &start, const QColor &end, qreal progress)
# {
# ...
# return QColor(...);
# }
# ...
# qRegisterAnimationInterpolator<QColor>(myColorInterpolator);
Another option is to reimplement interpolated(), which returns interpolation values for the value being interpolated.
Methods露
- __init__(parent: QObject = None)
Construct a QVariantAnimation object. parent is passed to QAbstractAnimation鈥檚 constructor.
- currentValue() → Any
TODO
- duration() → int
See also
- easingCurve() → QEasingCurve
See also
- endValue() → Any
See also
- event(QEvent) → bool
TODO
- interpolated(Any, Any, float) → Any
This virtual function returns the linear interpolation between variants from and to, at progress, usually a value between 0 and 1. You can reimplement this function in a subclass of QVariantAnimation to provide your own interpolation algorithm.
Note that in order for the interpolation to work with a QEasingCurve that return a value smaller than 0 or larger than 1 (such as InBack) you should make sure that it can extrapolate. If the semantic of the datatype does not allow extrapolation this function should handle that gracefully.
You should call the QVariantAnimation implementation of this function if you want your class to handle the types already supported by Qt (see class QVariantAnimation description for a list of supported types).
See also
- keyValueAt(float) → Any
Returns the key frame value for the given step. The given step must be in the range 0 to 1. If there is no KeyValue for step, it returns an invalid QVariant.
See also
- keyValues() → List[Tuple[float, Any]]
Returns the key frames of this animation.
See also
- setDuration(int)
See also
- setEasingCurve(Union[QEasingCurve, Type])
See also
- setEndValue(Any)
See also
- setKeyValueAt(float, Any)
Creates a key frame at the given step with the given value. The given step must be in the range 0 to 1.
See also
- setKeyValues(Iterable[Tuple[float, Any]])
Replaces the current set of key frames with the given keyValues. the step of the key frames must be in the range 0 to 1.
See also
- setStartValue(Any)
See also
- startValue() → Any
See also
- updateCurrentTime(int)
TODO
- updateCurrentValue(Any)
TODO
Signals露
- valueChanged(Any)
TODO