-rw-r--r-- | noncore/multimedia/opieplayer2/xinecontrol.cpp | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.cpp b/noncore/multimedia/opieplayer2/xinecontrol.cpp index d08ff04..cf7dcb2 100644 --- a/noncore/multimedia/opieplayer2/xinecontrol.cpp +++ b/noncore/multimedia/opieplayer2/xinecontrol.cpp @@ -45,3 +45,3 @@ XineControl::XineControl( QObject *parent, const char *name ) - connect ( videoUI, SIGNAL( videoResized ( const QSize & )), this, SLOT( videoResized ( const QSize & ))); + connect ( videoUI, SIGNAL( videoResized ( const QSize & )), this, SLOT( videoResized ( const QSize & ))); connect( mediaPlayerState, SIGNAL( pausedToggled(bool) ), this, SLOT( pause(bool) ) ); @@ -51,3 +51,2 @@ XineControl::XineControl( QObject *parent, const char *name ) connect( mediaPlayerState, SIGNAL( positionChanged( long ) ), this, SLOT( seekTo( long ) ) ); - } @@ -95,2 +94,6 @@ void XineControl::stop( bool isSet ) { +/** + * Pause playback + * @isSet + */ void XineControl::pause( bool isSet) { @@ -99,2 +102,6 @@ void XineControl::pause( bool isSet) { + +/** + * get current time in playback + */ long XineControl::currentTime() { @@ -106,2 +113,5 @@ long XineControl::currentTime() { +/** + * Set the length of the media file + */ void XineControl::length() { @@ -111,2 +121,7 @@ void XineControl::length() { + +/** + * Reports the position the xine backend is at right now + * @return long the postion in seconds + */ long XineControl::position() { @@ -123,2 +138,6 @@ long XineControl::position() { +/** + * Set videoplayback to fullscreen + * @param isSet + */ void XineControl::setFullscreen( bool isSet ) { @@ -127,4 +146,7 @@ void XineControl::setFullscreen( bool isSet ) { +/** + * Seek to a position in the track + * @param second the second to jump to + */ void XineControl::seekTo( long second ) { - qDebug("seek triggered!!"); libXine->play( m_fileName , 0, (int)second ); @@ -132,5 +154,3 @@ void XineControl::seekTo( long second ) { - -void XineControl::videoResized ( const QSize &s ) -{ +void XineControl::videoResized ( const QSize &s ) { libXine-> resize ( s ); |