QAbstractAnimationclass is the base of all animations. 更多 …
继承者: QAnimationGroup , QParallelAnimationGroup , QPauseAnimation , QPropertyAnimation , QSequentialAnimationGroup , QVariantAnimation
4.6 版新增。
def
currentLoop
()
def
currentLoopTime
()
def
currentTime
()
def
direction
()
def
group
()
def
loopCount
()
def
setDirection
(direction)
def
setLoopCount
(loopCount)
def
state
()
def
totalDuration
()
def
duration
()
def
updateCurrentTime
(currentTime)
def
updateDirection
(direction)
def
updateState
(newState, oldState)
def
currentLoopChanged
(currentLoop)
def
directionChanged
(arg__1)
def
finished
()
def
stateChanged
(newState, oldState)
The class defines the functions for the functionality shared by all animations. By inheriting this class, you can create custom animations that plug into the rest of the animation framework.
The progress of an animation is given by its current time (
currentLoopTime()), which is measured in milliseconds from the start of the animation (0) to its end (duration()). The value is updated automatically while the animation is running. It can also be set directly withsetCurrentTime().At any point an animation is in one of three states:
运行,Stopped,或Paused–as defined by theStateenum. The current state can be changed by callingstart(),stop(),pause(),或resume(). An animation will always reset itscurrent timewhen it is started. If paused, it will continue with the same current time when resumed. When an animation is stopped, it cannot be resumed, but will keep its current time (until started again).QAbstractAnimation将发射stateChanged()whenever its state changes.An animation can loop any number of times by setting the
loopCountproperty. When an animation’s current time reaches itsduration(), it will reset the current time and keep running. A loop count of 1 (the default value) means that the animation will run one time. Note that a duration of -1 means that the animation will run until stopped; the current time will increase indefinitely. When the current time equalsduration()and the animation is in its final loop, theStoppedstate is entered, and thefinished()信号被发射。
QAbstractAnimationprovides pure virtual functions used by subclasses to track the progress of the animation:duration()andupdateCurrentTime()。duration()function lets you report a duration for the animation (as discussed above). The animation framework callsupdateCurrentTime()when current time has changed. By reimplementing this function, you can track the animation progress. Note that neither the interval between calls nor the number of calls to this function are defined; though, it will normally be 60 updates per second.By reimplementing
updateState(), you can track the animation’s state changes, which is particularly useful for animations that are not driven by time.
QAbstractAnimation
(
[
parent=None
]
)
¶
- param parent
构造
QAbstractAnimation
base class, and passes
parent
to
QObject
‘s constructor.
PySide2.QtCore.QAbstractAnimation.
Direction
¶
This enum describes the direction of the animation when in
运行
状态。
|
常量 |
描述 |
|---|---|
|
QAbstractAnimation.Forward |
The current time of the animation increases with time (i.e., moves from 0 and towards the end / duration). |
|
QAbstractAnimation.Backward |
The current time of the animation decreases with time (i.e., moves from the end / duration and towards 0). |
另请参阅
direction
PySide2.QtCore.QAbstractAnimation.
State
¶
This enum describes the state of the animation.
|
常量 |
描述 |
|---|---|
|
QAbstractAnimation.Stopped |
The animation is not running. This is the initial state of
|
|
QAbstractAnimation.Paused |
The animation is paused (i.e., temporarily suspended). Calling
|
|
QAbstractAnimation.Running |
The animation is running. While control is in the event loop,
|
另请参阅
state()
stateChanged()
PySide2.QtCore.QAbstractAnimation.
DeletionPolicy
¶
|
常量 |
描述 |
|---|---|
|
QAbstractAnimation.KeepWhenStopped |
The animation will not be deleted when stopped. |
|
QAbstractAnimation.DeleteWhenStopped |
The animation will be automatically deleted when stopped. |
PySide2.QtCore.QAbstractAnimation.
currentLoop
(
)
¶
int
PySide2.QtCore.QAbstractAnimation.
currentLoopChanged
(
currentLoop
)
¶
currentLoop
–
int
PySide2.QtCore.QAbstractAnimation.
currentLoopTime
(
)
¶
int
Returns the current time inside the current loop. It can go from 0 to
duration()
.
另请参阅
duration()
currentTime
PySide2.QtCore.QAbstractAnimation.
currentTime
(
)
¶
int
另请参阅
setCurrentTime()
PySide2.QtCore.QAbstractAnimation.
duration
(
)
¶
int
This pure virtual function returns the duration of the animation, and defines for how long
QAbstractAnimation
should update the current time. This duration is local, and does not include the loop count.
A return value of -1 indicates that the animation has no defined duration; the animation should run forever until stopped. This is useful for animations that are not time driven, or where you cannot easily predict its duration (e.g., event driven audio playback in a game).
If the animation is a parallel
QAnimationGroup
, the duration will be the longest duration of all its animations. If the animation is a sequential
QAnimationGroup
, the duration will be the sum of the duration of all its animations.
另请参阅
loopCount
PySide2.QtCore.QAbstractAnimation.
finished
(
)
¶
PySide2.QtCore.QAbstractAnimation.
group
(
)
¶
若此动画属于
QAnimationGroup
, this function returns a pointer to the group; otherwise, it returns
None
.
另请参阅
addAnimation()
PySide2.QtCore.QAbstractAnimation.
loopCount
(
)
¶
int
另请参阅
setLoopCount()
PySide2.QtCore.QAbstractAnimation.
pause
(
)
¶
暂停动画。当动画被暂停时,
state()
returns Paused. The value of
currentTime
will remain unchanged until
resume()
or
start()
is called. If you want to continue from the current time, call
resume()
.
另请参阅
start()
state()
resume()
PySide2.QtCore.QAbstractAnimation.
resume
(
)
¶
Resumes the animation after it was paused. When the animation is resumed, it emits the resumed() and
stateChanged()
signals. The currenttime is not changed.
另请参阅
start()
pause()
state()
PySide2.QtCore.QAbstractAnimation.
setCurrentTime
(
msecs
)
¶
msecs
–
int
另请参阅
currentTime()
PySide2.QtCore.QAbstractAnimation.
setDirection
(
direction
)
¶
direction
–
Direction
另请参阅
direction()
PySide2.QtCore.QAbstractAnimation.
setLoopCount
(
loopCount
)
¶
loopCount
–
int
另请参阅
loopCount()
PySide2.QtCore.QAbstractAnimation.
setPaused
(
arg__1
)
¶
arg__1
–
bool
若
paused
is true, the animation is paused. If
paused
is false, the animation is resumed.
另请参阅
state()
pause()
resume()
PySide2.QtCore.QAbstractAnimation.
start
(
[
policy=KeepWhenStopped
]
)
¶
policy
–
DeletionPolicy
Starts the animation. The
policy
argument says whether or not the animation should be deleted when it’s done. When the animation starts, the
stateChanged()
signal is emitted, and
state()
returns Running. When control reaches the event loop, the animation will run by itself, periodically calling
updateCurrentTime()
as the animation progresses.
If the animation is currently stopped or has already reached the end, calling will rewind the animation and start again from the beginning. When the animation reaches the end, the animation will either stop, or if the loop level is more than 1, it will rewind and continue from the beginning.
If the animation is already running, this function does nothing.
另请参阅
stop()
state()
PySide2.QtCore.QAbstractAnimation.
stateChanged
(
newState
,
oldState
)
¶
PySide2.QtCore.QAbstractAnimation.
stop
(
)
¶
Stops the animation. When the animation is stopped, it emits the
stateChanged()
signal, and
state()
returns Stopped. The current time is not changed.
If the animation stops by itself after reaching the end (i.e.,
currentLoopTime()
==
duration()
and
currentLoop()
>
loopCount()
- 1), the
finished()
信号被发射。
另请参阅
start()
state()
PySide2.QtCore.QAbstractAnimation.
totalDuration
(
)
¶
int
Returns the total and effective duration of the animation, including the loop count.
另请参阅
duration()
currentTime
PySide2.QtCore.QAbstractAnimation.
updateCurrentTime
(
currentTime
)
¶
currentTime
–
int
This pure virtual function is called every time the animation’s
currentTime
改变。
另请参阅
updateState()
PySide2.QtCore.QAbstractAnimation.
updateDirection
(
direction
)
¶
direction
–
Direction
此虚拟函数被调用由
QAbstractAnimation
when the direction of the animation is changed. The
direction
argument is the new direction.
另请参阅
setDirection()
direction()
PySide2.QtCore.QAbstractAnimation.
updateState
(
newState
,
oldState
)
¶
此虚拟函数被调用由
QAbstractAnimation
when the state of the animation is changed from
oldState
to
newState
.
另请参阅
start()
stop()
pause()
resume()