QSequentialAnimationGroup Class ReferenceThe QSequentialAnimationGroup class provides a sequential group of animations. More... #include <QSequentialAnimationGroup> Inherits: QAnimationGroup. This class was introduced in Qt 4.6. Properties
Public Functions
Reimplemented Public Functions
Signals
Reimplemented Protected Functions
Additional Inherited Members
Detailed DescriptionThe QSequentialAnimationGroup class provides a sequential group of animations. QSequentialAnimationGroup is a QAnimationGroup that runs its animations in sequence, i.e., it starts one animation after another has finished playing. The animations are played in the order they are added to the group (using addAnimation() or insertAnimation()). The animation group finishes when its last animation has finished. At each moment there is at most one animation that is active in the group; it is returned by currentAnimation(). An empty group has no current animation. A sequential animation group can be treated as any other animation, i.e., it can be started, stopped, and added to other groups. You can also call addPause() or insertPause() to add a pause to a sequential animation group. QSequentialAnimationGroup *group = new QSequentialAnimationGroup; group->addAnimation(anim1); group->addAnimation(anim2); group->start(); In this example, anim1 and anim2 are two already set up QPropertyAnimations. See also QAnimationGroup, QAbstractAnimation, and The Animation Framework. Property Documentation
|
QAbstractAnimation * | currentAnimation () const |
Notifier signal:
void | currentAnimationChanged ( QAbstractAnimation * current ) |
See also currentAnimationChanged().
Constructs a QSequentialAnimationGroup. parent is passed to QObject's constructor.
Destroys the animation group. It will also destroy all its animations.
Adds a pause of msecs to this animation group. The pause is considered as a special type of animation, thus animationCount will be increased by one.
See also insertPause() and QAnimationGroup::addAnimation().
QSequentialAnimationGroup emits this signal when currentAnimation has been changed. current is the current animation.
See also currentAnimation().
Reimplemented from QAbstractAnimation::duration().
Reimplemented from QObject::event().
Inserts a pause of msecs milliseconds at index in this animation group.
See also addPause() and QAnimationGroup::insertAnimation().
Reimplemented from QAbstractAnimation::updateCurrentTime().
Reimplemented from QAbstractAnimation::updateDirection().
Reimplemented from QAbstractAnimation::updateState().
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.8 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com