author | harlekin <harlekin> | 2002-08-15 19:06:52 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-08-15 19:06:52 (UTC) |
commit | cff42f8a8808ef9fd9b65376649857e0e0c2ccc3 (patch) (unidiff) | |
tree | 7cf3cca6b2ebb35cd9ffc0ce8adc5568a27ad7d7 | |
parent | 8cd40434c7011022a8e1706698e5c5075681bd1e (diff) | |
download | opie-cff42f8a8808ef9fd9b65376649857e0e0c2ccc3.zip opie-cff42f8a8808ef9fd9b65376649857e0e0c2ccc3.tar.gz opie-cff42f8a8808ef9fd9b65376649857e0e0c2ccc3.tar.bz2 |
stop now working as supposed
-rw-r--r-- | noncore/multimedia/opieplayer2/lib.cpp | 1 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayer.cpp | 4 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.cpp | 8 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/xinecontrol.cpp | 2 |
4 files changed, 8 insertions, 7 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp index 3b20873..d554141 100644 --- a/noncore/multimedia/opieplayer2/lib.cpp +++ b/noncore/multimedia/opieplayer2/lib.cpp | |||
@@ -171,6 +171,7 @@ int Lib::play( const QString& fileName, | |||
171 | startPos, start_time); | 171 | startPos, start_time); |
172 | } | 172 | } |
173 | void Lib::stop() { | 173 | void Lib::stop() { |
174 | qDebug("<<<<<<<< STOP IN LIB TRIGGERED >>>>>>>"); | ||
174 | xine_stop(m_xine ); | 175 | xine_stop(m_xine ); |
175 | } | 176 | } |
176 | void Lib::pause(){ | 177 | void Lib::pause(){ |
diff --git a/noncore/multimedia/opieplayer2/mediaplayer.cpp b/noncore/multimedia/opieplayer2/mediaplayer.cpp index 51fbb8b..93819f2 100644 --- a/noncore/multimedia/opieplayer2/mediaplayer.cpp +++ b/noncore/multimedia/opieplayer2/mediaplayer.cpp | |||
@@ -48,7 +48,7 @@ MediaPlayer::MediaPlayer( QObject *parent, const char *name ) | |||
48 | connect( videoUI, SIGNAL( lessClicked() ), this, SLOT( startDecreasingVolume() ) ); | 48 | connect( videoUI, SIGNAL( lessClicked() ), this, SLOT( startDecreasingVolume() ) ); |
49 | connect( videoUI, SIGNAL( moreReleased() ), this, SLOT( stopChangingVolume() ) ); | 49 | connect( videoUI, SIGNAL( moreReleased() ), this, SLOT( stopChangingVolume() ) ); |
50 | connect( videoUI, SIGNAL( lessReleased() ), this, SLOT( stopChangingVolume() ) ); | 50 | connect( videoUI, SIGNAL( lessReleased() ), this, SLOT( stopChangingVolume() ) ); |
51 | 51 | ||
52 | volControl = new VolumeControl; | 52 | volControl = new VolumeControl; |
53 | 53 | ||
54 | } | 54 | } |
@@ -71,7 +71,7 @@ void MediaPlayer::play() { | |||
71 | 71 | ||
72 | void MediaPlayer::setPlaying( bool play ) { | 72 | void MediaPlayer::setPlaying( bool play ) { |
73 | if ( !play ) { | 73 | if ( !play ) { |
74 | mediaPlayerState->setPaused( FALSE ); | 74 | //mediaPlayerState->setPaused( TRUE ); |
75 | return; | 75 | return; |
76 | } | 76 | } |
77 | 77 | ||
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp index c210ffb..77e2095 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp | |||
@@ -685,7 +685,7 @@ void PlayListWidget::removeSelected() { | |||
685 | } | 685 | } |
686 | 686 | ||
687 | void PlayListWidget::playIt( QListViewItem *it) { | 687 | void PlayListWidget::playIt( QListViewItem *it) { |
688 | if(it==NULL) return; | 688 | // if(it==NULL) return; |
689 | qDebug("playIt"); | 689 | qDebug("playIt"); |
690 | mediaPlayerState->setPlaying(FALSE); | 690 | mediaPlayerState->setPlaying(FALSE); |
691 | mediaPlayerState->setPlaying(TRUE); | 691 | mediaPlayerState->setPlaying(TRUE); |
@@ -1233,13 +1233,13 @@ qDebug("%d", index); | |||
1233 | switch(index) { | 1233 | switch(index) { |
1234 | case -16: | 1234 | case -16: |
1235 | { | 1235 | { |
1236 | 1236 | ||
1237 | mediaPlayerState->toggleFullscreen(); | 1237 | mediaPlayerState->toggleFullscreen(); |
1238 | bool b=mediaPlayerState->fullscreen(); | 1238 | bool b=mediaPlayerState->fullscreen(); |
1239 | pmView->setItemChecked( index,b); | 1239 | pmView->setItemChecked( index,b); |
1240 | Config cfg( "OpiePlayer" ); | 1240 | Config cfg( "OpiePlayer" ); |
1241 | cfg.writeEntry("FullScreen", b); | 1241 | cfg.writeEntry("FullScreen", b); |
1242 | 1242 | ||
1243 | } | 1243 | } |
1244 | break; | 1244 | break; |
1245 | }; | 1245 | }; |
@@ -1268,7 +1268,7 @@ void PlayListWidget::populateSkinsMenu() { | |||
1268 | defaultSkinIndex = item; | 1268 | defaultSkinIndex = item; |
1269 | if( skinName == skin) | 1269 | if( skinName == skin) |
1270 | skinsMenu->setItemChecked( item, TRUE); | 1270 | skinsMenu->setItemChecked( item, TRUE); |
1271 | 1271 | ||
1272 | ++it; | 1272 | ++it; |
1273 | } | 1273 | } |
1274 | } | 1274 | } |
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.cpp b/noncore/multimedia/opieplayer2/xinecontrol.cpp index 17112a2..8fd2743 100644 --- a/noncore/multimedia/opieplayer2/xinecontrol.cpp +++ b/noncore/multimedia/opieplayer2/xinecontrol.cpp | |||
@@ -116,7 +116,7 @@ void XineControl::stop( bool isSet ) { | |||
116 | if ( !isSet) { | 116 | if ( !isSet) { |
117 | libXine->stop( ); | 117 | libXine->stop( ); |
118 | mediaPlayerState->setList(); | 118 | mediaPlayerState->setList(); |
119 | //mediaPlayerState->setPlaying( false ); | 119 | // mediaPlayerState->setPlaying( false ); |
120 | 120 | ||
121 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) | 121 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) |
122 | if ( disabledSuspendScreenSaver ) { | 122 | if ( disabledSuspendScreenSaver ) { |