QVariantAnimationclass provides a base class for animations. 更多 …
继承者: QPropertyAnimation
4.6 版新增。
def
currentValue
()
def
easingCurve
()
def
endValue
()
def
keyValueAt
(step)
def
keyValues
()
def
setDuration
(msecs)
def
setEasingCurve
(easing)
def
setEndValue
(value)
def
setKeyValueAt
(step, value)
def
setKeyValues
(values)
def
setStartValue
(value)
def
startValue
()
def
interpolated
(from, to, progress)
def
updateCurrentValue
(value)
def
valueChanged
(value)
此类属于 动画框架 . 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 providesQPropertyAnimation, which animates Qt properties 。见QPropertyAnimationclass description if you wish to animate such properties.You can then set start and end values for the property by calling
setStartValue()andsetEndValue(), and finally callstart()to start the animation.QVariantAnimationwill interpolate the property of the target object and emitvalueChanged(). To react to a change in the current value you have to reimplement theupdateCurrentValue()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
QVariantAnimationinterpolates the values. You can set an easing curve by callingsetEasingCurve(), and configure the duration by callingsetDuration(). You can change how theQVariants are interpolated by creating a subclass ofQVariantAnimation, and reimplementing the virtualinterpolated()函数。子类化
QVariantAnimationcan be an alternative if you haveQVariants that you do not wish to declare as Qt properties. Note, however, that you in most cases will be better off declaring yourQVariantas a property.并非所有
QVarianttypes are supported. Below is a list of currently supportedQVarianttypes:
Int
UInt
Double
Float
QLine
QLineF
QPoint
QPointF
QSize
QSizeF
QRect
QRectF
QColorIf 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.
范例:
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.
QVariantAnimation
(
[
parent=None
]
)
¶
- param parent
构造
QVariantAnimation
对象。
parent
会被传递给
QAbstractAnimation
‘s constructor.
PySide2.QtCore.QVariantAnimation.
currentValue
(
)
¶
object
PySide2.QtCore.QVariantAnimation.
easingCurve
(
)
¶
另请参阅
PySide2.QtCore.QVariantAnimation.
endValue
(
)
¶
object
另请参阅
PySide2.QtCore.QVariantAnimation.
interpolated
(
from
,
to
,
progress
)
¶
from – object
to – object
progress
–
qreal
object
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).
另请参阅
PySide2.QtCore.QVariantAnimation.
keyValueAt
(
step
)
¶
step
–
qreal
object
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
.
PySide2.QtCore.QVariantAnimation.
keyValues
(
)
¶
Returns the key frames of this animation.
PySide2.QtCore.QVariantAnimation.
setDuration
(
msecs
)
¶
msecs
–
int
另请参阅
duration()
PySide2.QtCore.QVariantAnimation.
setEasingCurve
(
easing
)
¶
easing
–
QEasingCurve
另请参阅
PySide2.QtCore.QVariantAnimation.
setEndValue
(
value
)
¶
value – object
另请参阅
PySide2.QtCore.QVariantAnimation.
setKeyValueAt
(
step
,
value
)
¶
step
–
qreal
value – object
Creates a key frame at the given
step
采用给定
value
. The given
step
must be in the range 0 to 1.
PySide2.QtCore.QVariantAnimation.
setKeyValues
(
values
)
¶
values –
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.
另请参阅
PySide2.QtCore.QVariantAnimation.
setStartValue
(
value
)
¶
value – object
另请参阅
PySide2.QtCore.QVariantAnimation.
startValue
(
)
¶
object
另请参阅
PySide2.QtCore.QVariantAnimation.
updateCurrentValue
(
value
)
¶
value – object
This virtual function is called every time the animation’s current value changes. The
value
argument is the new current value.
基类实现什么都不做。
另请参阅
PySide2.QtCore.QVariantAnimation.
valueChanged
(
value
)
¶
value – object