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

Public Member Functions

void Started ()
 
 
void Resized (QSize size)
 
 
void Updated (QRect rect)
 
 
void StateChanged (QMovie.MovieState state)
 
 
void Error (QImageReader.ImageReaderError error)
 
 
void Finished ()
 
 
void FrameChanged (int frameNumber)
 
 
- Public Member Functions inherited from QtCore.IQObjectSignals
void Destroyed (QObject arg1)
 
void Destroyed ()
 
 

Member Function Documentation

void QtGui.IQMovieSignals.Error ( QImageReader.ImageReaderError  error)

This signal is emitted by QMovie when the error error occurred during playback. QMovie will stop the movie, and enter QMovie::NotRunning state.

void QtGui.IQMovieSignals.Finished ( )

This signal is emitted when the movie has finished.

See also QMovie::stop().

void QtGui.IQMovieSignals.FrameChanged ( int  frameNumber)

This signal is emitted when the frame number has changed to frameNumber. You can call currentImage() or currentPixmap() to get a copy of the frame.

This function was introduced in Qt 4.1.

void QtGui.IQMovieSignals.Resized ( QSize  size)

This signal is emitted when the current frame has been resized to size. This effect is sometimes used in animations as an alternative to replacing the frame. You can call currentImage() or currentPixmap() to get a copy of the updated frame.

void QtGui.IQMovieSignals.Started ( )

This signal is emitted after QMovie::start() has been called, and QMovie has entered QMovie::Running state.

void QtGui.IQMovieSignals.StateChanged ( QMovie.MovieState  state)

This signal is emitted every time the state of the movie changes. The new state is specified by state.

See also QMovie::state().

void QtGui.IQMovieSignals.Updated ( QRect  rect)

This signal is emitted when the rect rect in the current frame has been updated. You can call currentImage() or currentPixmap() to get a copy of the updated frame.