-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayer.cpp | 2 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/xinecontrol.cpp | 12 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/xinecontrol.h | 9 |
3 files changed, 11 insertions, 12 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayer.cpp b/noncore/multimedia/opieplayer2/mediaplayer.cpp index 06b1a04..ed7e37f 100644 --- a/noncore/multimedia/opieplayer2/mediaplayer.cpp +++ b/noncore/multimedia/opieplayer2/mediaplayer.cpp | |||
@@ -365,3 +365,3 @@ void MediaPlayer::recreateAudioAndVideoWidgets() | |||
365 | 365 | ||
366 | xineControl = new XineControl( videoUI, mediaPlayerState ); | 366 | xineControl = new XineControl( videoUI, videoUI->vidWidget(), mediaPlayerState ); |
367 | } | 367 | } |
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.cpp b/noncore/multimedia/opieplayer2/xinecontrol.cpp index b4ae783..6f1cd9c 100644 --- a/noncore/multimedia/opieplayer2/xinecontrol.cpp +++ b/noncore/multimedia/opieplayer2/xinecontrol.cpp | |||
@@ -40,10 +40,12 @@ | |||
40 | #include "mediaplayerstate.h" | 40 | #include "mediaplayerstate.h" |
41 | #include "videowidget.h" | ||
42 | 41 | ||
43 | XineControl::XineControl( VideoWidget *videoWidget, MediaPlayerState &_mediaPlayerState, QObject *parent, const char *name ) | 42 | XineControl::XineControl( QWidget *videoContainerWidget, XineVideoWidget *xineWidget, |
44 | : QObject( parent, name ), mediaPlayerState( _mediaPlayerState ), videoUI( videoWidget ) { | 43 | MediaPlayerState &_mediaPlayerState, |
44 | QObject *parent, const char *name ) | ||
45 | : QObject( parent, name ), mediaPlayerState( _mediaPlayerState ) | ||
46 | { | ||
45 | 47 | ||
46 | libXine = new XINE::Lib( videoUI->vidWidget() ); | 48 | libXine = new XINE::Lib( xineWidget ); |
47 | 49 | ||
48 | connect ( videoUI, SIGNAL( videoResized( const QSize & )), this, SLOT( videoResized ( const QSize & ) ) ); | 50 | connect ( videoContainerWidget, SIGNAL( videoResized( const QSize & )), this, SLOT( videoResized ( const QSize & ) ) ); |
49 | connect( &mediaPlayerState, SIGNAL( pausedToggled( bool ) ), this, SLOT( pause( bool ) ) ); | 51 | connect( &mediaPlayerState, SIGNAL( pausedToggled( bool ) ), this, SLOT( pause( bool ) ) ); |
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.h b/noncore/multimedia/opieplayer2/xinecontrol.h index 24e966b..69a594f 100644 --- a/noncore/multimedia/opieplayer2/xinecontrol.h +++ b/noncore/multimedia/opieplayer2/xinecontrol.h | |||
@@ -41,4 +41,2 @@ | |||
41 | 41 | ||
42 | class VideoWidget; | ||
43 | |||
44 | class XineControl : public QObject { | 42 | class XineControl : public QObject { |
@@ -46,3 +44,5 @@ class XineControl : public QObject { | |||
46 | public: | 44 | public: |
47 | XineControl( VideoWidget *videoWidget, MediaPlayerState &_mediaPlayerState, QObject *parent = 0, const char *name =0 ); | 45 | XineControl( QWidget *videoContainerWidget, XineVideoWidget *xineWidget, |
46 | MediaPlayerState &_mediaPlayerState, | ||
47 | QObject *parent = 0, const char *name =0 ); | ||
48 | ~XineControl(); | 48 | ~XineControl(); |
@@ -116,5 +116,2 @@ signals: | |||
116 | void positionChanged( long ); | 116 | void positionChanged( long ); |
117 | |||
118 | private: | ||
119 | VideoWidget *videoUI; | ||
120 | }; | 117 | }; |