summaryrefslogtreecommitdiff
path: root/noncore/multimedia
authorharlekin <harlekin>2002-08-16 15:42:44 (UTC)
committer harlekin <harlekin>2002-08-16 15:42:44 (UTC)
commitfec49e4f9f8d016e335eaca1630f4108801cc3ce (patch) (side-by-side diff)
tree271c4dda3b4b634e0946528e4a4b2c9e6746d25c /noncore/multimedia
parentaa9eba407a8236c72822d24643b58d4d48ae80c0 (diff)
downloadopie-fec49e4f9f8d016e335eaca1630f4108801cc3ce.zip
opie-fec49e4f9f8d016e335eaca1630f4108801cc3ce.tar.gz
opie-fec49e4f9f8d016e335eaca1630f4108801cc3ce.tar.bz2
hide slider when streaming videos
Diffstat (limited to 'noncore/multimedia') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/videowidget.cpp23
1 files changed, 6 insertions, 17 deletions
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp
index 5a69bf5..956789f 100644
--- a/noncore/multimedia/opieplayer2/videowidget.cpp
+++ b/noncore/multimedia/opieplayer2/videowidget.cpp
@@ -236,17 +236,2 @@ void VideoWidget::setView( char view ) {
- if ( mediaPlayerState->streaming() ) {
- qDebug("<<<<<<<<<<<<<<file is STREAMING>>>>>>>>>>>>>>>>>>>");
- if( !slider->isHidden()) {
- slider->hide();
- }
- disconnect( mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) );
- disconnect( mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
- } else {
- // this stops the slider from being moved, thus
- // does not stop stream when it reaches the end
- slider->show();
- connect( mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) );
- connect( mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
- }
-
if ( view == 'v' ) {
@@ -396,3 +381,7 @@ void VideoWidget::makeVisible() {
setBackgroundPixmap( *pixBg );
- slider->show();
+ if ( mediaPlayerState->streaming() ) {
+ slider->hide();
+ } else {
+ slider->show();
+ }
videoFrame->setGeometry( QRect( 0, 30, 240, 170 ) );
@@ -487,3 +476,3 @@ void VideoWidget::keyReleaseEvent( QKeyEvent *e) {
mediaPlayerState->setPaused( TRUE );
- }
+ }
#endif