summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/playlistwidget.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/core/multimedia/opieplayer/playlistwidget.cpp b/core/multimedia/opieplayer/playlistwidget.cpp
index 35208e4..b0d4958 100644
--- a/core/multimedia/opieplayer/playlistwidget.cpp
+++ b/core/multimedia/opieplayer/playlistwidget.cpp
@@ -292,289 +292,294 @@ PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl )
292 connect(tbDeletePlaylist,(SIGNAL(released())),SLOT( deletePlaylist())); 292 connect(tbDeletePlaylist,(SIGNAL(released())),SLOT( deletePlaylist()));
293 connect( fullScreenButton, SIGNAL(activated()), mediaPlayerState, SLOT(toggleFullscreen()) ); 293 connect( fullScreenButton, SIGNAL(activated()), mediaPlayerState, SLOT(toggleFullscreen()) );
294 connect( scaleButton, SIGNAL(activated()), mediaPlayerState, SLOT(toggleScaled()) ); 294 connect( scaleButton, SIGNAL(activated()), mediaPlayerState, SLOT(toggleScaled()) );
295 connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), 295 connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)),
296 this,SLOT( playlistViewPressed(int, QListViewItem *, const QPoint&, int)) ); 296 this,SLOT( playlistViewPressed(int, QListViewItem *, const QPoint&, int)) );
297 297
298 connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), 298 connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)),
299 this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); 299 this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) );
300 300
301 connect( audioView, SIGNAL( returnPressed( QListViewItem *)), 301 connect( audioView, SIGNAL( returnPressed( QListViewItem *)),
302 this,SLOT( playIt( QListViewItem *)) ); 302 this,SLOT( playIt( QListViewItem *)) );
303 connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); 303 connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) );
304 304
305 connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), 305 connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)),
306 this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); 306 this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) );
307 connect( videoView, SIGNAL( returnPressed( QListViewItem *)), 307 connect( videoView, SIGNAL( returnPressed( QListViewItem *)),
308 this,SLOT( playIt( QListViewItem *)) ); 308 this,SLOT( playIt( QListViewItem *)) );
309 connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); 309 connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) );
310 310
311 connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( loadList( const DocLnk & ) ) ); 311 connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( loadList( const DocLnk & ) ) );
312 312
313 313
314 connect( tabWidget, SIGNAL (currentChanged(QWidget*)),this,SLOT(tabChanged(QWidget*))); 314 connect( tabWidget, SIGNAL (currentChanged(QWidget*)),this,SLOT(tabChanged(QWidget*)));
315 315
316 connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), d->tbPlay, SLOT( setOn( bool ) ) ); 316 connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), d->tbPlay, SLOT( setOn( bool ) ) );
317 connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), d->tbLoop, SLOT( setOn( bool ) ) ); 317 connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), d->tbLoop, SLOT( setOn( bool ) ) );
318 connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), d->tbShuffle, SLOT( setOn( bool ) ) ); 318 connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), d->tbShuffle, SLOT( setOn( bool ) ) );
319 connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), this, SLOT( setPlaylist( bool ) ) ); 319 connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), this, SLOT( setPlaylist( bool ) ) );
320 320
321 connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( playIt( QListViewItem *) ) ); 321 connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( playIt( QListViewItem *) ) );
322// connect( d->selectedFiles, SIGNAL( fileSelected( const DocLnk & ) ), this, SLOT( addToSelection( const DocLnk & ) ) ); 322// connect( d->selectedFiles, SIGNAL( fileSelected( const DocLnk & ) ), this, SLOT( addToSelection( const DocLnk & ) ) );
323 323
324 setCentralWidget( vbox5 ); 324 setCentralWidget( vbox5 );
325 325
326 Config cfg( "OpiePlayer" ); 326 Config cfg( "OpiePlayer" );
327 readConfig( cfg ); 327 readConfig( cfg );
328 QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); 328 QString currentPlaylist = cfg.readEntry("CurrentPlaylist","");
329// qDebug("currentList is "+currentPlaylist); 329// qDebug("currentList is "+currentPlaylist);
330 loadList(DocLnk( currentPlaylist)); 330 loadList(DocLnk( currentPlaylist));
331 setCaption(tr("OpiePlayer: ")+ currentPlaylist ); 331 setCaption(tr("OpiePlayer: ")+ currentPlaylist );
332 332
333 initializeStates(); 333 initializeStates();
334} 334}
335 335
336 336
337PlayListWidget::~PlayListWidget() { 337PlayListWidget::~PlayListWidget() {
338 Config cfg( "OpiePlayer" ); 338 Config cfg( "OpiePlayer" );
339 writeConfig( cfg ); 339 writeConfig( cfg );
340 340
341 341
342 if ( d->current ) 342 if ( d->current )
343 delete d->current; 343 delete d->current;
344 delete d; 344 delete d;
345} 345}
346 346
347 347
348void PlayListWidget::initializeStates() { 348void PlayListWidget::initializeStates() {
349 349
350 d->tbPlay->setOn( mediaPlayerState->playing() ); 350 d->tbPlay->setOn( mediaPlayerState->playing() );
351 d->tbLoop->setOn( mediaPlayerState->looping() ); 351 d->tbLoop->setOn( mediaPlayerState->looping() );
352 d->tbShuffle->setOn( mediaPlayerState->shuffled() ); 352 d->tbShuffle->setOn( mediaPlayerState->shuffled() );
353// d->tbFull->setOn( mediaPlayerState->fullscreen() ); 353// d->tbFull->setOn( mediaPlayerState->fullscreen() );
354// d->tbScale->setOn( mediaPlayerState->scaled() ); 354// d->tbScale->setOn( mediaPlayerState->scaled() );
355// d->tbScale->setEnabled( mediaPlayerState->fullscreen() ); 355// d->tbScale->setEnabled( mediaPlayerState->fullscreen() );
356// setPlaylist( mediaPlayerState->playlist() ); 356// setPlaylist( mediaPlayerState->playlist() );
357 setPlaylist( true); 357 setPlaylist( true);
358// d->selectedFiles->first(); 358// d->selectedFiles->first();
359 359
360} 360}
361 361
362 362
363void PlayListWidget::readConfig( Config& cfg ) { 363void PlayListWidget::readConfig( Config& cfg ) {
364 cfg.setGroup("PlayList"); 364 cfg.setGroup("PlayList");
365 QString currentString = cfg.readEntry("current", "" ); 365 QString currentString = cfg.readEntry("current", "" );
366 int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); 366 int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 );
367 for ( int i = 0; i < noOfFiles; i++ ) { 367 for ( int i = 0; i < noOfFiles; i++ ) {
368 QString entryName; 368 QString entryName;
369 entryName.sprintf( "File%i", i + 1 ); 369 entryName.sprintf( "File%i", i + 1 );
370 QString linkFile = cfg.readEntry( entryName ); 370 QString linkFile = cfg.readEntry( entryName );
371 DocLnk lnk( linkFile ); 371 DocLnk lnk( linkFile );
372 if ( lnk.isValid() ) { 372 if ( lnk.isValid() ) {
373 d->selectedFiles->addToSelection( lnk ); 373 d->selectedFiles->addToSelection( lnk );
374 } 374 }
375 } 375 }
376 d->selectedFiles->setSelectedItem( currentString); 376 d->selectedFiles->setSelectedItem( currentString);
377// d->selectedFiles->setSelectedItem( (const QString &)currentString); 377// d->selectedFiles->setSelectedItem( (const QString &)currentString);
378} 378}
379 379
380 380
381void PlayListWidget::writeConfig( Config& cfg ) const { 381void PlayListWidget::writeConfig( Config& cfg ) const {
382 382
383 d->selectedFiles->writeCurrent( cfg); 383 d->selectedFiles->writeCurrent( cfg);
384 cfg.setGroup("PlayList"); 384 cfg.setGroup("PlayList");
385 int noOfFiles = 0; 385 int noOfFiles = 0;
386 d->selectedFiles->first(); 386 d->selectedFiles->first();
387 do { 387 do {
388 const DocLnk *lnk = d->selectedFiles->current(); 388 const DocLnk *lnk = d->selectedFiles->current();
389 if ( lnk ) { 389 if ( lnk ) {
390 QString entryName; 390 QString entryName;
391 entryName.sprintf( "File%i", noOfFiles + 1 ); 391 entryName.sprintf( "File%i", noOfFiles + 1 );
392// qDebug(entryName); 392// qDebug(entryName);
393 cfg.writeEntry( entryName, lnk->linkFile() ); 393 cfg.writeEntry( entryName, lnk->linkFile() );
394 // if this link does exist, add it so we have the file 394 // if this link does exist, add it so we have the file
395 // next time... 395 // next time...
396 if ( !QFile::exists( lnk->linkFile() ) ) { 396 if ( !QFile::exists( lnk->linkFile() ) ) {
397 // the way writing lnks doesn't really check for out 397 // the way writing lnks doesn't really check for out
398 // of disk space, but check it anyway. 398 // of disk space, but check it anyway.
399 if ( !lnk->writeLink() ) { 399 if ( !lnk->writeLink() ) {
400 QMessageBox::critical( 0, tr("Out of space"), 400 QMessageBox::critical( 0, tr("Out of space"),
401 tr( "There was a problem saving " 401 tr( "There was a problem saving "
402 "the playlist.\n" 402 "the playlist.\n"
403 "Your playlist " 403 "Your playlist "
404 "may be missing some entries\n" 404 "may be missing some entries\n"
405 "the next time you start it." ) 405 "the next time you start it." )
406 ); 406 );
407 } 407 }
408 } 408 }
409 noOfFiles++; 409 noOfFiles++;
410 } 410 }
411 } 411 }
412 while ( d->selectedFiles->next() ); 412 while ( d->selectedFiles->next() );
413 cfg.writeEntry("NumberOfFiles", noOfFiles ); 413 cfg.writeEntry("NumberOfFiles", noOfFiles );
414} 414}
415 415
416 416
417void PlayListWidget::addToSelection( const DocLnk& lnk ) { 417void PlayListWidget::addToSelection( const DocLnk& lnk ) {
418// qDebug("add"); 418// qDebug("add");
419 d->setDocumentUsed = FALSE; 419 d->setDocumentUsed = FALSE;
420 if ( mediaPlayerState->playlist() ) 420 if ( mediaPlayerState->playlist() ) {
421 d->selectedFiles->addToSelection( lnk ); 421 if(QFileInfo(lnk.file()).exists())
422 d->selectedFiles->addToSelection( lnk );
423 }
422 else 424 else
423 mediaPlayerState->setPlaying( TRUE ); 425 mediaPlayerState->setPlaying( TRUE );
424} 426}
425 427
426 428
427void PlayListWidget::clearList() { 429void PlayListWidget::clearList() {
428 while ( first() ) 430 while ( first() )
429 d->selectedFiles->removeSelected(); 431 d->selectedFiles->removeSelected();
430} 432}
431 433
432 434
433void PlayListWidget::addAllToList() { 435void PlayListWidget::addAllToList() {
434 DocLnkSet filesAll; 436 DocLnkSet filesAll;
435 Global::findDocuments(&filesAll, "video/*;audio/*"); 437 Global::findDocuments(&filesAll, "video/*;audio/*");
436 QListIterator<DocLnk> Adit( filesAll.children() ); 438 QListIterator<DocLnk> Adit( filesAll.children() );
437 for ( ; Adit.current(); ++Adit ) 439 for ( ; Adit.current(); ++Adit )
438 d->selectedFiles->addToSelection( **Adit ); 440 if(QFileInfo(Adit.current()->file()).exists())
441 d->selectedFiles->addToSelection( **Adit );
439} 442}
440 443
441 444
442void PlayListWidget::addAllMusicToList() { 445void PlayListWidget::addAllMusicToList() {
443 QListIterator<DocLnk> dit( files.children() ); 446 QListIterator<DocLnk> dit( files.children() );
444 for ( ; dit.current(); ++dit ) 447 for ( ; dit.current(); ++dit )
448 if(QFileInfo(dit.current()->file()).exists())
445 d->selectedFiles->addToSelection( **dit ); 449 d->selectedFiles->addToSelection( **dit );
446} 450}
447 451
448 452
449void PlayListWidget::addAllVideoToList() { 453void PlayListWidget::addAllVideoToList() {
450 QListIterator<DocLnk> dit( vFiles.children() ); 454 QListIterator<DocLnk> dit( vFiles.children() );
451 for ( ; dit.current(); ++dit ) 455 for ( ; dit.current(); ++dit )
452 d->selectedFiles->addToSelection( **dit ); 456 if(QFileInfo( dit.current()->file()).exists())
457 d->selectedFiles->addToSelection( **dit );
453} 458}
454 459
455 460
456void PlayListWidget::setDocument(const QString& fileref) { 461void PlayListWidget::setDocument(const QString& fileref) {
457 qDebug(fileref); 462 qDebug(fileref);
458 fromSetDocument = TRUE; 463 fromSetDocument = TRUE;
459 if ( fileref.isNull() ) { 464 if ( fileref.isNull() ) {
460 QMessageBox::critical( 0, tr( "Invalid File" ), tr( "There was a problem in getting the file." ) ); 465 QMessageBox::critical( 0, tr( "Invalid File" ), tr( "There was a problem in getting the file." ) );
461 return; 466 return;
462 } 467 }
463// qDebug("setDocument "+fileref); 468// qDebug("setDocument "+fileref);
464 if(fileref.find("m3u",0,TRUE) != -1) { //is m3u 469 if(fileref.find("m3u",0,TRUE) != -1) { //is m3u
465 readm3u( fileref); 470 readm3u( fileref);
466 } 471 }
467 else if(fileref.find("pls",0,TRUE) != -1) { //is pls 472 else if(fileref.find("pls",0,TRUE) != -1) { //is pls
468 readPls( fileref); 473 readPls( fileref);
469 } 474 }
470 else if(fileref.find("playlist",0,TRUE) != -1) {//is playlist 475 else if(fileref.find("playlist",0,TRUE) != -1) {//is playlist
471 clearList(); 476 clearList();
472 loadList(DocLnk(fileref)); 477 loadList(DocLnk(fileref));
473 d->selectedFiles->first(); 478 d->selectedFiles->first();
474 } else { 479 } else {
475 clearList(); 480 clearList();
476 addToSelection( DocLnk( fileref ) ); 481 addToSelection( DocLnk( fileref ) );
477 d->setDocumentUsed = TRUE; 482 d->setDocumentUsed = TRUE;
478 mediaPlayerState->setPlaying( FALSE ); 483 mediaPlayerState->setPlaying( FALSE );
479 qApp->processEvents(); 484 qApp->processEvents();
480 mediaPlayerState->setPlaying( TRUE ); 485 mediaPlayerState->setPlaying( TRUE );
481 qApp->processEvents(); 486 qApp->processEvents();
482 setCaption(tr("OpiePlayer")); 487 setCaption(tr("OpiePlayer"));
483 } 488 }
484} 489}
485 490
486 491
487void PlayListWidget::setActiveWindow() { 492void PlayListWidget::setActiveWindow() {
488 // When we get raised we need to ensure that it switches views 493 // When we get raised we need to ensure that it switches views
489 char origView = mediaPlayerState->view(); 494 char origView = mediaPlayerState->view();
490 mediaPlayerState->setView( 'l' ); // invalidate 495 mediaPlayerState->setView( 'l' ); // invalidate
491 mediaPlayerState->setView( origView ); // now switch back 496 mediaPlayerState->setView( origView ); // now switch back
492} 497}
493 498
494 499
495void PlayListWidget::useSelectedDocument() { 500void PlayListWidget::useSelectedDocument() {
496 d->setDocumentUsed = FALSE; 501 d->setDocumentUsed = FALSE;
497} 502}
498 503
499 504
500const DocLnk *PlayListWidget::current() { // this is fugly 505const DocLnk *PlayListWidget::current() { // this is fugly
501 506
502// if( fromSetDocument) { 507// if( fromSetDocument) {
503// qDebug("from setDoc"); 508// qDebug("from setDoc");
504// DocLnkSet files; 509// DocLnkSet files;
505// Global::findDocuments(&files, "video/*;audio/*"); 510// Global::findDocuments(&files, "video/*;audio/*");
506// QListIterator<DocLnk> dit( files.children() ); 511// QListIterator<DocLnk> dit( files.children() );
507// for ( ; dit.current(); ++dit ) { 512// for ( ; dit.current(); ++dit ) {
508// if(dit.current()->linkFile() == setDocFileRef) { 513// if(dit.current()->linkFile() == setDocFileRef) {
509// qDebug(setDocFileRef); 514// qDebug(setDocFileRef);
510// return dit; 515// return dit;
511// } 516// }
512// } 517// }
513// } else 518// } else
514 519
515 520
516 switch (tabWidget->currentPageIndex()) { 521 switch (tabWidget->currentPageIndex()) {
517 case 0: //playlist 522 case 0: //playlist
518 { 523 {
519 qDebug("playlist"); 524 qDebug("playlist");
520 if ( mediaPlayerState->playlist() ) { 525 if ( mediaPlayerState->playlist() ) {
521 return d->selectedFiles->current(); 526 return d->selectedFiles->current();
522 } 527 }
523 else if ( d->setDocumentUsed && d->current ) { 528 else if ( d->setDocumentUsed && d->current ) {
524 return d->current; 529 return d->current;
525 } else { 530 } else {
526 return d->files->selected(); 531 return d->files->selected();
527 } 532 }
528 } 533 }
529 break; 534 break;
530 case 1://audio 535 case 1://audio
531 { 536 {
532 qDebug("audioView"); 537 qDebug("audioView");
533 QListIterator<DocLnk> dit( files.children() ); 538 QListIterator<DocLnk> dit( files.children() );
534 for ( ; dit.current(); ++dit ) { 539 for ( ; dit.current(); ++dit ) {
535 if( dit.current()->name() == audioView->currentItem()->text(0) && !insanityBool) { 540 if( dit.current()->name() == audioView->currentItem()->text(0) && !insanityBool) {
536 qDebug("here"); 541 qDebug("here");
537 insanityBool=TRUE; 542 insanityBool=TRUE;
538 return dit; 543 return dit;
539 } 544 }
540 } 545 }
541 } 546 }
542 break; 547 break;
543 case 2: // video 548 case 2: // video
544 { 549 {
545 qDebug("videoView"); 550 qDebug("videoView");
546 QListIterator<DocLnk> Vdit( vFiles.children() ); 551 QListIterator<DocLnk> Vdit( vFiles.children() );
547 for ( ; Vdit.current(); ++Vdit ) { 552 for ( ; Vdit.current(); ++Vdit ) {
548 if( Vdit.current()->name() == videoView->currentItem()->text(0) && !insanityBool) { 553 if( Vdit.current()->name() == videoView->currentItem()->text(0) && !insanityBool) {
549 insanityBool=TRUE; 554 insanityBool=TRUE;
550 return Vdit; 555 return Vdit;
551 } 556 }
552 } 557 }
553 } 558 }
554 break; 559 break;
555 }; 560 };
556 return 0; 561 return 0;
557} 562}
558 563
559bool PlayListWidget::prev() { 564bool PlayListWidget::prev() {
560 if ( mediaPlayerState->playlist() ) { 565 if ( mediaPlayerState->playlist() ) {
561 if ( mediaPlayerState->shuffled() ) { 566 if ( mediaPlayerState->shuffled() ) {
562 const DocLnk *cur = current(); 567 const DocLnk *cur = current();
563 int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0)); 568 int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0));
564 for ( int i = 0; i < j; i++ ) { 569 for ( int i = 0; i < j; i++ ) {
565 if ( !d->selectedFiles->next() ) 570 if ( !d->selectedFiles->next() )
566 d->selectedFiles->first(); 571 d->selectedFiles->first();
567 } 572 }
568 if ( cur == current() ) 573 if ( cur == current() )
569 if ( !d->selectedFiles->next() ) 574 if ( !d->selectedFiles->next() )
570 d->selectedFiles->first(); 575 d->selectedFiles->first();
571 return TRUE; 576 return TRUE;
572 } else { 577 } else {
573 if ( !d->selectedFiles->prev() ) { 578 if ( !d->selectedFiles->prev() ) {
574 if ( mediaPlayerState->looping() ) { 579 if ( mediaPlayerState->looping() ) {
575 return d->selectedFiles->last(); 580 return d->selectedFiles->last();
576 } else { 581 } else {
577 return FALSE; 582 return FALSE;
578 } 583 }
579 } 584 }
580 return TRUE; 585 return TRUE;