summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/xinecontrol.cpp
Side-by-side diff
Diffstat (limited to 'noncore/multimedia/opieplayer2/xinecontrol.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/xinecontrol.cpp16
1 files changed, 11 insertions, 5 deletions
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.cpp b/noncore/multimedia/opieplayer2/xinecontrol.cpp
index 7407e4e..497636a 100644
--- a/noncore/multimedia/opieplayer2/xinecontrol.cpp
+++ b/noncore/multimedia/opieplayer2/xinecontrol.cpp
@@ -1,2 +1,2 @@
-
+#include <qtimer.h>
#include "xinecontrol.h"
@@ -14,3 +14,3 @@ 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 ) ) );
}
@@ -32,7 +32,8 @@ void XineControl::play( const QString& fileName ) {
- // which gui (video / audio)
- mediaPlayerState->setView( whichGui );
-
// determine if slider is shown
mediaPlayerState->setIsStreaming( mdetect.isStreaming( fileName ) );
+
+ // which gui (video / audio)
+ mediaPlayerState->setView( whichGui );
+
}
@@ -69,2 +70,7 @@ int XineControl::position() {
emit positionChanged( m_position );
+ QTimer::singleShot( 1000, this, SLOT( position ) );
+}
+
+void XineControl::setFullscreen( bool isSet ) {
+ libXine-> showVideoFullScreen( isSet);
}