summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/audiowidget.cpp5
-rw-r--r--noncore/multimedia/opieplayer2/audiowidget.h1
-rw-r--r--noncore/multimedia/opieplayer2/mediawidget.cpp5
-rw-r--r--noncore/multimedia/opieplayer2/mediawidget.h2
-rw-r--r--noncore/multimedia/opieplayer2/videowidget.cpp5
-rw-r--r--noncore/multimedia/opieplayer2/videowidget.h1
6 files changed, 7 insertions, 12 deletions
diff --git a/noncore/multimedia/opieplayer2/audiowidget.cpp b/noncore/multimedia/opieplayer2/audiowidget.cpp
index 3070bc3..f6e6086 100644
--- a/noncore/multimedia/opieplayer2/audiowidget.cpp
+++ b/noncore/multimedia/opieplayer2/audiowidget.cpp
@@ -185,338 +185,333 @@ AudioWidget::~AudioWidget() {
185// mediaPlayerState->setPlaying(false); 185// mediaPlayerState->setPlaying(false);
186} 186}
187 187
188namespace { 188namespace {
189 189
190QPixmap combineImageWithBackground( QImage img, QPixmap bg, QPoint offset ) { 190QPixmap combineImageWithBackground( QImage img, QPixmap bg, QPoint offset ) {
191 QPixmap pix( img.width(), img.height() ); 191 QPixmap pix( img.width(), img.height() );
192 QPainter p( &pix ); 192 QPainter p( &pix );
193 p.drawTiledPixmap( pix.rect(), bg, offset ); 193 p.drawTiledPixmap( pix.rect(), bg, offset );
194 p.drawImage( 0, 0, img ); 194 p.drawImage( 0, 0, img );
195 return pix; 195 return pix;
196} 196}
197 197
198 198
199QPixmap *maskPixToMask( QPixmap pix, QBitmap mask ) { 199QPixmap *maskPixToMask( QPixmap pix, QBitmap mask ) {
200 QPixmap *pixmap = new QPixmap( pix ); 200 QPixmap *pixmap = new QPixmap( pix );
201 pixmap->setMask( mask ); 201 pixmap->setMask( mask );
202 return pixmap; 202 return pixmap;
203} 203}
204 204
205}; 205};
206 206
207void AudioWidget::resizeEvent( QResizeEvent * ) { 207void AudioWidget::resizeEvent( QResizeEvent * ) {
208 int h = height(); 208 int h = height();
209 int w = width(); 209 int w = width();
210 210
211 songInfo.setGeometry( QRect( 2, 2, w - 4, 20 ) ); 211 songInfo.setGeometry( QRect( 2, 2, w - 4, 20 ) );
212 slider.setFixedWidth( w - 110 ); 212 slider.setFixedWidth( w - 110 );
213 slider.setGeometry( QRect( 15, h - 22, w - 90, 20 ) ); 213 slider.setGeometry( QRect( 15, h - 22, w - 90, 20 ) );
214 slider.setBackgroundOrigin( QWidget::ParentOrigin ); 214 slider.setBackgroundOrigin( QWidget::ParentOrigin );
215 time.setGeometry( QRect( w - 85, h - 30, 70, 20 ) ); 215 time.setGeometry( QRect( w - 85, h - 30, 70, 20 ) );
216 216
217 xoff = ( w - imgUp.width() ) / 2; 217 xoff = ( w - imgUp.width() ) / 2;
218 yoff = (( h - imgUp.height() ) / 2) - 10; 218 yoff = (( h - imgUp.height() ) / 2) - 10;
219 QPoint p( xoff, yoff ); 219 QPoint p( xoff, yoff );
220 220
221 QPixmap pixUp = combineImageWithBackground( imgUp, pixBg, p ); 221 QPixmap pixUp = combineImageWithBackground( imgUp, pixBg, p );
222 QPixmap pixDn = combineImageWithBackground( imgDn, pixBg, p ); 222 QPixmap pixDn = combineImageWithBackground( imgDn, pixBg, p );
223 223
224 for ( int i = 0; i < 10; i++ ) { 224 for ( int i = 0; i < 10; i++ ) {
225 if ( !masks[i]->isNull() ) { 225 if ( !masks[i]->isNull() ) {
226 delete buttonPixUp[i]; 226 delete buttonPixUp[i];
227 delete buttonPixDown[i]; 227 delete buttonPixDown[i];
228 buttonPixUp[i] = maskPixToMask( pixUp, *masks[i] ); 228 buttonPixUp[i] = maskPixToMask( pixUp, *masks[i] );
229 buttonPixDown[i] = maskPixToMask( pixDn, *masks[i] ); 229 buttonPixDown[i] = maskPixToMask( pixDn, *masks[i] );
230 } 230 }
231 } 231 }
232} 232}
233 233
234static bool audioSliderBeingMoved = FALSE; 234static bool audioSliderBeingMoved = FALSE;
235 235
236 236
237void AudioWidget::sliderPressed() { 237void AudioWidget::sliderPressed() {
238 audioSliderBeingMoved = TRUE; 238 audioSliderBeingMoved = TRUE;
239} 239}
240 240
241 241
242void AudioWidget::sliderReleased() { 242void AudioWidget::sliderReleased() {
243 audioSliderBeingMoved = FALSE; 243 audioSliderBeingMoved = FALSE;
244 if ( slider.width() == 0 ) 244 if ( slider.width() == 0 )
245 return; 245 return;
246 long val = long((double)slider.value() * mediaPlayerState.length() / slider.width()); 246 long val = long((double)slider.value() * mediaPlayerState.length() / slider.width());
247 mediaPlayerState.setPosition( val ); 247 mediaPlayerState.setPosition( val );
248} 248}
249 249
250void AudioWidget::setPosition( long i ) { 250void AudioWidget::setPosition( long i ) {
251 // qDebug("<<<<<<<<<<<<<<<<<<<<<<<<set position %d",i); 251 // qDebug("<<<<<<<<<<<<<<<<<<<<<<<<set position %d",i);
252 updateSlider( i, mediaPlayerState.length() ); 252 updateSlider( i, mediaPlayerState.length() );
253} 253}
254 254
255 255
256void AudioWidget::setLength( long max ) { 256void AudioWidget::setLength( long max ) {
257 updateSlider( mediaPlayerState.position(), max ); 257 updateSlider( mediaPlayerState.position(), max );
258} 258}
259 259
260 260
261void AudioWidget::setDisplayType( MediaPlayerState::DisplayType mediaType ) { 261void AudioWidget::setDisplayType( MediaPlayerState::DisplayType mediaType ) {
262 if ( mediaType == MediaPlayerState::Audio ) { 262 if ( mediaType == MediaPlayerState::Audio ) {
263 // startTimer( 150 ); 263 // startTimer( 150 );
264 showMaximized(); 264 showMaximized();
265 return; 265 return;
266 } 266 }
267 267
268 killTimers(); 268 killTimers();
269 hide(); 269 hide();
270} 270}
271 271
272 272
273void AudioWidget::setSeekable( bool isSeekable ) { 273void AudioWidget::setSeekable( bool isSeekable ) {
274 274
275 if ( !isSeekable ) { 275 if ( !isSeekable ) {
276 qDebug("<<<<<<<<<<<<<<file is STREAMING>>>>>>>>>>>>>>>>>>>"); 276 qDebug("<<<<<<<<<<<<<<file is STREAMING>>>>>>>>>>>>>>>>>>>");
277 if( !slider.isHidden()) { 277 if( !slider.isHidden()) {
278 slider.hide(); 278 slider.hide();
279 } 279 }
280 disconnect( &mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) ); 280 disconnect( &mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) );
281 disconnect( &mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) ); 281 disconnect( &mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
282 disconnect( &slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) ); 282 disconnect( &slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) );
283 disconnect( &slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) ); 283 disconnect( &slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) );
284 } else { 284 } else {
285 // this stops the slider from being moved, thus 285 // this stops the slider from being moved, thus
286 // does not stop stream when it reaches the end 286 // does not stop stream when it reaches the end
287 slider.show(); 287 slider.show();
288 qDebug( " CONNECT SET POSTION " ); 288 qDebug( " CONNECT SET POSTION " );
289 connect( &mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) ); 289 connect( &mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) );
290 connect( &mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) ); 290 connect( &mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
291 connect( &slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) ); 291 connect( &slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) );
292 connect( &slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) ); 292 connect( &slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) );
293 } 293 }
294} 294}
295 295
296 296
297static QString timeAsString( long length ) { 297static QString timeAsString( long length ) {
298 int minutes = length / 60; 298 int minutes = length / 60;
299 int seconds = length % 60; 299 int seconds = length % 60;
300 return QString("%1:%2%3").arg( minutes ).arg( seconds / 10 ).arg( seconds % 10 ); 300 return QString("%1:%2%3").arg( minutes ).arg( seconds / 10 ).arg( seconds % 10 );
301} 301}
302 302
303void AudioWidget::updateSlider( long i, long max ) { 303void AudioWidget::updateSlider( long i, long max ) {
304 304
305 time.setText( timeAsString( i ) + " / " + timeAsString( max ) ); 305 time.setText( timeAsString( i ) + " / " + timeAsString( max ) );
306// qDebug( timeAsString( i ) + " / " + timeAsString( max ) ) ; 306// qDebug( timeAsString( i ) + " / " + timeAsString( max ) ) ;
307 307
308 if ( max == 0 ) { 308 if ( max == 0 ) {
309 return; 309 return;
310 } 310 }
311 // Will flicker too much if we don't do this 311 // Will flicker too much if we don't do this
312 // Scale to something reasonable 312 // Scale to something reasonable
313 int width = slider.width(); 313 int width = slider.width();
314 int val = int((double)i * width / max); 314 int val = int((double)i * width / max);
315 if ( !audioSliderBeingMoved ) { 315 if ( !audioSliderBeingMoved ) {
316 if ( slider.value() != val ) { 316 if ( slider.value() != val ) {
317 slider.setValue( val ); 317 slider.setValue( val );
318 } 318 }
319 319
320 if ( slider.maxValue() != width ) { 320 if ( slider.maxValue() != width ) {
321 slider.setMaxValue( width ); 321 slider.setMaxValue( width );
322 } 322 }
323 } 323 }
324} 324}
325 325
326 326
327void AudioWidget::setToggleButton( int i, bool down ) { 327void AudioWidget::setToggleButton( int i, bool down ) {
328 qDebug("setToggleButton %d", i); 328 qDebug("setToggleButton %d", i);
329 if ( down != audioButtons[i].isDown ) { 329 if ( down != audioButtons[i].isDown ) {
330 toggleButton( i ); 330 toggleButton( i );
331 } 331 }
332} 332}
333 333
334 334
335void AudioWidget::toggleButton( int i ) { 335void AudioWidget::toggleButton( int i ) {
336 audioButtons[i].isDown = !audioButtons[i].isDown; 336 audioButtons[i].isDown = !audioButtons[i].isDown;
337 QPainter p(this); 337 QPainter p(this);
338 paintButton ( &p, i ); 338 paintButton ( &p, i );
339} 339}
340 340
341 341
342void AudioWidget::paintButton( QPainter *p, int i ) { 342void AudioWidget::paintButton( QPainter *p, int i ) {
343 if ( audioButtons[i].isDown ) { 343 if ( audioButtons[i].isDown ) {
344 p->drawPixmap( xoff, yoff, *buttonPixDown[i] ); 344 p->drawPixmap( xoff, yoff, *buttonPixDown[i] );
345 } else { 345 } else {
346 p->drawPixmap( xoff, yoff, *buttonPixUp[i] ); 346 p->drawPixmap( xoff, yoff, *buttonPixUp[i] );
347 } 347 }
348} 348}
349 349
350 350
351void AudioWidget::skipFor() { 351void AudioWidget::skipFor() {
352 skipDirection = +1; 352 skipDirection = +1;
353 startTimer( 50 ); 353 startTimer( 50 );
354 mediaPlayerState.setPosition( mediaPlayerState.position() + 2 ); 354 mediaPlayerState.setPosition( mediaPlayerState.position() + 2 );
355} 355}
356 356
357void AudioWidget::skipBack() { 357void AudioWidget::skipBack() {
358 skipDirection = -1; 358 skipDirection = -1;
359 startTimer( 50 ); 359 startTimer( 50 );
360 mediaPlayerState.setPosition( mediaPlayerState.position() - 2 ); 360 mediaPlayerState.setPosition( mediaPlayerState.position() - 2 );
361} 361}
362 362
363 363
364 364
365void AudioWidget::stopSkip() { 365void AudioWidget::stopSkip() {
366 killTimers(); 366 killTimers();
367} 367}
368 368
369 369
370void AudioWidget::timerEvent( QTimerEvent * ) { 370void AudioWidget::timerEvent( QTimerEvent * ) {
371 if ( skipDirection == +1 ) { 371 if ( skipDirection == +1 ) {
372 mediaPlayerState.setPosition( mediaPlayerState.position() + 2 ); 372 mediaPlayerState.setPosition( mediaPlayerState.position() + 2 );
373 } else if ( skipDirection == -1 ) { 373 } else if ( skipDirection == -1 ) {
374 mediaPlayerState.setPosition( mediaPlayerState.position() - 2 ); 374 mediaPlayerState.setPosition( mediaPlayerState.position() - 2 );
375 } 375 }
376} 376}
377 377
378 378
379void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { 379void AudioWidget::mouseMoveEvent( QMouseEvent *event ) {
380 for ( int i = 0; i < numButtons; i++ ) { 380 for ( int i = 0; i < numButtons; i++ ) {
381 if ( event->state() == QMouseEvent::LeftButton ) { 381 if ( event->state() == QMouseEvent::LeftButton ) {
382 // The test to see if the mouse click is inside the button or not 382 // The test to see if the mouse click is inside the button or not
383 int x = event->pos().x() - xoff; 383 int x = event->pos().x() - xoff;
384 int y = event->pos().y() - yoff; 384 int y = event->pos().y() - yoff;
385 385
386 bool isOnButton = ( x > 0 && y > 0 && x < imgButtonMask.width() 386 bool isOnButton = ( x > 0 && y > 0 && x < imgButtonMask.width()
387 && y < imgButtonMask.height() 387 && y < imgButtonMask.height()
388 && imgButtonMask.pixelIndex( x, y ) == i + 1 ); 388 && imgButtonMask.pixelIndex( x, y ) == i + 1 );
389 389
390 if ( isOnButton && !audioButtons[i].isHeld ) { 390 if ( isOnButton && !audioButtons[i].isHeld ) {
391 audioButtons[i].isHeld = TRUE; 391 audioButtons[i].isHeld = TRUE;
392 toggleButton(i); 392 toggleButton(i);
393 switch (i) { 393 switch (i) {
394 case VolumeUp: 394 case VolumeUp:
395 emit moreClicked(); 395 emit moreClicked();
396 return; 396 return;
397 case VolumeDown: 397 case VolumeDown:
398 emit lessClicked(); 398 emit lessClicked();
399 return; 399 return;
400 case Forward: 400 case Forward:
401 emit forwardClicked(); 401 emit forwardClicked();
402 return; 402 return;
403 case Back: 403 case Back:
404 emit backClicked(); 404 emit backClicked();
405 return; 405 return;
406 } 406 }
407 } else if ( !isOnButton && audioButtons[i].isHeld ) { 407 } else if ( !isOnButton && audioButtons[i].isHeld ) {
408 audioButtons[i].isHeld = FALSE; 408 audioButtons[i].isHeld = FALSE;
409 toggleButton(i); 409 toggleButton(i);
410 } 410 }
411 } else { 411 } else {
412 if ( audioButtons[i].isHeld ) { 412 if ( audioButtons[i].isHeld ) {
413 audioButtons[i].isHeld = FALSE; 413 audioButtons[i].isHeld = FALSE;
414 if ( !audioButtons[i].isToggle ) { 414 if ( !audioButtons[i].isToggle ) {
415 setToggleButton( i, FALSE ); 415 setToggleButton( i, FALSE );
416 } 416 }
417 qDebug("mouseEvent %d", i); 417 qDebug("mouseEvent %d", i);
418 handleCommand( static_cast<Command>( i ), audioButtons[ i ].isDown ); 418 handleCommand( static_cast<Command>( i ), audioButtons[ i ].isDown );
419 } 419 }
420 } 420 }
421 } 421 }
422} 422}
423 423
424 424
425void AudioWidget::mousePressEvent( QMouseEvent *event ) { 425void AudioWidget::mousePressEvent( QMouseEvent *event ) {
426 mouseMoveEvent( event ); 426 mouseMoveEvent( event );
427} 427}
428 428
429 429
430void AudioWidget::mouseReleaseEvent( QMouseEvent *event ) { 430void AudioWidget::mouseReleaseEvent( QMouseEvent *event ) {
431 mouseMoveEvent( event ); 431 mouseMoveEvent( event );
432} 432}
433 433
434 434
435void AudioWidget::showEvent( QShowEvent* ) { 435void AudioWidget::showEvent( QShowEvent* ) {
436 QMouseEvent event( QEvent::MouseMove, QPoint( 0, 0 ), 0, 0 ); 436 QMouseEvent event( QEvent::MouseMove, QPoint( 0, 0 ), 0, 0 );
437 mouseMoveEvent( &event ); 437 mouseMoveEvent( &event );
438} 438}
439 439
440 440
441void AudioWidget::closeEvent( QCloseEvent* ) {
442 mediaPlayerState.setList();
443}
444
445
446void AudioWidget::paintEvent( QPaintEvent * pe ) { 441void AudioWidget::paintEvent( QPaintEvent * pe ) {
447 if ( !pe->erased() ) { 442 if ( !pe->erased() ) {
448 // Combine with background and double buffer 443 // Combine with background and double buffer
449 QPixmap pix( pe->rect().size() ); 444 QPixmap pix( pe->rect().size() );
450 QPainter p( &pix ); 445 QPainter p( &pix );
451 p.translate( -pe->rect().topLeft().x(), -pe->rect().topLeft().y() ); 446 p.translate( -pe->rect().topLeft().x(), -pe->rect().topLeft().y() );
452 p.drawTiledPixmap( pe->rect(), pixBg, pe->rect().topLeft() ); 447 p.drawTiledPixmap( pe->rect(), pixBg, pe->rect().topLeft() );
453 for ( int i = 0; i < numButtons; i++ ) 448 for ( int i = 0; i < numButtons; i++ )
454 paintButton( &p, i ); 449 paintButton( &p, i );
455 QPainter p2( this ); 450 QPainter p2( this );
456 p2.drawPixmap( pe->rect().topLeft(), pix ); 451 p2.drawPixmap( pe->rect().topLeft(), pix );
457 } else { 452 } else {
458 QPainter p( this ); 453 QPainter p( this );
459 for ( int i = 0; i < numButtons; i++ ) 454 for ( int i = 0; i < numButtons; i++ )
460 paintButton( &p, i ); 455 paintButton( &p, i );
461 } 456 }
462} 457}
463 458
464void AudioWidget::keyReleaseEvent( QKeyEvent *e) { 459void AudioWidget::keyReleaseEvent( QKeyEvent *e) {
465 switch ( e->key() ) { 460 switch ( e->key() ) {
466 ////////////////////////////// Zaurus keys 461 ////////////////////////////// Zaurus keys
467 case Key_Home: 462 case Key_Home:
468 break; 463 break;
469 case Key_F9: //activity 464 case Key_F9: //activity
470 hide(); 465 hide();
471 // qDebug("Audio F9"); 466 // qDebug("Audio F9");
472 break; 467 break;
473 case Key_F10: //contacts 468 case Key_F10: //contacts
474 break; 469 break;
475 case Key_F11: //menu 470 case Key_F11: //menu
476 mediaPlayerState.toggleBlank(); 471 mediaPlayerState.toggleBlank();
477 break; 472 break;
478 case Key_F12: //home 473 case Key_F12: //home
479 break; 474 break;
480 case Key_F13: //mail 475 case Key_F13: //mail
481 mediaPlayerState.toggleBlank(); 476 mediaPlayerState.toggleBlank();
482 break; 477 break;
483 case Key_Space: { 478 case Key_Space: {
484 if(mediaPlayerState.isPlaying()) { 479 if(mediaPlayerState.isPlaying()) {
485 // toggleButton(1); 480 // toggleButton(1);
486 mediaPlayerState.setPlaying(FALSE); 481 mediaPlayerState.setPlaying(FALSE);
487 // toggleButton(1); 482 // toggleButton(1);
488 } else { 483 } else {
489 // toggleButton(0); 484 // toggleButton(0);
490 mediaPlayerState.setPlaying(TRUE); 485 mediaPlayerState.setPlaying(TRUE);
491 // toggleButton(0); 486 // toggleButton(0);
492 } 487 }
493 } 488 }
494 break; 489 break;
495 case Key_Down: 490 case Key_Down:
496 // toggleButton(6); 491 // toggleButton(6);
497 emit lessClicked(); 492 emit lessClicked();
498 emit lessReleased(); 493 emit lessReleased();
499 // toggleButton(6); 494 // toggleButton(6);
500 break; 495 break;
501 case Key_Up: 496 case Key_Up:
502 // toggleButton(5); 497 // toggleButton(5);
503 emit moreClicked(); 498 emit moreClicked();
504 emit moreReleased(); 499 emit moreReleased();
505 // toggleButton(5); 500 // toggleButton(5);
506 break; 501 break;
507 case Key_Right: 502 case Key_Right:
508 // toggleButton(3); 503 // toggleButton(3);
509 mediaPlayerState.setNext(); 504 mediaPlayerState.setNext();
510 // toggleButton(3); 505 // toggleButton(3);
511 break; 506 break;
512 case Key_Left: 507 case Key_Left:
513 // toggleButton(4); 508 // toggleButton(4);
514 mediaPlayerState.setPrev(); 509 mediaPlayerState.setPrev();
515 // toggleButton(4); 510 // toggleButton(4);
516 break; 511 break;
517 case Key_Escape: { 512 case Key_Escape: {
518 } 513 }
519 break; 514 break;
520 515
521 }; 516 };
522} 517}
diff --git a/noncore/multimedia/opieplayer2/audiowidget.h b/noncore/multimedia/opieplayer2/audiowidget.h
index 1778a30..f092699 100644
--- a/noncore/multimedia/opieplayer2/audiowidget.h
+++ b/noncore/multimedia/opieplayer2/audiowidget.h
@@ -1,118 +1,117 @@
1/* 1/*
2                This file is part of the Opie Project 2                This file is part of the Opie Project
3 3
4              Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> 4              Copyright (c) 2002 Max Reiss <harlekin@handhelds.org>
5 Copyright (c) 2002 L. Potter <ljp@llornkcor.com> 5 Copyright (c) 2002 L. Potter <ljp@llornkcor.com>
6 Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> 6 Copyright (c) 2002 Holger Freyther <zecke@handhelds.org>
7 =. 7 =.
8 .=l. 8 .=l.
9           .>+-= 9           .>+-=
10 _;:,     .>    :=|. This program is free software; you can 10 _;:,     .>    :=|. This program is free software; you can
11.> <`_,   >  .   <= redistribute it and/or modify it under 11.> <`_,   >  .   <= redistribute it and/or modify it under
12:`=1 )Y*s>-.--   : the terms of the GNU General Public 12:`=1 )Y*s>-.--   : the terms of the GNU General Public
13.="- .-=="i,     .._ License as published by the Free Software 13.="- .-=="i,     .._ License as published by the Free Software
14 - .   .-<_>     .<> Foundation; either version 2 of the License, 14 - .   .-<_>     .<> Foundation; either version 2 of the License,
15     ._= =}       : or (at your option) any later version. 15     ._= =}       : or (at your option) any later version.
16    .%`+i>       _;_. 16    .%`+i>       _;_.
17    .i_,=:_.      -<s. This program is distributed in the hope that 17    .i_,=:_.      -<s. This program is distributed in the hope that
18     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 18     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
19    : ..    .:,     . . . without even the implied warranty of 19    : ..    .:,     . . . without even the implied warranty of
20    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 20    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
21  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 21  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
22..}^=.=       =       ; Library General Public License for more 22..}^=.=       =       ; Library General Public License for more
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 AUDIO_WIDGET_H 34#ifndef AUDIO_WIDGET_H
35#define AUDIO_WIDGET_H 35#define AUDIO_WIDGET_H
36 36
37#include <qpainter.h> 37#include <qpainter.h>
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
50class QPixmap; 50class QPixmap;
51 51
52class AudioWidget : public MediaWidget { 52class AudioWidget : public MediaWidget {
53 Q_OBJECT 53 Q_OBJECT
54public: 54public:
55 AudioWidget( MediaPlayerState &mediaPlayerState, QWidget* parent=0, const char* name=0 ); 55 AudioWidget( 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 ); }
58public slots: 58public 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( 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
66public: 66public:
67 virtual void setLength( long ); 67 virtual void setLength( long );
68 virtual void setPlaying( bool b) { setToggleButton( 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
71signals: 71signals:
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
78protected: 78protected:
79 void doBlank(); 79 void doBlank();
80 void doUnblank(); 80 void doUnblank();
81 void paintEvent( QPaintEvent *pe ); 81 void paintEvent( QPaintEvent *pe );
82 void showEvent( QShowEvent *se ); 82 void showEvent( QShowEvent *se );
83 void resizeEvent( QResizeEvent *re ); 83 void resizeEvent( QResizeEvent *re );
84 void mouseMoveEvent( QMouseEvent *event ); 84 void mouseMoveEvent( QMouseEvent *event );
85 void mousePressEvent( QMouseEvent *event ); 85 void mousePressEvent( QMouseEvent *event );
86 void mouseReleaseEvent( QMouseEvent *event ); 86 void mouseReleaseEvent( QMouseEvent *event );
87 void timerEvent( QTimerEvent *event ); 87 void timerEvent( QTimerEvent *event );
88 void closeEvent( QCloseEvent *event );
89 void keyReleaseEvent( QKeyEvent *e); 88 void keyReleaseEvent( QKeyEvent *e);
90private slots: 89private slots:
91 void skipFor(); 90 void skipFor();
92 void skipBack(); 91 void skipBack();
93 void stopSkip(); 92 void stopSkip();
94private: 93private:
95 void toggleButton( int ); 94 void toggleButton( int );
96 void setToggleButton( int, bool ); 95 void setToggleButton( int, bool );
97 void paintButton( QPainter *p, int i ); 96 void paintButton( QPainter *p, int i );
98 int skipDirection; 97 int skipDirection;
99 QString skin; 98 QString skin;
100 QPixmap pixBg; 99 QPixmap pixBg;
101 QImage imgUp; 100 QImage imgUp;
102 QImage imgDn; 101 QImage imgDn;
103 QImage imgButtonMask; 102 QImage imgButtonMask;
104 QBitmap *masks[10]; 103 QBitmap *masks[10];
105 QPixmap *buttonPixUp[10]; 104 QPixmap *buttonPixUp[10];
106 QPixmap *buttonPixDown[10]; 105 QPixmap *buttonPixDown[10];
107 106
108 QPixmap *pixmaps[4]; 107 QPixmap *pixmaps[4];
109 OTicker songInfo; 108 OTicker songInfo;
110 QSlider slider; 109 QSlider slider;
111 QLineEdit time; 110 QLineEdit time;
112 int xoff, yoff; 111 int xoff, yoff;
113 bool isStreaming : 1; 112 bool isStreaming : 1;
114}; 113};
115 114
116 115
117#endif // AUDIO_WIDGET_H 116#endif // AUDIO_WIDGET_H
118 117
diff --git a/noncore/multimedia/opieplayer2/mediawidget.cpp b/noncore/multimedia/opieplayer2/mediawidget.cpp
index 01a7295..2992fd6 100644
--- a/noncore/multimedia/opieplayer2/mediawidget.cpp
+++ b/noncore/multimedia/opieplayer2/mediawidget.cpp
@@ -1,58 +1,63 @@
1/* 1/*
2 Copyright (C) 2002 Simon Hausmann <hausmann@kde.org> 2 Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
3 3
4 This library is free software; you can redistribute it and/or 4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public 5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either 6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version. 7 version 2 of the License, or (at your option) any later version.
8 8
9 This library is distributed in the hope that it will be useful, 9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details. 12 Library General Public License for more details.
13 13
14 You should have received a copy of the GNU Library General Public License 14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to 15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. 17 Boston, MA 02111-1307, USA.
18*/ 18*/
19 19
20 20
21#include "mediawidget.h" 21#include "mediawidget.h"
22#include "playlistwidget.h" 22#include "playlistwidget.h"
23 23
24extern PlayListWidget *playList; 24extern PlayListWidget *playList;
25 25
26MediaWidget::MediaWidget( MediaPlayerState &_mediaPlayerState, QWidget *parent, const char *name ) 26MediaWidget::MediaWidget( MediaPlayerState &_mediaPlayerState, QWidget *parent, const char *name )
27 : QWidget( parent, name ), mediaPlayerState( _mediaPlayerState ) 27 : QWidget( parent, name ), mediaPlayerState( _mediaPlayerState )
28{ 28{
29 connect( &mediaPlayerState, SIGNAL( displayTypeChanged( MediaPlayerState::DisplayType ) ), 29 connect( &mediaPlayerState, SIGNAL( displayTypeChanged( MediaPlayerState::DisplayType ) ),
30 this, SLOT( setDisplayType( MediaPlayerState::DisplayType ) ) ); 30 this, SLOT( setDisplayType( MediaPlayerState::DisplayType ) ) );
31 connect( &mediaPlayerState, SIGNAL( lengthChanged( long ) ), 31 connect( &mediaPlayerState, SIGNAL( lengthChanged( long ) ),
32 this, SLOT( setLength( long ) ) ); 32 this, SLOT( setLength( long ) ) );
33 connect( &mediaPlayerState, SIGNAL( playingToggled( bool ) ), 33 connect( &mediaPlayerState, SIGNAL( playingToggled( bool ) ),
34 this, SLOT( setPlaying( bool ) ) ); 34 this, SLOT( setPlaying( bool ) ) );
35} 35}
36 36
37MediaWidget::~MediaWidget() 37MediaWidget::~MediaWidget()
38{ 38{
39} 39}
40 40
41void MediaWidget::closeEvent( QCloseEvent * )
42{
43 mediaPlayerState.setList();
44}
45
41void MediaWidget::handleCommand( Command command, bool buttonDown ) 46void MediaWidget::handleCommand( Command command, bool buttonDown )
42{ 47{
43 switch ( command ) { 48 switch ( command ) {
44 case Play: mediaPlayerState.togglePaused(); 49 case Play: mediaPlayerState.togglePaused();
45 case Stop: mediaPlayerState.setPlaying(FALSE); return; 50 case Stop: mediaPlayerState.setPlaying(FALSE); return;
46 case Next: if( playList->currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setNext(); return; 51 case Next: if( playList->currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setNext(); return;
47 case Previous: if( playList->currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setPrev(); return; 52 case Previous: if( playList->currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setPrev(); return;
48 case Loop: mediaPlayerState.setLooping( buttonDown ); return; 53 case Loop: mediaPlayerState.setLooping( buttonDown ); return;
49 case VolumeUp: emit moreReleased(); return; 54 case VolumeUp: emit moreReleased(); return;
50 case VolumeDown: emit lessReleased(); return; 55 case VolumeDown: emit lessReleased(); return;
51 case PlayList: mediaPlayerState.setList(); return; 56 case PlayList: mediaPlayerState.setList(); return;
52 case Forward: emit forwardReleased(); return; 57 case Forward: emit forwardReleased(); return;
53 case Back: emit backReleased(); return; 58 case Back: emit backReleased(); return;
54 } 59 }
55} 60}
56 61
57/* vim: et sw=4 ts=4 62/* vim: et sw=4 ts=4
58 */ 63 */
diff --git a/noncore/multimedia/opieplayer2/mediawidget.h b/noncore/multimedia/opieplayer2/mediawidget.h
index 550f0fc..e3f09ce 100644
--- a/noncore/multimedia/opieplayer2/mediawidget.h
+++ b/noncore/multimedia/opieplayer2/mediawidget.h
@@ -1,55 +1,57 @@
1/* 1/*
2 Copyright (C) 2002 Simon Hausmann <hausmann@kde.org> 2 Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
3 3
4 This library is free software; you can redistribute it and/or 4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public 5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either 6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version. 7 version 2 of the License, or (at your option) any later version.
8 8
9 This library is distributed in the hope that it will be useful, 9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details. 12 Library General Public License for more details.
13 13
14 You should have received a copy of the GNU Library General Public License 14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to 15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. 17 Boston, MA 02111-1307, USA.
18*/ 18*/
19 19
20#ifndef MEDIAWIDGET_H 20#ifndef MEDIAWIDGET_H
21#define MEDIAWIDGET_H 21#define MEDIAWIDGET_H
22 22
23#include <qwidget.h> 23#include <qwidget.h>
24 24
25#include "mediaplayerstate.h" 25#include "mediaplayerstate.h"
26 26
27class MediaWidget : public QWidget 27class MediaWidget : public QWidget
28{ 28{
29 Q_OBJECT 29 Q_OBJECT
30public: 30public:
31 enum Command { Play = 0, Stop, Next, Previous, VolumeUp, VolumeDown, Loop, PlayList, Forward, Back }; 31 enum Command { Play = 0, Stop, Next, Previous, VolumeUp, VolumeDown, Loop, PlayList, Forward, Back };
32 32
33 MediaWidget( MediaPlayerState &_mediaPlayerState, QWidget *parent = 0, const char *name = 0 ); 33 MediaWidget( MediaPlayerState &_mediaPlayerState, QWidget *parent = 0, const char *name = 0 );
34 virtual ~MediaWidget(); 34 virtual ~MediaWidget();
35 35
36public slots: 36public slots:
37 virtual void setDisplayType( MediaPlayerState::DisplayType displayType ) = 0; 37 virtual void setDisplayType( MediaPlayerState::DisplayType displayType ) = 0;
38 virtual void setLength( long length ) = 0; 38 virtual void setLength( long length ) = 0;
39 virtual void setPlaying( bool playing ) = 0; 39 virtual void setPlaying( bool playing ) = 0;
40 40
41signals: 41signals:
42 void moreReleased(); 42 void moreReleased();
43 void lessReleased(); 43 void lessReleased();
44 void forwardReleased(); 44 void forwardReleased();
45 void backReleased(); 45 void backReleased();
46 46
47protected: 47protected:
48 virtual void closeEvent( QCloseEvent * );
49
48 void handleCommand( Command command, bool buttonDown ); 50 void handleCommand( Command command, bool buttonDown );
49 51
50 MediaPlayerState &mediaPlayerState; 52 MediaPlayerState &mediaPlayerState;
51}; 53};
52 54
53#endif // MEDIAWIDGET_H 55#endif // MEDIAWIDGET_H
54/* vim: et sw=4 ts=4 56/* vim: et sw=4 ts=4
55 */ 57 */
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp
index b4ecb4c..41dddb7 100644
--- a/noncore/multimedia/opieplayer2/videowidget.cpp
+++ b/noncore/multimedia/opieplayer2/videowidget.cpp
@@ -194,323 +194,318 @@ void VideoWidget::resizeEvent( QResizeEvent * ) {
194 QPoint p( xoff, yoff ); 194 QPoint p( xoff, yoff );
195 195
196 QPixmap *pixUp = combineVImageWithBackground( *imgUp, *pixBg, p ); 196 QPixmap *pixUp = combineVImageWithBackground( *imgUp, *pixBg, p );
197 QPixmap *pixDn = combineVImageWithBackground( *imgDn, *pixBg, p ); 197 QPixmap *pixDn = combineVImageWithBackground( *imgDn, *pixBg, p );
198 198
199 for ( int i = 0; i < 7; i++ ) { 199 for ( int i = 0; i < 7; i++ ) {
200 if ( !masks[i]->isNull() ) { 200 if ( !masks[i]->isNull() ) {
201 delete buttonPixUp[i]; 201 delete buttonPixUp[i];
202 delete buttonPixDown[i]; 202 delete buttonPixDown[i];
203 buttonPixUp[i] = maskVPixToMask( *pixUp, *masks[i] ); 203 buttonPixUp[i] = maskVPixToMask( *pixUp, *masks[i] );
204 buttonPixDown[i] = maskVPixToMask( *pixDn, *masks[i] ); 204 buttonPixDown[i] = maskVPixToMask( *pixDn, *masks[i] );
205 } 205 }
206 } 206 }
207 207
208 delete pixUp; 208 delete pixUp;
209 delete pixDn; 209 delete pixDn;
210} 210}
211 211
212static bool videoSliderBeingMoved = FALSE; 212static bool videoSliderBeingMoved = FALSE;
213 213
214void VideoWidget::sliderPressed() { 214void VideoWidget::sliderPressed() {
215 videoSliderBeingMoved = TRUE; 215 videoSliderBeingMoved = TRUE;
216} 216}
217 217
218void VideoWidget::sliderReleased() { 218void VideoWidget::sliderReleased() {
219 videoSliderBeingMoved = FALSE; 219 videoSliderBeingMoved = FALSE;
220 if ( slider->width() == 0 ) { 220 if ( slider->width() == 0 ) {
221 return; 221 return;
222 } 222 }
223 long val = long((double)slider->value() * mediaPlayerState.length() / slider->width()); 223 long val = long((double)slider->value() * mediaPlayerState.length() / slider->width());
224 mediaPlayerState.setPosition( val ); 224 mediaPlayerState.setPosition( val );
225} 225}
226 226
227void VideoWidget::setPosition( long i ) { 227void VideoWidget::setPosition( long i ) {
228 updateSlider( i, mediaPlayerState.length() ); 228 updateSlider( i, mediaPlayerState.length() );
229} 229}
230 230
231 231
232void VideoWidget::setLength( long max ) { 232void VideoWidget::setLength( long max ) {
233 updateSlider( mediaPlayerState.position(), max ); 233 updateSlider( mediaPlayerState.position(), max );
234} 234}
235 235
236void VideoWidget::setDisplayType( MediaPlayerState::DisplayType displayType ) 236void VideoWidget::setDisplayType( MediaPlayerState::DisplayType displayType )
237{ 237{
238 if ( displayType == MediaPlayerState::Video ) { 238 if ( displayType == MediaPlayerState::Video ) {
239 makeVisible(); 239 makeVisible();
240 return; 240 return;
241 } 241 }
242 242
243 // Effectively blank the view next time we show it so it looks nicer 243 // Effectively blank the view next time we show it so it looks nicer
244 scaledWidth = 0; 244 scaledWidth = 0;
245 scaledHeight = 0; 245 scaledHeight = 0;
246 hide(); 246 hide();
247} 247}
248 248
249void VideoWidget::updateSlider( long i, long max ) { 249void VideoWidget::updateSlider( long i, long max ) {
250 // Will flicker too much if we don't do this 250 // Will flicker too much if we don't do this
251 if ( max == 0 ) { 251 if ( max == 0 ) {
252 return; 252 return;
253 } 253 }
254 int width = slider->width(); 254 int width = slider->width();
255 int val = int((double)i * width / max); 255 int val = int((double)i * width / max);
256 if ( !mediaPlayerState.isFullscreen() && !videoSliderBeingMoved ) { 256 if ( !mediaPlayerState.isFullscreen() && !videoSliderBeingMoved ) {
257 if ( slider->value() != val ) { 257 if ( slider->value() != val ) {
258 slider->setValue( val ); 258 slider->setValue( val );
259 } 259 }
260 if ( slider->maxValue() != width ) { 260 if ( slider->maxValue() != width ) {
261 slider->setMaxValue( width ); 261 slider->setMaxValue( width );
262 } 262 }
263 } 263 }
264} 264}
265 265
266void VideoWidget::setToggleButton( int i, bool down ) { 266void VideoWidget::setToggleButton( int i, bool down ) {
267 if ( down != videoButtons[i].isDown ) { 267 if ( down != videoButtons[i].isDown ) {
268 toggleButton( i ); 268 toggleButton( i );
269 } 269 }
270} 270}
271 271
272void VideoWidget::toggleButton( int i ) { 272void VideoWidget::toggleButton( int i ) {
273 videoButtons[i].isDown = !videoButtons[i].isDown; 273 videoButtons[i].isDown = !videoButtons[i].isDown;
274 QPainter p(this); 274 QPainter p(this);
275 paintButton ( &p, i ); 275 paintButton ( &p, i );
276} 276}
277 277
278void VideoWidget::paintButton( QPainter *p, int i ) { 278void VideoWidget::paintButton( QPainter *p, int i ) {
279 279
280 if ( videoButtons[i].isDown ) { 280 if ( videoButtons[i].isDown ) {
281 p->drawPixmap( xoff, yoff, *buttonPixDown[i] ); 281 p->drawPixmap( xoff, yoff, *buttonPixDown[i] );
282 } else { 282 } else {
283 p->drawPixmap( xoff, yoff, *buttonPixUp[i] ); 283 p->drawPixmap( xoff, yoff, *buttonPixUp[i] );
284 } 284 }
285} 285}
286 286
287void VideoWidget::mouseMoveEvent( QMouseEvent *event ) { 287void VideoWidget::mouseMoveEvent( QMouseEvent *event ) {
288 for ( int i = 0; i < numVButtons; i++ ) { 288 for ( int i = 0; i < numVButtons; i++ ) {
289 if ( event->state() == QMouseEvent::LeftButton ) { 289 if ( event->state() == QMouseEvent::LeftButton ) {
290 // The test to see if the mouse click is inside the button or not 290 // The test to see if the mouse click is inside the button or not
291 int x = event->pos().x() - xoff; 291 int x = event->pos().x() - xoff;
292 int y = event->pos().y() - yoff; 292 int y = event->pos().y() - yoff;
293 293
294 bool isOnButton = ( x > 0 && y > 0 && x < imgButtonMask->width() 294 bool isOnButton = ( x > 0 && y > 0 && x < imgButtonMask->width()
295 && y < imgButtonMask->height() 295 && y < imgButtonMask->height()
296 && imgButtonMask->pixelIndex( x, y ) == i + 1 ); 296 && imgButtonMask->pixelIndex( x, y ) == i + 1 );
297 297
298 if ( isOnButton && !videoButtons[i].isHeld ) { 298 if ( isOnButton && !videoButtons[i].isHeld ) {
299 videoButtons[i].isHeld = TRUE; 299 videoButtons[i].isHeld = TRUE;
300 toggleButton(i); 300 toggleButton(i);
301 301
302 switch (i) { 302 switch (i) {
303 case VideoVolUp: 303 case VideoVolUp:
304 emit moreClicked(); 304 emit moreClicked();
305 return; 305 return;
306 case VideoVolDown: 306 case VideoVolDown:
307 emit lessClicked(); 307 emit lessClicked();
308 return; 308 return;
309 } 309 }
310 } else if ( !isOnButton && videoButtons[i].isHeld ) { 310 } else if ( !isOnButton && videoButtons[i].isHeld ) {
311 videoButtons[i].isHeld = FALSE; 311 videoButtons[i].isHeld = FALSE;
312 toggleButton(i); 312 toggleButton(i);
313 } 313 }
314 } else { 314 } else {
315 315
316 if ( videoButtons[i].isHeld ) { 316 if ( videoButtons[i].isHeld ) {
317 videoButtons[i].isHeld = FALSE; 317 videoButtons[i].isHeld = FALSE;
318 if ( !videoButtons[i].isToggle ) { 318 if ( !videoButtons[i].isToggle ) {
319 setToggleButton( i, FALSE ); 319 setToggleButton( i, FALSE );
320 } 320 }
321 321
322 switch(i) { 322 switch(i) {
323 323
324 case VideoPlay: { 324 case VideoPlay: {
325 if( mediaPlayerState.isPaused() ) { 325 if( mediaPlayerState.isPaused() ) {
326 setToggleButton( i, FALSE ); 326 setToggleButton( i, FALSE );
327 mediaPlayerState.setPaused( FALSE ); 327 mediaPlayerState.setPaused( FALSE );
328 return; 328 return;
329 } else if( !mediaPlayerState.isPaused() ) { 329 } else if( !mediaPlayerState.isPaused() ) {
330 setToggleButton( i, TRUE ); 330 setToggleButton( i, TRUE );
331 mediaPlayerState.setPaused( TRUE ); 331 mediaPlayerState.setPaused( TRUE );
332 return; 332 return;
333 } else { 333 } else {
334 return; 334 return;
335 } 335 }
336 } 336 }
337 337
338 case VideoStop: mediaPlayerState.setPlaying( FALSE ); return; 338 case VideoStop: mediaPlayerState.setPlaying( FALSE ); return;
339 case VideoNext: if( playList->currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setNext(); return; 339 case VideoNext: if( playList->currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setNext(); return;
340 case VideoPrevious: if( playList->currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setPrev(); return; 340 case VideoPrevious: if( playList->currentTab() == PlayListWidget::CurrentPlayList ) mediaPlayerState.setPrev(); return;
341 case VideoVolUp: emit moreReleased(); return; 341 case VideoVolUp: emit moreReleased(); return;
342 case VideoVolDown: emit lessReleased(); return; 342 case VideoVolDown: emit lessReleased(); return;
343 case VideoFullscreen: mediaPlayerState.setFullscreen( TRUE ); makeVisible(); return; 343 case VideoFullscreen: mediaPlayerState.setFullscreen( TRUE ); makeVisible(); return;
344 } 344 }
345 } 345 }
346 } 346 }
347 } 347 }
348} 348}
349 349
350void VideoWidget::mousePressEvent( QMouseEvent *event ) { 350void VideoWidget::mousePressEvent( QMouseEvent *event ) {
351 mouseMoveEvent( event ); 351 mouseMoveEvent( event );
352} 352}
353 353
354void VideoWidget::mouseReleaseEvent( QMouseEvent *event ) { 354void VideoWidget::mouseReleaseEvent( QMouseEvent *event ) {
355 if ( mediaPlayerState.isFullscreen() ) { 355 if ( mediaPlayerState.isFullscreen() ) {
356 mediaPlayerState.setFullscreen( FALSE ); 356 mediaPlayerState.setFullscreen( FALSE );
357 makeVisible(); 357 makeVisible();
358 } 358 }
359 mouseMoveEvent( event ); 359 mouseMoveEvent( event );
360} 360}
361 361
362void VideoWidget::showEvent( QShowEvent* ) { 362void VideoWidget::showEvent( QShowEvent* ) {
363 QMouseEvent event( QEvent::MouseMove, QPoint( 0, 0 ), 0, 0 ); 363 QMouseEvent event( QEvent::MouseMove, QPoint( 0, 0 ), 0, 0 );
364 mouseMoveEvent( &event ); 364 mouseMoveEvent( &event );
365} 365}
366 366
367 367
368 void VideoWidget::backToNormal() { 368 void VideoWidget::backToNormal() {
369 mediaPlayerState.setFullscreen( FALSE ); 369 mediaPlayerState.setFullscreen( FALSE );
370 makeVisible(); 370 makeVisible();
371 } 371 }
372 372
373void VideoWidget::makeVisible() { 373void VideoWidget::makeVisible() {
374 if ( mediaPlayerState.isFullscreen() ) { 374 if ( mediaPlayerState.isFullscreen() ) {
375 setBackgroundMode( QWidget::NoBackground ); 375 setBackgroundMode( QWidget::NoBackground );
376 showFullScreen(); 376 showFullScreen();
377 resize( qApp->desktop()->size() ); 377 resize( qApp->desktop()->size() );
378 videoFrame-> setGeometry ( 0, 0, width ( ), height ( )); 378 videoFrame-> setGeometry ( 0, 0, width ( ), height ( ));
379 379
380 slider->hide(); 380 slider->hide();
381 disconnect( &mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) ); 381 disconnect( &mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) );
382 disconnect( &mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) ); 382 disconnect( &mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
383 disconnect( slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) ); 383 disconnect( slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) );
384 disconnect( slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) ); 384 disconnect( slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) );
385 385
386 } else { 386 } else {
387 showNormal(); 387 showNormal();
388 showMaximized(); 388 showMaximized();
389 setBackgroundPixmap( *pixBg ); 389 setBackgroundPixmap( *pixBg );
390 QWidget *d = QApplication::desktop(); 390 QWidget *d = QApplication::desktop();
391 int w = d->width(); 391 int w = d->width();
392 int h = d->height(); 392 int h = d->height();
393 393
394 if(w>h) { 394 if(w>h) {
395 int newW=(w/2)-(246/2); //this will only work with 320x240 395 int newW=(w/2)-(246/2); //this will only work with 320x240
396 videoFrame->setGeometry( QRect( newW, 4, 240, 170 ) ); 396 videoFrame->setGeometry( QRect( newW, 4, 240, 170 ) );
397 } else { 397 } else {
398 videoFrame->setGeometry( QRect( 0, 30, 240, 170 ) ); 398 videoFrame->setGeometry( QRect( 0, 30, 240, 170 ) );
399 } 399 }
400 400
401 if ( !mediaPlayerState.isSeekable() ) { 401 if ( !mediaPlayerState.isSeekable() ) {
402 if( !slider->isHidden()) { 402 if( !slider->isHidden()) {
403 slider->hide(); 403 slider->hide();
404 } 404 }
405 disconnect( &mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) ); 405 disconnect( &mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) );
406 disconnect( &mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) ); 406 disconnect( &mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
407 disconnect( slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) ); 407 disconnect( slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) );
408 disconnect( slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) ); 408 disconnect( slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) );
409 } else { 409 } else {
410 slider->show(); 410 slider->show();
411 connect( &mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) ); 411 connect( &mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) );
412 connect( &mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) ); 412 connect( &mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
413 connect( slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) ); 413 connect( slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) );
414 connect( slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) ); 414 connect( slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) );
415 } 415 }
416 } 416 }
417} 417}
418 418
419 419
420 420
421 421
422void VideoWidget::paintEvent( QPaintEvent * pe) { 422void VideoWidget::paintEvent( QPaintEvent * pe) {
423 QPainter p( this ); 423 QPainter p( this );
424 424
425 if ( mediaPlayerState.isFullscreen() ) { 425 if ( mediaPlayerState.isFullscreen() ) {
426 // Clear the background 426 // Clear the background
427 p.setBrush( QBrush( Qt::black ) ); 427 p.setBrush( QBrush( Qt::black ) );
428 } else { 428 } else {
429 if ( !pe->erased() ) { 429 if ( !pe->erased() ) {
430 // Combine with background and double buffer 430 // Combine with background and double buffer
431 QPixmap pix( pe->rect().size() ); 431 QPixmap pix( pe->rect().size() );
432 QPainter p( &pix ); 432 QPainter p( &pix );
433 p.translate( -pe->rect().topLeft().x(), -pe->rect().topLeft().y() ); 433 p.translate( -pe->rect().topLeft().x(), -pe->rect().topLeft().y() );
434 p.drawTiledPixmap( pe->rect(), *pixBg, pe->rect().topLeft() ); 434 p.drawTiledPixmap( pe->rect(), *pixBg, pe->rect().topLeft() );
435 for ( int i = 0; i < numVButtons; i++ ) { 435 for ( int i = 0; i < numVButtons; i++ ) {
436 paintButton( &p, i ); 436 paintButton( &p, i );
437 } 437 }
438 QPainter p2( this ); 438 QPainter p2( this );
439 p2.drawPixmap( pe->rect().topLeft(), pix ); 439 p2.drawPixmap( pe->rect().topLeft(), pix );
440 } else { 440 } else {
441 QPainter p( this ); 441 QPainter p( this );
442 for ( int i = 0; i < numVButtons; i++ ) 442 for ( int i = 0; i < numVButtons; i++ )
443 paintButton( &p, i ); 443 paintButton( &p, i );
444 } 444 }
445 //slider->repaint( TRUE ); 445 //slider->repaint( TRUE );
446 } 446 }
447} 447}
448 448
449 449
450void VideoWidget::closeEvent( QCloseEvent* ) {
451 mediaPlayerState.setList();
452}
453
454
455void VideoWidget::keyReleaseEvent( QKeyEvent *e) { 450void VideoWidget::keyReleaseEvent( QKeyEvent *e) {
456 switch ( e->key() ) { 451 switch ( e->key() ) {
457////////////////////////////// Zaurus keys 452////////////////////////////// Zaurus keys
458 case Key_Home: 453 case Key_Home:
459 break; 454 break;
460 case Key_F9: //activity 455 case Key_F9: //activity
461 break; 456 break;
462 case Key_F10: //contacts 457 case Key_F10: //contacts
463// hide(); 458// hide();
464 break; 459 break;
465 case Key_F11: //menu 460 case Key_F11: //menu
466 break; 461 break;
467 case Key_F12: //home 462 case Key_F12: //home
468 break; 463 break;
469 case Key_F13: //mail 464 case Key_F13: //mail
470 break; 465 break;
471 case Key_Space: { 466 case Key_Space: {
472 if(mediaPlayerState.isPlaying()) { 467 if(mediaPlayerState.isPlaying()) {
473 mediaPlayerState.setPlaying(FALSE); 468 mediaPlayerState.setPlaying(FALSE);
474 } else { 469 } else {
475 mediaPlayerState.setPlaying(TRUE); 470 mediaPlayerState.setPlaying(TRUE);
476 } 471 }
477 } 472 }
478 break; 473 break;
479 case Key_Down: 474 case Key_Down:
480// toggleButton(6); 475// toggleButton(6);
481 emit lessClicked(); 476 emit lessClicked();
482 emit lessReleased(); 477 emit lessReleased();
483// toggleButton(6); 478// toggleButton(6);
484 break; 479 break;
485 case Key_Up: 480 case Key_Up:
486// toggleButton(5); 481// toggleButton(5);
487 emit moreClicked(); 482 emit moreClicked();
488 emit moreReleased(); 483 emit moreReleased();
489// toggleButton(5); 484// toggleButton(5);
490 break; 485 break;
491 case Key_Right: 486 case Key_Right:
492 mediaPlayerState.setNext(); 487 mediaPlayerState.setNext();
493 break; 488 break;
494 case Key_Left: 489 case Key_Left:
495 mediaPlayerState.setPrev(); 490 mediaPlayerState.setPrev();
496 break; 491 break;
497 case Key_Escape: 492 case Key_Escape:
498 break; 493 break;
499 494
500 }; 495 };
501} 496}
502 497
503XineVideoWidget* VideoWidget::vidWidget() { 498XineVideoWidget* VideoWidget::vidWidget() {
504 return videoFrame; 499 return videoFrame;
505} 500}
506 501
507 502
508void VideoWidget::setFullscreen ( bool b ) { 503void VideoWidget::setFullscreen ( bool b ) {
509 setToggleButton( VideoFullscreen, b ); 504 setToggleButton( VideoFullscreen, b );
510} 505}
511 506
512 507
513void VideoWidget::setPlaying( bool b) { 508void VideoWidget::setPlaying( bool b) {
514 setToggleButton( VideoPlay, b ); 509 setToggleButton( VideoPlay, b );
515} 510}
516 511
diff --git a/noncore/multimedia/opieplayer2/videowidget.h b/noncore/multimedia/opieplayer2/videowidget.h
index 38eb726..149c78e 100644
--- a/noncore/multimedia/opieplayer2/videowidget.h
+++ b/noncore/multimedia/opieplayer2/videowidget.h
@@ -1,127 +1,126 @@
1/* 1/*
2                This file is part of the Opie Project 2                This file is part of the Opie Project
3 3
4              Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> 4              Copyright (c) 2002 Max Reiss <harlekin@handhelds.org>
5 Copyright (c) 2002 L. Potter <ljp@llornkcor.com> 5 Copyright (c) 2002 L. Potter <ljp@llornkcor.com>
6 Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> 6 Copyright (c) 2002 Holger Freyther <zecke@handhelds.org>
7 =. 7 =.
8 .=l. 8 .=l.
9           .>+-= 9           .>+-=
10 _;:,     .>    :=|. This program is free software; you can 10 _;:,     .>    :=|. This program is free software; you can
11.> <`_,   >  .   <= redistribute it and/or modify it under 11.> <`_,   >  .   <= redistribute it and/or modify it under
12:`=1 )Y*s>-.--   : the terms of the GNU General Public 12:`=1 )Y*s>-.--   : the terms of the GNU General Public
13.="- .-=="i,     .._ License as published by the Free Software 13.="- .-=="i,     .._ License as published by the Free Software
14 - .   .-<_>     .<> Foundation; either version 2 of the License, 14 - .   .-<_>     .<> Foundation; either version 2 of the License,
15     ._= =}       : or (at your option) any later version. 15     ._= =}       : or (at your option) any later version.
16    .%`+i>       _;_. 16    .%`+i>       _;_.
17    .i_,=:_.      -<s. This program is distributed in the hope that 17    .i_,=:_.      -<s. This program is distributed in the hope that
18     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 18     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
19    : ..    .:,     . . . without even the implied warranty of 19    : ..    .:,     . . . without even the implied warranty of
20    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 20    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
21  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 21  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
22..}^=.=       =       ; Library General Public License for more 22..}^=.=       =       ; Library General Public License for more
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 "xinevideowidget.h" 38#include "xinevideowidget.h"
39 39
40#include "mediawidget.h" 40#include "mediawidget.h"
41 41
42class QPixmap; 42class QPixmap;
43class QSlider; 43class QSlider;
44 44
45enum VideoButtons { 45enum VideoButtons {
46 VideoStop = 0, 46 VideoStop = 0,
47 VideoPlay, 47 VideoPlay,
48// VideoPause, 48// VideoPause,
49 VideoPrevious, 49 VideoPrevious,
50 VideoNext, 50 VideoNext,
51 VideoVolUp, 51 VideoVolUp,
52 VideoVolDown, 52 VideoVolDown,
53 VideoFullscreen 53 VideoFullscreen
54}; 54};
55 55
56class VideoWidget : public MediaWidget { 56class VideoWidget : public MediaWidget {
57 Q_OBJECT 57 Q_OBJECT
58public: 58public:
59 VideoWidget( MediaPlayerState &mediaPlayerState, QWidget* parent=0, const char* name=0 ); 59 VideoWidget( MediaPlayerState &mediaPlayerState, QWidget* parent=0, const char* name=0 );
60 ~VideoWidget(); 60 ~VideoWidget();
61 61
62 62
63 XineVideoWidget* vidWidget(); 63 XineVideoWidget* vidWidget();
64public slots: 64public slots:
65 void updateSlider( long, long ); 65 void updateSlider( long, long );
66 void sliderPressed( ); 66 void sliderPressed( );
67 void sliderReleased( ); 67 void sliderReleased( );
68 void setFullscreen( bool b ); 68 void setFullscreen( bool b );
69 void makeVisible(); 69 void makeVisible();
70 void backToNormal(); 70 void backToNormal();
71 void setPosition( long ); 71 void setPosition( long );
72 72
73public: 73public:
74 virtual void setPlaying( bool b); 74 virtual void setPlaying( bool b);
75 virtual void setLength( long ); 75 virtual void setLength( long );
76 virtual void setDisplayType( MediaPlayerState::DisplayType displayType ); 76 virtual void setDisplayType( MediaPlayerState::DisplayType displayType );
77 77
78signals: 78signals:
79 void moreClicked(); 79 void moreClicked();
80 void lessClicked(); 80 void lessClicked();
81 void moreReleased(); 81 void moreReleased();
82 void lessReleased(); 82 void lessReleased();
83 void sliderMoved( long ); 83 void sliderMoved( long );
84 void videoResized ( const QSize &s ); 84 void videoResized ( const QSize &s );
85 85
86protected: 86protected:
87 87
88 void resizeEvent( QResizeEvent * ); 88 void resizeEvent( QResizeEvent * );
89 void paintEvent( QPaintEvent *pe ); 89 void paintEvent( QPaintEvent *pe );
90 void showEvent( QShowEvent *se ); 90 void showEvent( QShowEvent *se );
91 void mouseMoveEvent( QMouseEvent *event ); 91 void mouseMoveEvent( QMouseEvent *event );
92 void mousePressEvent( QMouseEvent *event ); 92 void mousePressEvent( QMouseEvent *event );
93 void mouseReleaseEvent( QMouseEvent *event ); 93 void mouseReleaseEvent( QMouseEvent *event );
94 void closeEvent( QCloseEvent *event );
95 void keyReleaseEvent( QKeyEvent *e); 94 void keyReleaseEvent( QKeyEvent *e);
96 95
97private: 96private:
98// Ticker songInfo; 97// Ticker songInfo;
99 QPixmap *pixBg; 98 QPixmap *pixBg;
100 QImage *imgUp; 99 QImage *imgUp;
101 QImage *imgDn; 100 QImage *imgDn;
102 QImage *imgButtonMask; 101 QImage *imgButtonMask;
103 QBitmap *masks[7]; 102 QBitmap *masks[7];
104 QPixmap *buttonPixUp[7]; 103 QPixmap *buttonPixUp[7];
105 QPixmap *buttonPixDown[7]; 104 QPixmap *buttonPixDown[7];
106 QString skin; 105 QString skin;
107// QPixmap *pixmaps[4]; 106// QPixmap *pixmaps[4];
108 int xoff, yoff; 107 int xoff, yoff;
109 108
110 109
111 void paintButton( QPainter *p, int i ); 110 void paintButton( QPainter *p, int i );
112 void toggleButton( int ); 111 void toggleButton( int );
113 void setToggleButton( int, bool ); 112 void setToggleButton( int, bool );
114 113
115 QString backgroundPix; 114 QString backgroundPix;
116 QSlider *slider; 115 QSlider *slider;
117 QPixmap *pixmaps[3]; 116 QPixmap *pixmaps[3];
118 QImage *currentFrame; 117 QImage *currentFrame;
119 int scaledWidth; 118 int scaledWidth;
120 int scaledHeight; 119 int scaledHeight;
121 XineVideoWidget* videoFrame; 120 XineVideoWidget* videoFrame;
122}; 121};
123 122
124#endif // VIDEO_WIDGET_H 123#endif // VIDEO_WIDGET_H
125 124
126 125
127 126