-rw-r--r-- | noncore/multimedia/opieplayer2/audiowidget.h | 4 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/mediawidget.cpp | 9 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/mediawidget.h | 1 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/videowidget.cpp | 33 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/videowidget.h | 11 |
5 files changed, 30 insertions, 28 deletions
diff --git a/noncore/multimedia/opieplayer2/audiowidget.h b/noncore/multimedia/opieplayer2/audiowidget.h index 092e5ce..9b276b5 100644 --- a/noncore/multimedia/opieplayer2/audiowidget.h +++ b/noncore/multimedia/opieplayer2/audiowidget.h | |||
@@ -38,55 +38,55 @@ | |||
38 | #include <qdrawutil.h> | 38 | #include <qdrawutil.h> |
39 | #include <qpixmap.h> | 39 | #include <qpixmap.h> |
40 | #include <qstring.h> | 40 | #include <qstring.h> |
41 | #include <qslider.h> | 41 | #include <qslider.h> |
42 | #include <qframe.h> | 42 | #include <qframe.h> |
43 | #include <qlineedit.h> | 43 | #include <qlineedit.h> |
44 | #include <qimage.h> | 44 | #include <qimage.h> |
45 | 45 | ||
46 | #include <opie/oticker.h> | 46 | #include <opie/oticker.h> |
47 | 47 | ||
48 | #include "mediawidget.h" | 48 | #include "mediawidget.h" |
49 | 49 | ||
50 | class QPixmap; | 50 | class QPixmap; |
51 | 51 | ||
52 | class AudioWidget : public MediaWidget { | 52 | class AudioWidget : public MediaWidget { |
53 | Q_OBJECT | 53 | Q_OBJECT |
54 | public: | 54 | public: |
55 | AudioWidget( PlayListWidget &playList, MediaPlayerState &mediaPlayerState, QWidget* parent=0, const char* name=0 ); | 55 | AudioWidget( PlayListWidget &playList, MediaPlayerState &mediaPlayerState, QWidget* parent=0, const char* name=0 ); |
56 | ~AudioWidget(); | 56 | ~AudioWidget(); |
57 | void setTickerText( const QString &text ) { songInfo.setText( text ); } | 57 | void setTickerText( const QString &text ) { songInfo.setText( text ); } |
58 | public slots: | 58 | public slots: |
59 | void updateSlider( long, long ); | 59 | void updateSlider( long, long ); |
60 | void sliderPressed( ); | 60 | void sliderPressed( ); |
61 | void sliderReleased( ); | 61 | void sliderReleased( ); |
62 | void setLooping( bool b) { setToggleButton( buttons[ Loop ], b ); } | 62 | void setLooping( bool b) { setToggleButton( Loop, b ); } |
63 | void setPosition( long ); | 63 | void setPosition( long ); |
64 | void setSeekable( bool ); | 64 | void setSeekable( bool ); |
65 | 65 | ||
66 | public: | 66 | public: |
67 | virtual void setLength( long ); | 67 | virtual void setLength( long ); |
68 | virtual void setPlaying( bool b) { setToggleButton( buttons[ Play ], b ); } | 68 | virtual void setPlaying( bool b) { setToggleButton( Play, b ); } |
69 | virtual void setDisplayType( MediaPlayerState::DisplayType displayType ); | 69 | virtual void setDisplayType( MediaPlayerState::DisplayType displayType ); |
70 | 70 | ||
71 | signals: | 71 | signals: |
72 | void moreClicked(); | 72 | void moreClicked(); |
73 | void lessClicked(); | 73 | void lessClicked(); |
74 | void forwardClicked(); | 74 | void forwardClicked(); |
75 | void backClicked(); | 75 | void backClicked(); |
76 | void sliderMoved(long); | 76 | void sliderMoved(long); |
77 | 77 | ||
78 | protected: | 78 | protected: |
79 | void doBlank(); | 79 | void doBlank(); |
80 | void doUnblank(); | 80 | void doUnblank(); |
81 | void showEvent( QShowEvent *se ); | 81 | void showEvent( QShowEvent *se ); |
82 | void resizeEvent( QResizeEvent *re ); | 82 | void resizeEvent( QResizeEvent *re ); |
83 | void mouseMoveEvent( QMouseEvent *event ); | 83 | void mouseMoveEvent( QMouseEvent *event ); |
84 | void mousePressEvent( QMouseEvent *event ); | 84 | void mousePressEvent( QMouseEvent *event ); |
85 | void mouseReleaseEvent( QMouseEvent *event ); | 85 | void mouseReleaseEvent( QMouseEvent *event ); |
86 | void timerEvent( QTimerEvent *event ); | 86 | void timerEvent( QTimerEvent *event ); |
87 | void keyReleaseEvent( QKeyEvent *e); | 87 | void keyReleaseEvent( QKeyEvent *e); |
88 | private slots: | 88 | private slots: |
89 | void skipFor(); | 89 | void skipFor(); |
90 | void skipBack(); | 90 | void skipBack(); |
91 | void stopSkip(); | 91 | void stopSkip(); |
92 | private: | 92 | private: |
diff --git a/noncore/multimedia/opieplayer2/mediawidget.cpp b/noncore/multimedia/opieplayer2/mediawidget.cpp index 7891a7e..c0ebd63 100644 --- a/noncore/multimedia/opieplayer2/mediawidget.cpp +++ b/noncore/multimedia/opieplayer2/mediawidget.cpp | |||
@@ -94,39 +94,48 @@ bool MediaWidget::isOverButton( const QPoint &position, int buttonId ) const | |||
94 | buttonMask.pixelIndex( position.x(), position.y() ) == buttonId + 1 ); | 94 | buttonMask.pixelIndex( position.x(), position.y() ) == buttonId + 1 ); |
95 | } | 95 | } |
96 | 96 | ||
97 | void MediaWidget::paintAllButtons( QPainter &p ) | 97 | void MediaWidget::paintAllButtons( QPainter &p ) |
98 | { | 98 | { |
99 | for ( ButtonVector::const_iterator it = buttons.begin(); | 99 | for ( ButtonVector::const_iterator it = buttons.begin(); |
100 | it != buttons.end(); ++it ) | 100 | it != buttons.end(); ++it ) |
101 | paintButton( p, *it ); | 101 | paintButton( p, *it ); |
102 | } | 102 | } |
103 | 103 | ||
104 | void MediaWidget::paintButton( const Button &button ) | 104 | void MediaWidget::paintButton( const Button &button ) |
105 | { | 105 | { |
106 | QPainter p( this ); | 106 | QPainter p( this ); |
107 | paintButton( p, button ); | 107 | paintButton( p, button ); |
108 | } | 108 | } |
109 | 109 | ||
110 | void MediaWidget::paintButton( QPainter &p, const Button &button ) | 110 | void MediaWidget::paintButton( QPainter &p, const Button &button ) |
111 | { | 111 | { |
112 | if ( button.isDown ) | 112 | if ( button.isDown ) |
113 | p.drawPixmap( upperLeftOfButtonMask, button.pixDown ); | 113 | p.drawPixmap( upperLeftOfButtonMask, button.pixDown ); |
114 | else | 114 | else |
115 | p.drawPixmap( upperLeftOfButtonMask, button.pixUp ); | 115 | p.drawPixmap( upperLeftOfButtonMask, button.pixUp ); |
116 | } | 116 | } |
117 | 117 | ||
118 | void MediaWidget::setToggleButton( Command command, bool down ) | ||
119 | { | ||
120 | for ( ButtonVector::iterator it = buttons.begin(); it != buttons.end(); ++it ) | ||
121 | if ( it->command == command ) { | ||
122 | setToggleButton( *it, down ); | ||
123 | return; | ||
124 | } | ||
125 | } | ||
126 | |||
118 | void MediaWidget::setToggleButton( Button &button, bool down ) | 127 | void MediaWidget::setToggleButton( Button &button, bool down ) |
119 | { | 128 | { |
120 | if ( down != button.isDown ) | 129 | if ( down != button.isDown ) |
121 | toggleButton( button ); | 130 | toggleButton( button ); |
122 | } | 131 | } |
123 | 132 | ||
124 | void MediaWidget::toggleButton( Button &button ) | 133 | void MediaWidget::toggleButton( Button &button ) |
125 | { | 134 | { |
126 | button.isDown = !button.isDown; | 135 | button.isDown = !button.isDown; |
127 | 136 | ||
128 | paintButton( button ); | 137 | paintButton( button ); |
129 | } | 138 | } |
130 | 139 | ||
131 | /* vim: et sw=4 ts=4 | 140 | /* vim: et sw=4 ts=4 |
132 | */ | 141 | */ |
diff --git a/noncore/multimedia/opieplayer2/mediawidget.h b/noncore/multimedia/opieplayer2/mediawidget.h index 3bf01b6..caae0a7 100644 --- a/noncore/multimedia/opieplayer2/mediawidget.h +++ b/noncore/multimedia/opieplayer2/mediawidget.h | |||
@@ -71,41 +71,42 @@ public slots: | |||
71 | virtual void setDisplayType( MediaPlayerState::DisplayType displayType ) = 0; | 71 | virtual void setDisplayType( MediaPlayerState::DisplayType displayType ) = 0; |
72 | virtual void setLength( long length ) = 0; | 72 | virtual void setLength( long length ) = 0; |
73 | virtual void setPlaying( bool playing ) = 0; | 73 | virtual void setPlaying( bool playing ) = 0; |
74 | 74 | ||
75 | signals: | 75 | signals: |
76 | void moreReleased(); | 76 | void moreReleased(); |
77 | void lessReleased(); | 77 | void lessReleased(); |
78 | void forwardReleased(); | 78 | void forwardReleased(); |
79 | void backReleased(); | 79 | void backReleased(); |
80 | 80 | ||
81 | protected: | 81 | protected: |
82 | virtual void closeEvent( QCloseEvent * ); | 82 | virtual void closeEvent( QCloseEvent * ); |
83 | 83 | ||
84 | virtual void paintEvent( QPaintEvent *pe ); | 84 | virtual void paintEvent( QPaintEvent *pe ); |
85 | 85 | ||
86 | void handleCommand( Command command, bool buttonDown ); | 86 | void handleCommand( Command command, bool buttonDown ); |
87 | 87 | ||
88 | bool isOverButton( const QPoint &position, int buttonId ) const; | 88 | bool isOverButton( const QPoint &position, int buttonId ) const; |
89 | 89 | ||
90 | void paintAllButtons( QPainter &p ); | 90 | void paintAllButtons( QPainter &p ); |
91 | void paintButton( const Button &button ); | 91 | void paintButton( const Button &button ); |
92 | void paintButton( QPainter &p, const Button &button ); | 92 | void paintButton( QPainter &p, const Button &button ); |
93 | 93 | ||
94 | void setToggleButton( Button &button, bool down ); | 94 | void setToggleButton( Button &button, bool down ); |
95 | void setToggleButton( Command command, bool down ); | ||
95 | void toggleButton( Button &button ); | 96 | void toggleButton( Button &button ); |
96 | 97 | ||
97 | MediaPlayerState &mediaPlayerState; | 98 | MediaPlayerState &mediaPlayerState; |
98 | PlayListWidget &playList; | 99 | PlayListWidget &playList; |
99 | 100 | ||
100 | ButtonVector buttons; | 101 | ButtonVector buttons; |
101 | 102 | ||
102 | QImage buttonMask; | 103 | QImage buttonMask; |
103 | 104 | ||
104 | QPoint upperLeftOfButtonMask; | 105 | QPoint upperLeftOfButtonMask; |
105 | 106 | ||
106 | QPixmap backgroundPixmap; | 107 | QPixmap backgroundPixmap; |
107 | }; | 108 | }; |
108 | 109 | ||
109 | #endif // MEDIAWIDGET_H | 110 | #endif // MEDIAWIDGET_H |
110 | /* vim: et sw=4 ts=4 | 111 | /* vim: et sw=4 ts=4 |
111 | */ | 112 | */ |
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp index 4867ef1..06f6cd2 100644 --- a/noncore/multimedia/opieplayer2/videowidget.cpp +++ b/noncore/multimedia/opieplayer2/videowidget.cpp | |||
@@ -91,49 +91,49 @@ VideoWidget::VideoWidget( PlayListWidget &playList, MediaPlayerState &mediaPlaye | |||
91 | 91 | ||
92 | QString skinPath = "opieplayer2/skins/" + skin; | 92 | QString skinPath = "opieplayer2/skins/" + skin; |
93 | backgroundPixmap = QPixmap( Resource::loadPixmap( QString("%1/background").arg(skinPath) ) ); | 93 | backgroundPixmap = QPixmap( Resource::loadPixmap( QString("%1/background").arg(skinPath) ) ); |
94 | imgUp = QImage( Resource::loadImage( QString("%1/skinV_up").arg(skinPath) ) ); | 94 | imgUp = QImage( Resource::loadImage( QString("%1/skinV_up").arg(skinPath) ) ); |
95 | imgDn = QImage( Resource::loadImage( QString("%1/skinV_down").arg(skinPath) ) ); | 95 | imgDn = QImage( Resource::loadImage( QString("%1/skinV_down").arg(skinPath) ) ); |
96 | 96 | ||
97 | buttonMask = QImage( imgUp.width(), imgUp.height(), 8, 255 ); | 97 | buttonMask = QImage( imgUp.width(), imgUp.height(), 8, 255 ); |
98 | buttonMask.fill( 0 ); | 98 | buttonMask.fill( 0 ); |
99 | 99 | ||
100 | for ( uint i = 0; i < buttonCount; i++ ) { | 100 | for ( uint i = 0; i < buttonCount; i++ ) { |
101 | Button button; | 101 | Button button; |
102 | button.command = skinInfo[ i ].command; | 102 | button.command = skinInfo[ i ].command; |
103 | button.type = skinInfo[ i ].type; | 103 | button.type = skinInfo[ i ].type; |
104 | 104 | ||
105 | QString filename = QString( QPEApplication::qpeDir() + "/pics/" + skinPath + "/skinV_mask_" + skinInfo[i].fileName + ".png" ); | 105 | QString filename = QString( QPEApplication::qpeDir() + "/pics/" + skinPath + "/skinV_mask_" + skinInfo[i].fileName + ".png" ); |
106 | button.mask =QBitmap( filename ); | 106 | button.mask =QBitmap( filename ); |
107 | 107 | ||
108 | if ( !button.mask.isNull() ) { | 108 | if ( !button.mask.isNull() ) { |
109 | QImage imgMask = button.mask.convertToImage(); | 109 | QImage imgMask = button.mask.convertToImage(); |
110 | uchar **dest = buttonMask.jumpTable(); | 110 | uchar **dest = buttonMask.jumpTable(); |
111 | for ( int y = 0; y < imgUp.height(); y++ ) { | 111 | for ( int y = 0; y < imgUp.height(); y++ ) { |
112 | uchar *line = dest[y]; | 112 | uchar *line = dest[y]; |
113 | for ( int x = 0; x < imgUp.width(); x++ ) | 113 | for ( int x = 0; x < imgUp.width(); x++ ) |
114 | if ( !qRed( imgMask.pixel( x, y ) ) ) | 114 | if ( !qRed( imgMask.pixel( x, y ) ) ) |
115 | line[x] = i + 1; | 115 | line[x] = button.command + 1; |
116 | } | 116 | } |
117 | } | 117 | } |
118 | 118 | ||
119 | buttons.push_back( button ); | 119 | buttons.push_back( button ); |
120 | } | 120 | } |
121 | 121 | ||
122 | setBackgroundPixmap( backgroundPixmap ); | 122 | setBackgroundPixmap( backgroundPixmap ); |
123 | 123 | ||
124 | slider = new QSlider( Qt::Horizontal, this ); | 124 | slider = new QSlider( Qt::Horizontal, this ); |
125 | slider->setMinValue( 0 ); | 125 | slider->setMinValue( 0 ); |
126 | slider->setMaxValue( 1 ); | 126 | slider->setMaxValue( 1 ); |
127 | slider->setBackgroundPixmap( Resource::loadPixmap( backgroundPix ) ); | 127 | slider->setBackgroundPixmap( Resource::loadPixmap( backgroundPix ) ); |
128 | //slider->setFocusPolicy( QWidget::NoFocus ); | 128 | //slider->setFocusPolicy( QWidget::NoFocus ); |
129 | 129 | ||
130 | resizeEvent( NULL ); | 130 | resizeEvent( NULL ); |
131 | 131 | ||
132 | setLength( mediaPlayerState.length() ); | 132 | setLength( mediaPlayerState.length() ); |
133 | setPosition( mediaPlayerState.position() ); | 133 | setPosition( mediaPlayerState.position() ); |
134 | setFullscreen( mediaPlayerState.isFullscreen() ); | 134 | setFullscreen( mediaPlayerState.isFullscreen() ); |
135 | setPlaying( mediaPlayerState.isPlaying() ); | 135 | setPlaying( mediaPlayerState.isPlaying() ); |
136 | } | 136 | } |
137 | 137 | ||
138 | 138 | ||
139 | VideoWidget::~VideoWidget() | 139 | VideoWidget::~VideoWidget() |
@@ -226,99 +226,102 @@ void VideoWidget::setDisplayType( MediaPlayerState::DisplayType displayType ) | |||
226 | hide(); | 226 | hide(); |
227 | } | 227 | } |
228 | 228 | ||
229 | void VideoWidget::updateSlider( long i, long max ) { | 229 | void VideoWidget::updateSlider( long i, long max ) { |
230 | // Will flicker too much if we don't do this | 230 | // Will flicker too much if we don't do this |
231 | if ( max == 0 ) { | 231 | if ( max == 0 ) { |
232 | return; | 232 | return; |
233 | } | 233 | } |
234 | int width = slider->width(); | 234 | int width = slider->width(); |
235 | int val = int((double)i * width / max); | 235 | int val = int((double)i * width / max); |
236 | if ( !mediaPlayerState.isFullscreen() && !videoSliderBeingMoved ) { | 236 | if ( !mediaPlayerState.isFullscreen() && !videoSliderBeingMoved ) { |
237 | if ( slider->value() != val ) { | 237 | if ( slider->value() != val ) { |
238 | slider->setValue( val ); | 238 | slider->setValue( val ); |
239 | } | 239 | } |
240 | if ( slider->maxValue() != width ) { | 240 | if ( slider->maxValue() != width ) { |
241 | slider->setMaxValue( width ); | 241 | slider->setMaxValue( width ); |
242 | } | 242 | } |
243 | } | 243 | } |
244 | } | 244 | } |
245 | 245 | ||
246 | void VideoWidget::mouseMoveEvent( QMouseEvent *event ) { | 246 | void VideoWidget::mouseMoveEvent( QMouseEvent *event ) { |
247 | for ( unsigned int i = 0; i < buttons.size(); i++ ) { | 247 | for ( unsigned int i = 0; i < buttons.size(); i++ ) { |
248 | 248 | ||
249 | Button &button = buttons[ i ]; | 249 | Button &button = buttons[ i ]; |
250 | Command command = button.command; | ||
250 | 251 | ||
251 | if ( event->state() == QMouseEvent::LeftButton ) { | 252 | if ( event->state() == QMouseEvent::LeftButton ) { |
252 | // The test to see if the mouse click is inside the button or not | 253 | // The test to see if the mouse click is inside the button or not |
253 | bool isOnButton = isOverButton( event->pos() - upperLeftOfButtonMask, i ); | 254 | bool isOnButton = isOverButton( event->pos() - upperLeftOfButtonMask, command ); |
254 | 255 | ||
255 | if ( isOnButton && !button.isHeld ) { | 256 | if ( isOnButton && !button.isHeld ) { |
256 | button.isHeld = TRUE; | 257 | button.isHeld = TRUE; |
257 | toggleButton( button ); | 258 | toggleButton( button ); |
258 | 259 | ||
259 | switch (i) { | 260 | switch ( command ) { |
260 | case VideoVolUp: | 261 | case VolumeUp: |
261 | emit moreClicked(); | 262 | emit moreClicked(); |
262 | return; | 263 | return; |
263 | case VideoVolDown: | 264 | case VolumeDown: |
264 | emit lessClicked(); | 265 | emit lessClicked(); |
265 | return; | 266 | return; |
267 | default: break; | ||
266 | } | 268 | } |
267 | } else if ( !isOnButton && button.isHeld ) { | 269 | } else if ( !isOnButton && button.isHeld ) { |
268 | button.isHeld = FALSE; | 270 | button.isHeld = FALSE; |
269 | toggleButton( button ); | 271 | toggleButton( button ); |
270 | } | 272 | } |
271 | } else { | 273 | } else { |
272 | 274 | ||
273 | if ( button.isHeld ) { | 275 | if ( button.isHeld ) { |
274 | button.isHeld = FALSE; | 276 | button.isHeld = FALSE; |
275 | if ( button.type != ToggleButton ) { | 277 | if ( button.type != ToggleButton ) { |
276 | setToggleButton( button, FALSE ); | 278 | setToggleButton( button, FALSE ); |
277 | } | 279 | } |
278 | 280 | ||
279 | switch(i) { | 281 | switch( command ) { |
280 | 282 | ||
281 | case VideoPlay: { | 283 | case Play: { |
282 | if( mediaPlayerState.isPaused() ) { | 284 | if( mediaPlayerState.isPaused() ) { |
283 | setToggleButton( button, FALSE ); | 285 | setToggleButton( button, FALSE ); |
284 | mediaPlayerState.setPaused( FALSE ); | 286 | mediaPlayerState.setPaused( FALSE ); |
285 | return; | 287 | return; |
286 | } else if( !mediaPlayerState.isPaused() ) { | 288 | } else if( !mediaPlayerState.isPaused() ) { |
287 | setToggleButton( button, TRUE ); | 289 | setToggleButton( button, TRUE ); |
288 | mediaPlayerState.setPaused( TRUE ); | 290 | mediaPlayerState.setPaused( TRUE ); |
289 | return; | 291 | return; |
290 | } else { | 292 | } else { |
291 | return; | 293 | return; |
292 | } | 294 | } |
293 | } | 295 | } |
294 | 296 | ||
295 | case VideoStop: mediaPlayerState.setPlaying( FALSE ); return; | 297 | case Stop: mediaPlayerState.setPlaying( FALSE ); return; |
296 | case VideoNext: if( playList.currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setNext(); return; | 298 | case Next: if( playList.currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setNext(); return; |
297 | case VideoPrevious: if( playList.currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setPrev(); return; | 299 | case Previous: if( playList.currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setPrev(); return; |
298 | case VideoVolUp: emit moreReleased(); return; | 300 | case VolumeUp: emit moreReleased(); return; |
299 | case VideoVolDown: emit lessReleased(); return; | 301 | case VolumeDown: emit lessReleased(); return; |
300 | case VideoFullscreen: mediaPlayerState.setFullscreen( TRUE ); makeVisible(); return; | 302 | case FullScreen: mediaPlayerState.setFullscreen( TRUE ); makeVisible(); return; |
303 | default: break; | ||
301 | } | 304 | } |
302 | } | 305 | } |
303 | } | 306 | } |
304 | } | 307 | } |
305 | } | 308 | } |
306 | 309 | ||
307 | void VideoWidget::mousePressEvent( QMouseEvent *event ) { | 310 | void VideoWidget::mousePressEvent( QMouseEvent *event ) { |
308 | mouseMoveEvent( event ); | 311 | mouseMoveEvent( event ); |
309 | } | 312 | } |
310 | 313 | ||
311 | void VideoWidget::mouseReleaseEvent( QMouseEvent *event ) { | 314 | void VideoWidget::mouseReleaseEvent( QMouseEvent *event ) { |
312 | if ( mediaPlayerState.isFullscreen() ) { | 315 | if ( mediaPlayerState.isFullscreen() ) { |
313 | mediaPlayerState.setFullscreen( FALSE ); | 316 | mediaPlayerState.setFullscreen( FALSE ); |
314 | makeVisible(); | 317 | makeVisible(); |
315 | } | 318 | } |
316 | mouseMoveEvent( event ); | 319 | mouseMoveEvent( event ); |
317 | } | 320 | } |
318 | 321 | ||
319 | void VideoWidget::showEvent( QShowEvent* ) { | 322 | void VideoWidget::showEvent( QShowEvent* ) { |
320 | QMouseEvent event( QEvent::MouseMove, QPoint( 0, 0 ), 0, 0 ); | 323 | QMouseEvent event( QEvent::MouseMove, QPoint( 0, 0 ), 0, 0 ); |
321 | mouseMoveEvent( &event ); | 324 | mouseMoveEvent( &event ); |
322 | } | 325 | } |
323 | 326 | ||
324 | 327 | ||
@@ -406,32 +409,32 @@ void VideoWidget::keyReleaseEvent( QKeyEvent *e) { | |||
406 | case Key_Up: | 409 | case Key_Up: |
407 | // toggleButton(5); | 410 | // toggleButton(5); |
408 | emit moreClicked(); | 411 | emit moreClicked(); |
409 | emit moreReleased(); | 412 | emit moreReleased(); |
410 | // toggleButton(5); | 413 | // toggleButton(5); |
411 | break; | 414 | break; |
412 | case Key_Right: | 415 | case Key_Right: |
413 | mediaPlayerState.setNext(); | 416 | mediaPlayerState.setNext(); |
414 | break; | 417 | break; |
415 | case Key_Left: | 418 | case Key_Left: |
416 | mediaPlayerState.setPrev(); | 419 | mediaPlayerState.setPrev(); |
417 | break; | 420 | break; |
418 | case Key_Escape: | 421 | case Key_Escape: |
419 | break; | 422 | break; |
420 | 423 | ||
421 | }; | 424 | }; |
422 | } | 425 | } |
423 | 426 | ||
424 | XineVideoWidget* VideoWidget::vidWidget() { | 427 | XineVideoWidget* VideoWidget::vidWidget() { |
425 | return videoFrame; | 428 | return videoFrame; |
426 | } | 429 | } |
427 | 430 | ||
428 | 431 | ||
429 | void VideoWidget::setFullscreen ( bool b ) { | 432 | void VideoWidget::setFullscreen ( bool b ) { |
430 | setToggleButton( buttons[ VideoFullscreen ], b ); | 433 | setToggleButton( FullScreen, b ); |
431 | } | 434 | } |
432 | 435 | ||
433 | 436 | ||
434 | void VideoWidget::setPlaying( bool b) { | 437 | void VideoWidget::setPlaying( bool b) { |
435 | setToggleButton( buttons[ VideoPlay ], b ); | 438 | setToggleButton( Play, b ); |
436 | } | 439 | } |
437 | 440 | ||
diff --git a/noncore/multimedia/opieplayer2/videowidget.h b/noncore/multimedia/opieplayer2/videowidget.h index 915e9cc..c3bc131 100644 --- a/noncore/multimedia/opieplayer2/videowidget.h +++ b/noncore/multimedia/opieplayer2/videowidget.h | |||
@@ -23,59 +23,48 @@ | |||
23 | ++= -. .` .: details. | 23 | ++= -. .` .: details. |
24 | : = ...= . :.=- | 24 | : = ...= . :.=- |
25 | -. .:....=;==+<; You should have received a copy of the GNU | 25 | -. .:....=;==+<; You should have received a copy of the GNU |
26 | -_. . . )=. = Library General Public License along with | 26 | -_. . . )=. = Library General Public License along with |
27 | -- :-=` this library; see the file COPYING.LIB. | 27 | -- :-=` this library; see the file COPYING.LIB. |
28 | If not, write to the Free Software Foundation, | 28 | If not, write to the Free Software Foundation, |
29 | Inc., 59 Temple Place - Suite 330, | 29 | Inc., 59 Temple Place - Suite 330, |
30 | Boston, MA 02111-1307, USA. | 30 | Boston, MA 02111-1307, USA. |
31 | 31 | ||
32 | */ | 32 | */ |
33 | 33 | ||
34 | #ifndef VIDEO_WIDGET_H | 34 | #ifndef VIDEO_WIDGET_H |
35 | #define VIDEO_WIDGET_H | 35 | #define VIDEO_WIDGET_H |
36 | 36 | ||
37 | #include <qwidget.h> | 37 | #include <qwidget.h> |
38 | #include <qimage.h> | 38 | #include <qimage.h> |
39 | #include <qpixmap.h> | 39 | #include <qpixmap.h> |
40 | #include "xinevideowidget.h" | 40 | #include "xinevideowidget.h" |
41 | 41 | ||
42 | #include "mediawidget.h" | 42 | #include "mediawidget.h" |
43 | 43 | ||
44 | class QPixmap; | 44 | class QPixmap; |
45 | class QSlider; | 45 | class QSlider; |
46 | 46 | ||
47 | enum VideoButtons { | ||
48 | VideoPlay = 0, | ||
49 | VideoStop, | ||
50 | // VideoPause, | ||
51 | VideoNext, | ||
52 | VideoPrevious, | ||
53 | VideoVolUp, | ||
54 | VideoVolDown, | ||
55 | VideoFullscreen | ||
56 | }; | ||
57 | |||
58 | class VideoWidget : public MediaWidget { | 47 | class VideoWidget : public MediaWidget { |
59 | Q_OBJECT | 48 | Q_OBJECT |
60 | public: | 49 | public: |
61 | VideoWidget( PlayListWidget &playList, MediaPlayerState &mediaPlayerState, QWidget* parent=0, const char* name=0 ); | 50 | VideoWidget( PlayListWidget &playList, MediaPlayerState &mediaPlayerState, QWidget* parent=0, const char* name=0 ); |
62 | ~VideoWidget(); | 51 | ~VideoWidget(); |
63 | 52 | ||
64 | 53 | ||
65 | XineVideoWidget* vidWidget(); | 54 | XineVideoWidget* vidWidget(); |
66 | public slots: | 55 | public slots: |
67 | void updateSlider( long, long ); | 56 | void updateSlider( long, long ); |
68 | void sliderPressed( ); | 57 | void sliderPressed( ); |
69 | void sliderReleased( ); | 58 | void sliderReleased( ); |
70 | void setFullscreen( bool b ); | 59 | void setFullscreen( bool b ); |
71 | void makeVisible(); | 60 | void makeVisible(); |
72 | void backToNormal(); | 61 | void backToNormal(); |
73 | void setPosition( long ); | 62 | void setPosition( long ); |
74 | 63 | ||
75 | public: | 64 | public: |
76 | virtual void setPlaying( bool b); | 65 | virtual void setPlaying( bool b); |
77 | virtual void setLength( long ); | 66 | virtual void setLength( long ); |
78 | virtual void setDisplayType( MediaPlayerState::DisplayType displayType ); | 67 | virtual void setDisplayType( MediaPlayerState::DisplayType displayType ); |
79 | 68 | ||
80 | signals: | 69 | signals: |
81 | void moreClicked(); | 70 | void moreClicked(); |