Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtCore.IQAbstractAnimationSignals Interface Reference
Inheritance diagram for QtCore.IQAbstractAnimationSignals:
Collaboration diagram for QtCore.IQAbstractAnimationSignals:

Public Member Functions

void Finished ()
 
 
void StateChanged (QAbstractAnimation.State newState, QAbstractAnimation.State oldState)
 
 
void CurrentLoopChanged (int currentLoop)
 
 
void DirectionChanged (QAbstractAnimation.Direction arg1)
 
 
- Public Member Functions inherited from QtCore.IQObjectSignals
void Destroyed (QObject arg1)
 
void Destroyed ()
 
 

Member Function Documentation

void QtCore.IQAbstractAnimationSignals.CurrentLoopChanged ( int  currentLoop)

QAbstractAnimation emits this signal whenever the current loop changes. currentLoop is the current loop.

See also currentLoop() and loopCount().

void QtCore.IQAbstractAnimationSignals.DirectionChanged ( QAbstractAnimation.Direction  arg1)

QAbstractAnimation emits this signal whenever the direction has been changed. newDirection is the new direction.

See also direction.

void QtCore.IQAbstractAnimationSignals.Finished ( )

QAbstractAnimation emits this signal after the animation has stopped and has reached the end.

This signal is emitted after stateChanged().

See also stateChanged().

void QtCore.IQAbstractAnimationSignals.StateChanged ( QAbstractAnimation.State  newState,
QAbstractAnimation.State  oldState 
)

QAbstractAnimation emits this signal whenever the state of the animation has changed from oldState to newState. This signal is emitted after the virtual updateState() function is called.

See also updateState().