summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/xinecontrol.cpp9
-rw-r--r--noncore/multimedia/opieplayer2/xinecontrol.h4
2 files changed, 9 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.cpp b/noncore/multimedia/opieplayer2/xinecontrol.cpp
index eba837e..8b9413f 100644
--- a/noncore/multimedia/opieplayer2/xinecontrol.cpp
+++ b/noncore/multimedia/opieplayer2/xinecontrol.cpp
@@ -49,6 +49,7 @@ XineControl::XineControl( QObject *parent, const char *name )
connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), this, SLOT( stop( bool ) ) );
connect( mediaPlayerState, SIGNAL( fullscreenToggled( bool ) ), this, SLOT( setFullscreen( bool ) ) );
connect( mediaPlayerState, SIGNAL( positionChanged( long ) ), this, SLOT( seekTo( long ) ) );
+ connect( libXine, SIGNAL( stopped() ), this, SLOT( nextMedia() ) );
}
XineControl::~XineControl() {
@@ -75,16 +76,20 @@ void XineControl::play( const QString& fileName ) {
// determine if slider is shown
// mediaPlayerState->setIsStreaming( mdetect.isStreaming( fileName ) );
- mediaPlayerState->setIsStreaming( libXine->isSeekable() );
+ mediaPlayerState->setIsStreaming( !libXine->isSeekable() );
// which gui (video / audio)
mediaPlayerState->setView( whichGui );
length();
position();
}
+void XineControl::nextMedia() {
+ mediaPlayerState->setNext();
+}
+
void XineControl::stop( bool isSet ) {
if ( !isSet) {
- libXine->stop();
+ libXine->stop( );
mediaPlayerState->setList();
//mediaPlayerState->setPlaying( false );
} else {
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.h b/noncore/multimedia/opieplayer2/xinecontrol.h
index c7aefd4..712e298 100644
--- a/noncore/multimedia/opieplayer2/xinecontrol.h
+++ b/noncore/multimedia/opieplayer2/xinecontrol.h
@@ -55,8 +55,8 @@ public slots:
// get length of media file and set it
void length();
long position();
-
- void videoResized ( const QSize &s );
+ void nextMedia();
+ void videoResized ( const QSize &s );
private:
XINE::Lib *libXine;