summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/xinecontrol.cpp
authorharlekin <harlekin>2002-08-09 20:11:31 (UTC)
committer harlekin <harlekin>2002-08-09 20:11:31 (UTC)
commit46eb53b1fd042d2591933a7d89a0e65b79140f16 (patch) (side-by-side diff)
treec5304881a9597b98f05adb04216b8042ca0d78b6 /noncore/multimedia/opieplayer2/xinecontrol.cpp
parentd8e5c405aa6bf33b8b1d59443926876e8f056e5b (diff)
downloadopie-46eb53b1fd042d2591933a7d89a0e65b79140f16.zip
opie-46eb53b1fd042d2591933a7d89a0e65b79140f16.tar.gz
opie-46eb53b1fd042d2591933a7d89a0e65b79140f16.tar.bz2
autoadvance to next media when current is finished (playlist)
Diffstat (limited to 'noncore/multimedia/opieplayer2/xinecontrol.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/xinecontrol.cpp9
1 files changed, 7 insertions, 2 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 {