author | llornkcor <llornkcor> | 2002-06-19 13:43:27 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-06-19 13:43:27 (UTC) |
commit | 110eeb8d44d3065c066a29931761371928df49c4 (patch) (unidiff) | |
tree | 527910aac86ed61e0c2d7d1c885300d841a632ba | |
parent | 94f27897d74d0553bb7a5614f7da0603d490533e (diff) | |
download | opie-110eeb8d44d3065c066a29931761371928df49c4.zip opie-110eeb8d44d3065c066a29931761371928df49c4.tar.gz opie-110eeb8d44d3065c066a29931761371928df49c4.tar.bz2 |
fixed problem with writing doclnk, and local files in an m3u
-rw-r--r-- | core/multimedia/opieplayer/playlistwidget.cpp | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/core/multimedia/opieplayer/playlistwidget.cpp b/core/multimedia/opieplayer/playlistwidget.cpp index 2323ac2..eeaed33 100644 --- a/core/multimedia/opieplayer/playlistwidget.cpp +++ b/core/multimedia/opieplayer/playlistwidget.cpp | |||
@@ -472,840 +472,850 @@ void PlayListWidget::setDocument(const QString& fileref) { | |||
472 | return; | 472 | return; |
473 | } | 473 | } |
474 | // qDebug("setDocument "+fileref); | 474 | // qDebug("setDocument "+fileref); |
475 | if(fileref.find("m3u",0,TRUE) != -1) { //is m3u | 475 | if(fileref.find("m3u",0,TRUE) != -1) { //is m3u |
476 | readm3u( fileref); | 476 | readm3u( fileref); |
477 | } | 477 | } |
478 | else if(fileref.find("pls",0,TRUE) != -1) { //is pls | 478 | else if(fileref.find("pls",0,TRUE) != -1) { //is pls |
479 | readPls( fileref); | 479 | readPls( fileref); |
480 | } | 480 | } |
481 | else if(fileref.find("playlist",0,TRUE) != -1) {//is playlist | 481 | else if(fileref.find("playlist",0,TRUE) != -1) {//is playlist |
482 | clearList(); | 482 | clearList(); |
483 | loadList(DocLnk(fileref)); | 483 | loadList(DocLnk(fileref)); |
484 | d->selectedFiles->first(); | 484 | d->selectedFiles->first(); |
485 | } else { | 485 | } else { |
486 | clearList(); | 486 | clearList(); |
487 | addToSelection( DocLnk( fileref ) ); | 487 | addToSelection( DocLnk( fileref ) ); |
488 | d->setDocumentUsed = TRUE; | 488 | d->setDocumentUsed = TRUE; |
489 | mediaPlayerState->setPlaying( FALSE ); | 489 | mediaPlayerState->setPlaying( FALSE ); |
490 | qApp->processEvents(); | 490 | qApp->processEvents(); |
491 | mediaPlayerState->setPlaying( TRUE ); | 491 | mediaPlayerState->setPlaying( TRUE ); |
492 | qApp->processEvents(); | 492 | qApp->processEvents(); |
493 | setCaption(tr("OpiePlayer")); | 493 | setCaption(tr("OpiePlayer")); |
494 | } | 494 | } |
495 | } | 495 | } |
496 | 496 | ||
497 | 497 | ||
498 | void PlayListWidget::setActiveWindow() { | 498 | void PlayListWidget::setActiveWindow() { |
499 | // When we get raised we need to ensure that it switches views | 499 | // When we get raised we need to ensure that it switches views |
500 | char origView = mediaPlayerState->view(); | 500 | char origView = mediaPlayerState->view(); |
501 | mediaPlayerState->setView( 'l' ); // invalidate | 501 | mediaPlayerState->setView( 'l' ); // invalidate |
502 | mediaPlayerState->setView( origView ); // now switch back | 502 | mediaPlayerState->setView( origView ); // now switch back |
503 | } | 503 | } |
504 | 504 | ||
505 | 505 | ||
506 | void PlayListWidget::useSelectedDocument() { | 506 | void PlayListWidget::useSelectedDocument() { |
507 | d->setDocumentUsed = FALSE; | 507 | d->setDocumentUsed = FALSE; |
508 | } | 508 | } |
509 | 509 | ||
510 | 510 | ||
511 | const DocLnk *PlayListWidget::current() { // this is fugly | 511 | const DocLnk *PlayListWidget::current() { // this is fugly |
512 | 512 | ||
513 | // if( fromSetDocument) { | 513 | // if( fromSetDocument) { |
514 | // qDebug("from setDoc"); | 514 | // qDebug("from setDoc"); |
515 | // DocLnkSet files; | 515 | // DocLnkSet files; |
516 | // Global::findDocuments(&files, "video/*;audio/*"); | 516 | // Global::findDocuments(&files, "video/*;audio/*"); |
517 | // QListIterator<DocLnk> dit( files.children() ); | 517 | // QListIterator<DocLnk> dit( files.children() ); |
518 | // for ( ; dit.current(); ++dit ) { | 518 | // for ( ; dit.current(); ++dit ) { |
519 | // if(dit.current()->linkFile() == setDocFileRef) { | 519 | // if(dit.current()->linkFile() == setDocFileRef) { |
520 | // qDebug(setDocFileRef); | 520 | // qDebug(setDocFileRef); |
521 | // return dit; | 521 | // return dit; |
522 | // } | 522 | // } |
523 | // } | 523 | // } |
524 | // } else | 524 | // } else |
525 | 525 | ||
526 | 526 | ||
527 | switch (tabWidget->currentPageIndex()) { | 527 | switch (tabWidget->currentPageIndex()) { |
528 | case 0: //playlist | 528 | case 0: //playlist |
529 | { | 529 | { |
530 | qDebug("playlist"); | 530 | qDebug("playlist"); |
531 | if ( mediaPlayerState->playlist() ) { | 531 | if ( mediaPlayerState->playlist() ) { |
532 | return d->selectedFiles->current(); | 532 | return d->selectedFiles->current(); |
533 | } | 533 | } |
534 | else if ( d->setDocumentUsed && d->current ) { | 534 | else if ( d->setDocumentUsed && d->current ) { |
535 | return d->current; | 535 | return d->current; |
536 | } else { | 536 | } else { |
537 | return d->files->selected(); | 537 | return d->files->selected(); |
538 | } | 538 | } |
539 | } | 539 | } |
540 | break; | 540 | break; |
541 | case 1://audio | 541 | case 1://audio |
542 | { | 542 | { |
543 | qDebug("audioView"); | 543 | qDebug("audioView"); |
544 | QListIterator<DocLnk> dit( files.children() ); | 544 | QListIterator<DocLnk> dit( files.children() ); |
545 | for ( ; dit.current(); ++dit ) { | 545 | for ( ; dit.current(); ++dit ) { |
546 | if( dit.current()->name() == audioView->currentItem()->text(0) && !insanityBool) { | 546 | if( dit.current()->name() == audioView->currentItem()->text(0) && !insanityBool) { |
547 | qDebug("here"); | 547 | qDebug("here"); |
548 | insanityBool=TRUE; | 548 | insanityBool=TRUE; |
549 | return dit; | 549 | return dit; |
550 | } | 550 | } |
551 | } | 551 | } |
552 | } | 552 | } |
553 | break; | 553 | break; |
554 | case 2: // video | 554 | case 2: // video |
555 | { | 555 | { |
556 | qDebug("videoView"); | 556 | qDebug("videoView"); |
557 | QListIterator<DocLnk> Vdit( vFiles.children() ); | 557 | QListIterator<DocLnk> Vdit( vFiles.children() ); |
558 | for ( ; Vdit.current(); ++Vdit ) { | 558 | for ( ; Vdit.current(); ++Vdit ) { |
559 | if( Vdit.current()->name() == videoView->currentItem()->text(0) && !insanityBool) { | 559 | if( Vdit.current()->name() == videoView->currentItem()->text(0) && !insanityBool) { |
560 | insanityBool=TRUE; | 560 | insanityBool=TRUE; |
561 | return Vdit; | 561 | return Vdit; |
562 | } | 562 | } |
563 | } | 563 | } |
564 | } | 564 | } |
565 | break; | 565 | break; |
566 | }; | 566 | }; |
567 | return 0; | 567 | return 0; |
568 | } | 568 | } |
569 | 569 | ||
570 | bool PlayListWidget::prev() { | 570 | bool PlayListWidget::prev() { |
571 | if ( mediaPlayerState->playlist() ) { | 571 | if ( mediaPlayerState->playlist() ) { |
572 | if ( mediaPlayerState->shuffled() ) { | 572 | if ( mediaPlayerState->shuffled() ) { |
573 | const DocLnk *cur = current(); | 573 | const DocLnk *cur = current(); |
574 | int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0)); | 574 | int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0)); |
575 | for ( int i = 0; i < j; i++ ) { | 575 | for ( int i = 0; i < j; i++ ) { |
576 | if ( !d->selectedFiles->next() ) | 576 | if ( !d->selectedFiles->next() ) |
577 | d->selectedFiles->first(); | 577 | d->selectedFiles->first(); |
578 | } | 578 | } |
579 | if ( cur == current() ) | 579 | if ( cur == current() ) |
580 | if ( !d->selectedFiles->next() ) | 580 | if ( !d->selectedFiles->next() ) |
581 | d->selectedFiles->first(); | 581 | d->selectedFiles->first(); |
582 | return TRUE; | 582 | return TRUE; |
583 | } else { | 583 | } else { |
584 | if ( !d->selectedFiles->prev() ) { | 584 | if ( !d->selectedFiles->prev() ) { |
585 | if ( mediaPlayerState->looping() ) { | 585 | if ( mediaPlayerState->looping() ) { |
586 | return d->selectedFiles->last(); | 586 | return d->selectedFiles->last(); |
587 | } else { | 587 | } else { |
588 | return FALSE; | 588 | return FALSE; |
589 | } | 589 | } |
590 | } | 590 | } |
591 | return TRUE; | 591 | return TRUE; |
592 | } | 592 | } |
593 | } else { | 593 | } else { |
594 | return mediaPlayerState->looping(); | 594 | return mediaPlayerState->looping(); |
595 | } | 595 | } |
596 | } | 596 | } |
597 | 597 | ||
598 | 598 | ||
599 | bool PlayListWidget::next() { | 599 | bool PlayListWidget::next() { |
600 | if ( mediaPlayerState->playlist() ) { | 600 | if ( mediaPlayerState->playlist() ) { |
601 | if ( mediaPlayerState->shuffled() ) { | 601 | if ( mediaPlayerState->shuffled() ) { |
602 | return prev(); | 602 | return prev(); |
603 | } else { | 603 | } else { |
604 | if ( !d->selectedFiles->next() ) { | 604 | if ( !d->selectedFiles->next() ) { |
605 | if ( mediaPlayerState->looping() ) { | 605 | if ( mediaPlayerState->looping() ) { |
606 | return d->selectedFiles->first(); | 606 | return d->selectedFiles->first(); |
607 | } else { | 607 | } else { |
608 | return FALSE; | 608 | return FALSE; |
609 | } | 609 | } |
610 | } | 610 | } |
611 | return TRUE; | 611 | return TRUE; |
612 | } | 612 | } |
613 | } else { | 613 | } else { |
614 | return mediaPlayerState->looping(); | 614 | return mediaPlayerState->looping(); |
615 | } | 615 | } |
616 | } | 616 | } |
617 | 617 | ||
618 | 618 | ||
619 | bool PlayListWidget::first() { | 619 | bool PlayListWidget::first() { |
620 | if ( mediaPlayerState->playlist() ) | 620 | if ( mediaPlayerState->playlist() ) |
621 | return d->selectedFiles->first(); | 621 | return d->selectedFiles->first(); |
622 | else | 622 | else |
623 | return mediaPlayerState->looping(); | 623 | return mediaPlayerState->looping(); |
624 | } | 624 | } |
625 | 625 | ||
626 | 626 | ||
627 | bool PlayListWidget::last() { | 627 | bool PlayListWidget::last() { |
628 | if ( mediaPlayerState->playlist() ) | 628 | if ( mediaPlayerState->playlist() ) |
629 | return d->selectedFiles->last(); | 629 | return d->selectedFiles->last(); |
630 | else | 630 | else |
631 | return mediaPlayerState->looping(); | 631 | return mediaPlayerState->looping(); |
632 | } | 632 | } |
633 | 633 | ||
634 | 634 | ||
635 | void PlayListWidget::saveList() { | 635 | void PlayListWidget::saveList() { |
636 | 636 | ||
637 | QString filename; | 637 | QString filename; |
638 | InputDialog *fileDlg; | 638 | InputDialog *fileDlg; |
639 | fileDlg = new InputDialog(this,tr("Save Playlist"),TRUE, 0); | 639 | fileDlg = new InputDialog(this,tr("Save Playlist"),TRUE, 0); |
640 | fileDlg->exec(); | 640 | fileDlg->exec(); |
641 | if( fileDlg->result() == 1 ) { | 641 | if( fileDlg->result() == 1 ) { |
642 | if ( d->current ) | 642 | if ( d->current ) |
643 | delete d->current; | 643 | delete d->current; |
644 | filename = fileDlg->LineEdit1->text();//+".playlist"; | 644 | filename = fileDlg->LineEdit1->text();//+".playlist"; |
645 | // qDebug("saving playlist "+filename+".playlist"); | 645 | // qDebug("saving playlist "+filename+".playlist"); |
646 | Config cfg( filename +".playlist"); | 646 | Config cfg( filename +".playlist"); |
647 | writeConfig( cfg ); | 647 | writeConfig( cfg ); |
648 | 648 | ||
649 | DocLnk lnk; | 649 | DocLnk lnk; |
650 | // lnk.setComment( ""); | 650 | // lnk.setComment( ""); |
651 | lnk.setFile(QDir::homeDirPath()+"/Settings/"+filename+".playlist.conf"); //sets File property | 651 | lnk.setFile(QDir::homeDirPath()+"/Settings/"+filename+".playlist.conf"); //sets File property |
652 | lnk.setType("playlist/plain");// hey is this a REGISTERED mime type?!?!? ;D | 652 | lnk.setType("playlist/plain");// hey is this a REGISTERED mime type?!?!? ;D |
653 | lnk.setIcon("opieplayer/playlist2"); | 653 | lnk.setIcon("opieplayer/playlist2"); |
654 | lnk.setName( filename); //sets file name | 654 | lnk.setName( filename); //sets file name |
655 | // qDebug(filename); | 655 | // qDebug(filename); |
656 | if(!lnk.writeLink()) | 656 | if(!lnk.writeLink()) |
657 | qDebug("Writing doclink did not work"); | 657 | qDebug("Writing doclink did not work"); |
658 | } | 658 | } |
659 | Config config( "OpiePlayer" ); | 659 | Config config( "OpiePlayer" ); |
660 | config.writeEntry("CurrentPlaylist",filename); | 660 | config.writeEntry("CurrentPlaylist",filename); |
661 | setCaption(tr("OpiePlayer: ")+filename); | 661 | setCaption(tr("OpiePlayer: ")+filename); |
662 | d->selectedFiles->first(); | 662 | d->selectedFiles->first(); |
663 | if(fileDlg) | 663 | if(fileDlg) |
664 | delete fileDlg; | 664 | delete fileDlg; |
665 | } | 665 | } |
666 | 666 | ||
667 | void PlayListWidget::loadList( const DocLnk & lnk) { | 667 | void PlayListWidget::loadList( const DocLnk & lnk) { |
668 | QString name= lnk.name(); | 668 | QString name= lnk.name(); |
669 | // qDebug("currentList is "+name); | 669 | // qDebug("currentList is "+name); |
670 | if( name.length()>1) { | 670 | if( name.length()>1) { |
671 | setCaption("OpiePlayer: "+name); | 671 | setCaption("OpiePlayer: "+name); |
672 | // qDebug("load list "+ name+".playlist"); | 672 | // qDebug("load list "+ name+".playlist"); |
673 | clearList(); | 673 | clearList(); |
674 | Config cfg( name+".playlist"); | 674 | Config cfg( name+".playlist"); |
675 | readConfig(cfg); | 675 | readConfig(cfg); |
676 | 676 | ||
677 | tabWidget->setCurrentPage(0); | 677 | tabWidget->setCurrentPage(0); |
678 | 678 | ||
679 | Config config( "OpiePlayer" ); | 679 | Config config( "OpiePlayer" ); |
680 | config.writeEntry("CurrentPlaylist", name); | 680 | config.writeEntry("CurrentPlaylist", name); |
681 | // d->selectedFiles->first(); | 681 | // d->selectedFiles->first(); |
682 | } | 682 | } |
683 | 683 | ||
684 | } | 684 | } |
685 | 685 | ||
686 | void PlayListWidget::setPlaylist( bool shown ) { | 686 | void PlayListWidget::setPlaylist( bool shown ) { |
687 | if ( shown ) | 687 | if ( shown ) |
688 | d->playListFrame->show(); | 688 | d->playListFrame->show(); |
689 | else | 689 | else |
690 | d->playListFrame->hide(); | 690 | d->playListFrame->hide(); |
691 | } | 691 | } |
692 | 692 | ||
693 | void PlayListWidget::setView( char view ) { | 693 | void PlayListWidget::setView( char view ) { |
694 | if ( view == 'l' ) | 694 | if ( view == 'l' ) |
695 | showMaximized(); | 695 | showMaximized(); |
696 | else | 696 | else |
697 | hide(); | 697 | hide(); |
698 | } | 698 | } |
699 | 699 | ||
700 | void PlayListWidget::addSelected() { | 700 | void PlayListWidget::addSelected() { |
701 | 701 | ||
702 | Config cfg( "OpiePlayer" ); | 702 | Config cfg( "OpiePlayer" ); |
703 | cfg.setGroup("PlayList"); | 703 | cfg.setGroup("PlayList"); |
704 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); | 704 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); |
705 | int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); | 705 | int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); |
706 | 706 | ||
707 | switch (tabWidget->currentPageIndex()) { | 707 | switch (tabWidget->currentPageIndex()) { |
708 | case 0: //playlist | 708 | case 0: //playlist |
709 | break; | 709 | break; |
710 | case 1: { //audio | 710 | case 1: { //audio |
711 | // QString entryName; | 711 | // QString entryName; |
712 | // entryName.sprintf( "File%i", i + 1 ); | 712 | // entryName.sprintf( "File%i", i + 1 ); |
713 | // QString linkFile = cfg.readEntry( entryName ); | 713 | // QString linkFile = cfg.readEntry( entryName ); |
714 | QListViewItemIterator it( audioView ); | 714 | QListViewItemIterator it( audioView ); |
715 | // iterate through all items of the listview | 715 | // iterate through all items of the listview |
716 | for ( ; it.current(); ++it ) { | 716 | for ( ; it.current(); ++it ) { |
717 | if ( it.current()->isSelected() ) { | 717 | if ( it.current()->isSelected() ) { |
718 | QListIterator<DocLnk> dit( files.children() ); | 718 | QListIterator<DocLnk> dit( files.children() ); |
719 | for ( ; dit.current(); ++dit ) { | 719 | for ( ; dit.current(); ++dit ) { |
720 | if( dit.current()->name() == it.current()->text(0) ) { | 720 | if( dit.current()->name() == it.current()->text(0) ) { |
721 | d->selectedFiles->addToSelection( **dit ); | 721 | d->selectedFiles->addToSelection( **dit ); |
722 | } | 722 | } |
723 | } | 723 | } |
724 | audioView->setSelected( it.current(),FALSE); | 724 | audioView->setSelected( it.current(),FALSE); |
725 | } | 725 | } |
726 | } | 726 | } |
727 | tabWidget->setCurrentPage(0); | 727 | tabWidget->setCurrentPage(0); |
728 | } | 728 | } |
729 | break; | 729 | break; |
730 | case 2: { // video | 730 | case 2: { // video |
731 | QListViewItemIterator it( videoView ); | 731 | QListViewItemIterator it( videoView ); |
732 | // iterate through all items of the listview | 732 | // iterate through all items of the listview |
733 | for ( ; it.current(); ++it ) { | 733 | for ( ; it.current(); ++it ) { |
734 | if ( it.current()->isSelected() ) { | 734 | if ( it.current()->isSelected() ) { |
735 | QListIterator<DocLnk> dit( vFiles.children() ); | 735 | QListIterator<DocLnk> dit( vFiles.children() ); |
736 | for ( ; dit.current(); ++dit ) { | 736 | for ( ; dit.current(); ++dit ) { |
737 | if( dit.current()->name() == it.current()->text(0) ) { | 737 | if( dit.current()->name() == it.current()->text(0) ) { |
738 | d->selectedFiles->addToSelection( **dit ); | 738 | d->selectedFiles->addToSelection( **dit ); |
739 | } | 739 | } |
740 | } | 740 | } |
741 | 741 | ||
742 | videoView->setSelected( it.current(),FALSE); | 742 | videoView->setSelected( it.current(),FALSE); |
743 | } | 743 | } |
744 | } | 744 | } |
745 | // for ( int i = 0; i < noOfFiles; i++ ) { | 745 | // for ( int i = 0; i < noOfFiles; i++ ) { |
746 | // QString entryName; | 746 | // QString entryName; |
747 | // entryName.sprintf( "File%i", i + 1 ); | 747 | // entryName.sprintf( "File%i", i + 1 ); |
748 | // QString linkFile = cfg.readEntry( entryName ); | 748 | // QString linkFile = cfg.readEntry( entryName ); |
749 | // if( DocLnk( linkFile).name() == videoView->selectedItem()->text(0) ) { | 749 | // if( DocLnk( linkFile).name() == videoView->selectedItem()->text(0) ) { |
750 | // int result= QMessageBox::warning(this,tr("OpiePlayer"), | 750 | // int result= QMessageBox::warning(this,tr("OpiePlayer"), |
751 | // tr("This is all ready in your playlist.\nContinue?"), | 751 | // tr("This is all ready in your playlist.\nContinue?"), |
752 | // tr("Yes"),tr("No"),0,0,1); | 752 | // tr("Yes"),tr("No"),0,0,1); |
753 | // if (result !=0) | 753 | // if (result !=0) |
754 | // return; | 754 | // return; |
755 | // } | 755 | // } |
756 | // } | 756 | // } |
757 | // addToSelection( videoView->selectedItem() ); | 757 | // addToSelection( videoView->selectedItem() ); |
758 | tabWidget->setCurrentPage(0); | 758 | tabWidget->setCurrentPage(0); |
759 | } | 759 | } |
760 | break; | 760 | break; |
761 | }; | 761 | }; |
762 | } | 762 | } |
763 | 763 | ||
764 | void PlayListWidget::removeSelected() { | 764 | void PlayListWidget::removeSelected() { |
765 | d->selectedFiles->removeSelected( ); | 765 | d->selectedFiles->removeSelected( ); |
766 | } | 766 | } |
767 | 767 | ||
768 | void PlayListWidget::playIt( QListViewItem *it) { | 768 | void PlayListWidget::playIt( QListViewItem *it) { |
769 | // d->setDocumentUsed = FALSE; | 769 | // d->setDocumentUsed = FALSE; |
770 | // mediaPlayerState->curPosition =0; | 770 | // mediaPlayerState->curPosition =0; |
771 | qDebug("playIt"); | 771 | qDebug("playIt"); |
772 | mediaPlayerState->setPlaying(FALSE); | 772 | mediaPlayerState->setPlaying(FALSE); |
773 | mediaPlayerState->setPlaying(TRUE); | 773 | mediaPlayerState->setPlaying(TRUE); |
774 | d->selectedFiles->unSelect(); | 774 | d->selectedFiles->unSelect(); |
775 | } | 775 | } |
776 | 776 | ||
777 | void PlayListWidget::addToSelection( QListViewItem *it) { | 777 | void PlayListWidget::addToSelection( QListViewItem *it) { |
778 | d->setDocumentUsed = FALSE; | 778 | d->setDocumentUsed = FALSE; |
779 | 779 | ||
780 | if(it) { | 780 | if(it) { |
781 | switch (tabWidget->currentPageIndex()) { | 781 | switch (tabWidget->currentPageIndex()) { |
782 | case 1: { | 782 | case 1: { |
783 | QListIterator<DocLnk> dit( files.children() ); | 783 | QListIterator<DocLnk> dit( files.children() ); |
784 | for ( ; dit.current(); ++dit ) { | 784 | for ( ; dit.current(); ++dit ) { |
785 | if( dit.current()->name() == it->text(0)) { | 785 | if( dit.current()->name() == it->text(0)) { |
786 | d->selectedFiles->addToSelection( **dit ); | 786 | d->selectedFiles->addToSelection( **dit ); |
787 | } | 787 | } |
788 | } | 788 | } |
789 | } | 789 | } |
790 | break; | 790 | break; |
791 | case 2: { | 791 | case 2: { |
792 | QListIterator<DocLnk> dit( vFiles.children() ); | 792 | QListIterator<DocLnk> dit( vFiles.children() ); |
793 | for ( ; dit.current(); ++dit ) { | 793 | for ( ; dit.current(); ++dit ) { |
794 | if( dit.current()->name() == it->text(0)) { | 794 | if( dit.current()->name() == it->text(0)) { |
795 | d->selectedFiles->addToSelection( **dit ); | 795 | d->selectedFiles->addToSelection( **dit ); |
796 | } | 796 | } |
797 | } | 797 | } |
798 | } | 798 | } |
799 | break; | 799 | break; |
800 | case 0: | 800 | case 0: |
801 | break; | 801 | break; |
802 | }; | 802 | }; |
803 | tabWidget->setCurrentPage(0); | 803 | tabWidget->setCurrentPage(0); |
804 | } | 804 | } |
805 | } | 805 | } |
806 | 806 | ||
807 | void PlayListWidget::tabChanged(QWidget *widg) { | 807 | void PlayListWidget::tabChanged(QWidget *widg) { |
808 | 808 | ||
809 | switch ( tabWidget->currentPageIndex()) { | 809 | switch ( tabWidget->currentPageIndex()) { |
810 | case 0: | 810 | case 0: |
811 | { | 811 | { |
812 | if( !tbDeletePlaylist->isHidden()) | 812 | if( !tbDeletePlaylist->isHidden()) |
813 | tbDeletePlaylist->hide(); | 813 | tbDeletePlaylist->hide(); |
814 | d->tbRemoveFromList->setEnabled(TRUE); | 814 | d->tbRemoveFromList->setEnabled(TRUE); |
815 | d->tbAddToList->setEnabled(FALSE); | 815 | d->tbAddToList->setEnabled(FALSE); |
816 | } | 816 | } |
817 | break; | 817 | break; |
818 | case 1: | 818 | case 1: |
819 | { | 819 | { |
820 | audioView->clear(); | 820 | audioView->clear(); |
821 | populateAudioView(); | 821 | populateAudioView(); |
822 | 822 | ||
823 | if( !tbDeletePlaylist->isHidden()) | 823 | if( !tbDeletePlaylist->isHidden()) |
824 | tbDeletePlaylist->hide(); | 824 | tbDeletePlaylist->hide(); |
825 | d->tbRemoveFromList->setEnabled(FALSE); | 825 | d->tbRemoveFromList->setEnabled(FALSE); |
826 | d->tbAddToList->setEnabled(TRUE); | 826 | d->tbAddToList->setEnabled(TRUE); |
827 | } | 827 | } |
828 | break; | 828 | break; |
829 | case 2: | 829 | case 2: |
830 | { | 830 | { |
831 | videoView->clear(); | 831 | videoView->clear(); |
832 | populateVideoView(); | 832 | populateVideoView(); |
833 | if( !tbDeletePlaylist->isHidden()) | 833 | if( !tbDeletePlaylist->isHidden()) |
834 | tbDeletePlaylist->hide(); | 834 | tbDeletePlaylist->hide(); |
835 | d->tbRemoveFromList->setEnabled(FALSE); | 835 | d->tbRemoveFromList->setEnabled(FALSE); |
836 | d->tbAddToList->setEnabled(TRUE); | 836 | d->tbAddToList->setEnabled(TRUE); |
837 | } | 837 | } |
838 | break; | 838 | break; |
839 | case 3: | 839 | case 3: |
840 | { | 840 | { |
841 | if( tbDeletePlaylist->isHidden()) | 841 | if( tbDeletePlaylist->isHidden()) |
842 | tbDeletePlaylist->show(); | 842 | tbDeletePlaylist->show(); |
843 | playLists->reread(); | 843 | playLists->reread(); |
844 | } | 844 | } |
845 | break; | 845 | break; |
846 | }; | 846 | }; |
847 | } | 847 | } |
848 | 848 | ||
849 | void PlayListWidget::btnPlay(bool b) { | 849 | void PlayListWidget::btnPlay(bool b) { |
850 | 850 | ||
851 | // mediaPlayerState->setPlaying(b); | 851 | // mediaPlayerState->setPlaying(b); |
852 | switch ( tabWidget->currentPageIndex()) { | 852 | switch ( tabWidget->currentPageIndex()) { |
853 | case 0: | 853 | case 0: |
854 | { | 854 | { |
855 | qDebug("here we are"); | 855 | qDebug("here we are"); |
856 | if( d->selectedFiles->current()->file().find(" ",0,TRUE) != -1 || d->selectedFiles->current()->file().find("%20",0,TRUE) != -1) { | 856 | if( d->selectedFiles->current()->file().find(" ",0,TRUE) != -1 |
857 | || d->selectedFiles->current()->file().find("%20",0,TRUE) != -1) { | ||
857 | QMessageBox::message("Note","You are trying to play\na malformed url."); | 858 | QMessageBox::message("Note","You are trying to play\na malformed url."); |
858 | 859 | ||
859 | } else { | 860 | } else { |
860 | 861 | ||
861 | mediaPlayerState->setPlaying(b); | 862 | mediaPlayerState->setPlaying(b); |
862 | } } | 863 | } } |
863 | break; | 864 | break; |
864 | case 1: | 865 | case 1: |
865 | { | 866 | { |
866 | addToSelection( audioView->currentItem() ); | 867 | addToSelection( audioView->currentItem() ); |
867 | mediaPlayerState->setPlaying(b); | 868 | mediaPlayerState->setPlaying(b); |
868 | d->selectedFiles->removeSelected( ); | 869 | d->selectedFiles->removeSelected( ); |
869 | tabWidget->setCurrentPage(1); | 870 | tabWidget->setCurrentPage(1); |
870 | d->selectedFiles->unSelect(); | 871 | d->selectedFiles->unSelect(); |
871 | insanityBool=FALSE; | 872 | insanityBool=FALSE; |
872 | }// audioView->clearSelection(); | 873 | }// audioView->clearSelection(); |
873 | break; | 874 | break; |
874 | case 2: | 875 | case 2: |
875 | { | 876 | { |
876 | addToSelection( videoView->currentItem() ); | 877 | addToSelection( videoView->currentItem() ); |
877 | mediaPlayerState->setPlaying(b); | 878 | mediaPlayerState->setPlaying(b); |
878 | qApp->processEvents(); | 879 | qApp->processEvents(); |
879 | d->selectedFiles->removeSelected( ); | 880 | d->selectedFiles->removeSelected( ); |
880 | tabWidget->setCurrentPage(2); | 881 | tabWidget->setCurrentPage(2); |
881 | d->selectedFiles->unSelect(); | 882 | d->selectedFiles->unSelect(); |
882 | insanityBool=FALSE; | 883 | insanityBool=FALSE; |
883 | }// videoView->clearSelection(); | 884 | }// videoView->clearSelection(); |
884 | break; | 885 | break; |
885 | }; | 886 | }; |
886 | 887 | ||
887 | } | 888 | } |
888 | 889 | ||
889 | void PlayListWidget::deletePlaylist() { | 890 | void PlayListWidget::deletePlaylist() { |
890 | switch( QMessageBox::information( this, (tr("Remove Playlist?")), | 891 | switch( QMessageBox::information( this, (tr("Remove Playlist?")), |
891 | (tr("You really want to delete\nthis playlist?")), | 892 | (tr("You really want to delete\nthis playlist?")), |
892 | (tr("Yes")), (tr("No")), 0 )){ | 893 | (tr("Yes")), (tr("No")), 0 )){ |
893 | case 0: // Yes clicked, | 894 | case 0: // Yes clicked, |
894 | QFile().remove(playLists->selected()->file()); | 895 | QFile().remove(playLists->selected()->file()); |
895 | QFile().remove(playLists->selected()->linkFile()); | 896 | QFile().remove(playLists->selected()->linkFile()); |
896 | playLists->reread(); | 897 | playLists->reread(); |
897 | break; | 898 | break; |
898 | case 1: // Cancel | 899 | case 1: // Cancel |
899 | break; | 900 | break; |
900 | }; | 901 | }; |
901 | } | 902 | } |
902 | 903 | ||
903 | void PlayListWidget::viewPressed( int mouse, QListViewItem *item, const QPoint& point, int i) | 904 | void PlayListWidget::viewPressed( int mouse, QListViewItem *item, const QPoint& point, int i) |
904 | { | 905 | { |
905 | switch (mouse) { | 906 | switch (mouse) { |
906 | case 1: | 907 | case 1: |
907 | break; | 908 | break; |
908 | case 2:{ | 909 | case 2:{ |
909 | 910 | ||
910 | QPopupMenu m; | 911 | QPopupMenu m; |
911 | m.insertItem( tr( "Play" ), this, SLOT( playSelected() )); | 912 | m.insertItem( tr( "Play" ), this, SLOT( playSelected() )); |
912 | m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() )); | 913 | m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() )); |
913 | m.insertSeparator(); | 914 | m.insertSeparator(); |
914 | if( QFile(QPEApplication::qpeDir()+"lib/libopie.so").exists() ) | 915 | if( QFile(QPEApplication::qpeDir()+"lib/libopie.so").exists() ) |
915 | m.insertItem( tr( "Properties" ), this, SLOT( listDelete() )); | 916 | m.insertItem( tr( "Properties" ), this, SLOT( listDelete() )); |
916 | 917 | ||
917 | m.exec( QCursor::pos() ); | 918 | m.exec( QCursor::pos() ); |
918 | } | 919 | } |
919 | break; | 920 | break; |
920 | }; | 921 | }; |
921 | } | 922 | } |
922 | 923 | ||
923 | void PlayListWidget::playSelected() | 924 | void PlayListWidget::playSelected() |
924 | { | 925 | { |
925 | btnPlay( TRUE); | 926 | btnPlay( TRUE); |
926 | // d->selectedFiles->unSelect(); | 927 | // d->selectedFiles->unSelect(); |
927 | } | 928 | } |
928 | 929 | ||
929 | void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *item, const QPoint& point, int i) | 930 | void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *item, const QPoint& point, int i) |
930 | { | 931 | { |
931 | switch (mouse) { | 932 | switch (mouse) { |
932 | case 1: | 933 | case 1: |
933 | 934 | ||
934 | break; | 935 | break; |
935 | case 2:{ | 936 | case 2:{ |
936 | QPopupMenu m; | 937 | QPopupMenu m; |
937 | m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() )); | 938 | m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() )); |
938 | m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() )); | 939 | m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() )); |
939 | // m.insertSeparator(); | 940 | // m.insertSeparator(); |
940 | // m.insertItem( tr( "Properties" ), this, SLOT( listDelete() )); | 941 | // m.insertItem( tr( "Properties" ), this, SLOT( listDelete() )); |
941 | m.exec( QCursor::pos() ); | 942 | m.exec( QCursor::pos() ); |
942 | } | 943 | } |
943 | break; | 944 | break; |
944 | }; | 945 | }; |
945 | 946 | ||
946 | } | 947 | } |
947 | 948 | ||
948 | void PlayListWidget::listDelete() { | 949 | void PlayListWidget::listDelete() { |
949 | Config cfg( "OpiePlayer" ); | 950 | Config cfg( "OpiePlayer" ); |
950 | cfg.setGroup("PlayList"); | 951 | cfg.setGroup("PlayList"); |
951 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); | 952 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); |
952 | QString file; | 953 | QString file; |
953 | int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); | 954 | int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); |
954 | switch ( tabWidget->currentPageIndex()) { | 955 | switch ( tabWidget->currentPageIndex()) { |
955 | case 0: | 956 | case 0: |
956 | break; | 957 | break; |
957 | case 1: | 958 | case 1: |
958 | { | 959 | { |
959 | file = audioView->selectedItem()->text(0); | 960 | file = audioView->selectedItem()->text(0); |
960 | // Global::findDocuments(&files, "audio/*"); | 961 | // Global::findDocuments(&files, "audio/*"); |
961 | // AppLnkSet appFiles; | 962 | // AppLnkSet appFiles; |
962 | QListIterator<DocLnk> dit( files.children() ); | 963 | QListIterator<DocLnk> dit( files.children() ); |
963 | for ( ; dit.current(); ++dit ) { | 964 | for ( ; dit.current(); ++dit ) { |
964 | if( dit.current()->name() == file) { | 965 | if( dit.current()->name() == file) { |
965 | // qDebug(file); | 966 | // qDebug(file); |
966 | LnkProperties prop( dit.current() ); | 967 | LnkProperties prop( dit.current() ); |
967 | // connect(&prop, SIGNAL(select(const AppLnk *)), this, SLOT(externalSelected(const AppLnk *))); | 968 | // connect(&prop, SIGNAL(select(const AppLnk *)), this, SLOT(externalSelected(const AppLnk *))); |
968 | prop.showMaximized(); | 969 | prop.showMaximized(); |
969 | prop.exec(); | 970 | prop.exec(); |
970 | } | 971 | } |
971 | } | 972 | } |
972 | populateAudioView(); | 973 | populateAudioView(); |
973 | } | 974 | } |
974 | break; | 975 | break; |
975 | case 2: | 976 | case 2: |
976 | { | 977 | { |
977 | // file = videoView->selectedItem()->text(0); | 978 | // file = videoView->selectedItem()->text(0); |
978 | // for ( int i = 0; i < noOfFiles; i++ ) { | 979 | // for ( int i = 0; i < noOfFiles; i++ ) { |
979 | // QString entryName; | 980 | // QString entryName; |
980 | // entryName.sprintf( "File%i", i + 1 ); | 981 | // entryName.sprintf( "File%i", i + 1 ); |
981 | // QString linkFile = cfg.readEntry( entryName ); | 982 | // QString linkFile = cfg.readEntry( entryName ); |
982 | // AppLnk lnk( AppLnk(linkFile)); | 983 | // AppLnk lnk( AppLnk(linkFile)); |
983 | // if( lnk.name() == file ) { | 984 | // if( lnk.name() == file ) { |
984 | // LnkProperties prop( &lnk); | 985 | // LnkProperties prop( &lnk); |
985 | // // connect(&prop, SIGNAL(select(const AppLnk *)), this, SLOT(externalSelected(const AppLnk *))); | 986 | // // connect(&prop, SIGNAL(select(const AppLnk *)), this, SLOT(externalSelected(const AppLnk *))); |
986 | // prop.showMaximized(); | 987 | // prop.showMaximized(); |
987 | // prop.exec(); | 988 | // prop.exec(); |
988 | // } | 989 | // } |
989 | // } | 990 | // } |
990 | } | 991 | } |
991 | break; | 992 | break; |
992 | }; | 993 | }; |
993 | } | 994 | } |
994 | 995 | ||
995 | void PlayListWidget::scanForAudio() { | 996 | void PlayListWidget::scanForAudio() { |
996 | qDebug("scan for audio"); | 997 | qDebug("scan for audio"); |
997 | files.detachChildren(); | 998 | files.detachChildren(); |
998 | QListIterator<DocLnk> sdit( files.children() ); | 999 | QListIterator<DocLnk> sdit( files.children() ); |
999 | for ( ; sdit.current(); ++sdit ) { | 1000 | for ( ; sdit.current(); ++sdit ) { |
1000 | delete sdit.current(); | 1001 | delete sdit.current(); |
1001 | } | 1002 | } |
1002 | Global::findDocuments(&files, "audio/*"); | 1003 | Global::findDocuments(&files, "audio/*"); |
1003 | audioScan = TRUE; | 1004 | audioScan = TRUE; |
1004 | } | 1005 | } |
1005 | void PlayListWidget::scanForVideo() { | 1006 | void PlayListWidget::scanForVideo() { |
1006 | qDebug("scan for video"); | 1007 | qDebug("scan for video"); |
1007 | vFiles.detachChildren(); | 1008 | vFiles.detachChildren(); |
1008 | QListIterator<DocLnk> sdit( vFiles.children() ); | 1009 | QListIterator<DocLnk> sdit( vFiles.children() ); |
1009 | for ( ; sdit.current(); ++sdit ) { | 1010 | for ( ; sdit.current(); ++sdit ) { |
1010 | delete sdit.current(); | 1011 | delete sdit.current(); |
1011 | } | 1012 | } |
1012 | Global::findDocuments(&vFiles, "video/*"); | 1013 | Global::findDocuments(&vFiles, "video/*"); |
1013 | videoScan = TRUE; | 1014 | videoScan = TRUE; |
1014 | } | 1015 | } |
1015 | 1016 | ||
1016 | void PlayListWidget::populateAudioView() { | 1017 | void PlayListWidget::populateAudioView() { |
1017 | 1018 | ||
1018 | audioView->clear(); | 1019 | audioView->clear(); |
1019 | StorageInfo storageInfo; | 1020 | StorageInfo storageInfo; |
1020 | const QList<FileSystem> &fs = storageInfo.fileSystems(); | 1021 | const QList<FileSystem> &fs = storageInfo.fileSystems(); |
1021 | if(!audioScan) scanForAudio(); | 1022 | if(!audioScan) scanForAudio(); |
1022 | 1023 | ||
1023 | QListIterator<DocLnk> dit( files.children() ); | 1024 | QListIterator<DocLnk> dit( files.children() ); |
1024 | QListIterator<FileSystem> it ( fs ); | 1025 | QListIterator<FileSystem> it ( fs ); |
1025 | 1026 | ||
1026 | QString storage; | 1027 | QString storage; |
1027 | for ( ; dit.current(); ++dit ) { | 1028 | for ( ; dit.current(); ++dit ) { |
1028 | for( ; it.current(); ++it ){ | 1029 | for( ; it.current(); ++it ){ |
1029 | const QString name = (*it)->name(); | 1030 | const QString name = (*it)->name(); |
1030 | const QString path = (*it)->path(); | 1031 | const QString path = (*it)->path(); |
1031 | if(dit.current()->file().find(path) != -1 ) storage=name; | 1032 | if(dit.current()->file().find(path) != -1 ) storage=name; |
1032 | } | 1033 | } |
1033 | 1034 | ||
1034 | QListViewItem * newItem; | 1035 | QListViewItem * newItem; |
1035 | if ( QFile( dit.current()->file()).exists() ) { | 1036 | if ( QFile( dit.current()->file()).exists() ) { |
1036 | // qDebug(dit.current()->name()); | 1037 | // qDebug(dit.current()->name()); |
1037 | newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), | 1038 | newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), |
1038 | QString::number( QFile( dit.current()->file()).size() ), storage); | 1039 | QString::number( QFile( dit.current()->file()).size() ), storage); |
1039 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer/musicfile" )); | 1040 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer/musicfile" )); |
1040 | } | 1041 | } |
1041 | } | 1042 | } |
1042 | 1043 | ||
1043 | } | 1044 | } |
1044 | 1045 | ||
1045 | void PlayListWidget::populateVideoView() { | 1046 | void PlayListWidget::populateVideoView() { |
1046 | videoView->clear(); | 1047 | videoView->clear(); |
1047 | StorageInfo storageInfo; | 1048 | StorageInfo storageInfo; |
1048 | const QList<FileSystem> &fs = storageInfo.fileSystems(); | 1049 | const QList<FileSystem> &fs = storageInfo.fileSystems(); |
1049 | 1050 | ||
1050 | if(!videoScan ) scanForVideo(); | 1051 | if(!videoScan ) scanForVideo(); |
1051 | 1052 | ||
1052 | QListIterator<DocLnk> Vdit( vFiles.children() ); | 1053 | QListIterator<DocLnk> Vdit( vFiles.children() ); |
1053 | QListIterator<FileSystem> it ( fs ); | 1054 | QListIterator<FileSystem> it ( fs ); |
1054 | videoView->clear(); | 1055 | videoView->clear(); |
1055 | QString storage; | 1056 | QString storage; |
1056 | for ( ; Vdit.current(); ++Vdit ) { | 1057 | for ( ; Vdit.current(); ++Vdit ) { |
1057 | for( ; it.current(); ++it ){ | 1058 | for( ; it.current(); ++it ){ |
1058 | const QString name = (*it)->name(); | 1059 | const QString name = (*it)->name(); |
1059 | const QString path = (*it)->path(); | 1060 | const QString path = (*it)->path(); |
1060 | if( Vdit.current()->file().find(path) != -1 ) storage=name; | 1061 | if( Vdit.current()->file().find(path) != -1 ) storage=name; |
1061 | } | 1062 | } |
1062 | 1063 | ||
1063 | QListViewItem * newItem; | 1064 | QListViewItem * newItem; |
1064 | if ( QFile( Vdit.current()->file()).exists() ) { | 1065 | if ( QFile( Vdit.current()->file()).exists() ) { |
1065 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), | 1066 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), |
1066 | QString::number( QFile( Vdit.current()->file()).size() ), storage); | 1067 | QString::number( QFile( Vdit.current()->file()).size() ), storage); |
1067 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer/videofile" )); | 1068 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer/videofile" )); |
1068 | } | 1069 | } |
1069 | } | 1070 | } |
1070 | } | 1071 | } |
1071 | 1072 | ||
1072 | void PlayListWidget::openFile() { | 1073 | void PlayListWidget::openFile() { |
1073 | QString filename, name; | 1074 | QString filename, name; |
1074 | InputDialog *fileDlg; | 1075 | InputDialog *fileDlg; |
1075 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); | 1076 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); |
1076 | fileDlg->exec(); | 1077 | fileDlg->exec(); |
1077 | if( fileDlg->result() == 1 ) { | 1078 | if( fileDlg->result() == 1 ) { |
1078 | filename = fileDlg->LineEdit1->text(); | 1079 | filename = fileDlg->LineEdit1->text(); |
1079 | // http://205.188.234.129:8030 | 1080 | // http://205.188.234.129:8030 |
1080 | // http://66.28.68.70:8000 | 1081 | // http://66.28.68.70:8000 |
1081 | // filename.replace(QRegExp("%20")," "); | 1082 | // filename.replace(QRegExp("%20")," "); |
1082 | if(filename.find(" ",0,TRUE) != -1 || filename.find("%20",0,TRUE) != -1) { | 1083 | if(filename.find(" ",0,TRUE) != -1 || filename.find("%20",0,TRUE) != -1) { |
1083 | QMessageBox::message("Note","Spaces in urls are not allowed."); | 1084 | QMessageBox::message("Note","Spaces in urls are not allowed."); |
1084 | return; | 1085 | return; |
1085 | } else { | 1086 | } else { |
1086 | qDebug("Selected filename is "+filename); | 1087 | qDebug("Selected filename is "+filename); |
1087 | if(filename.right(3) == "m3u") | 1088 | if(filename.right(3) == "m3u") |
1088 | readm3u( filename); | 1089 | readm3u( filename); |
1089 | else if(filename.right(3) == "pls") | 1090 | else if(filename.right(3) == "pls") |
1090 | readPls( filename); | 1091 | readPls( filename); |
1091 | else { | 1092 | else { |
1092 | DocLnk lnk; | 1093 | DocLnk lnk; |
1093 | 1094 | ||
1094 | lnk.setName(filename); //sets file name | 1095 | lnk.setName(filename); //sets file name |
1095 | if(filename.right(1) != "/" && filename.right(3) != "mp3" && filename.right(3) != "MP3") | 1096 | if(filename.right(1) != "/" && filename.right(3) != "mp3" && filename.right(3) != "MP3") |
1096 | filename += "/"; | 1097 | filename += "/"; |
1097 | lnk.setFile(filename); //sets File property | 1098 | lnk.setFile(filename); //sets File property |
1098 | 1099 | ||
1099 | lnk.setType("audio/x-mpegurl"); | 1100 | lnk.setType("audio/x-mpegurl"); |
1100 | lnk.setExec("opieplayer"); | 1101 | lnk.setExec("opieplayer"); |
1101 | lnk.setIcon("opieplayer/MPEGPlayer"); | 1102 | lnk.setIcon("opieplayer/MPEGPlayer"); |
1102 | 1103 | ||
1103 | if(!lnk.writeLink()) | 1104 | if(!lnk.writeLink()) |
1104 | qDebug("Writing doclink did not work"); | 1105 | qDebug("Writing doclink did not work"); |
1105 | d->selectedFiles->addToSelection( lnk); | 1106 | d->selectedFiles->addToSelection( lnk); |
1106 | // if(fileDlg2) | 1107 | // if(fileDlg2) |
1107 | // delete fileDlg2; | 1108 | // delete fileDlg2; |
1108 | } | 1109 | } |
1109 | } | 1110 | } |
1110 | } | 1111 | } |
1111 | if(fileDlg) | 1112 | if(fileDlg) |
1112 | delete fileDlg; | 1113 | delete fileDlg; |
1113 | } | 1114 | } |
1114 | 1115 | ||
1115 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e) | 1116 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e) |
1116 | { | 1117 | { |
1117 | switch ( e->key() ) { | 1118 | switch ( e->key() ) { |
1118 | ////////////////////////////// Zaurus keys | 1119 | ////////////////////////////// Zaurus keys |
1119 | case Key_F9: //activity | 1120 | case Key_F9: //activity |
1120 | // if(audioUI->isHidden()) | 1121 | // if(audioUI->isHidden()) |
1121 | // audioUI->showMaximized(); | 1122 | // audioUI->showMaximized(); |
1122 | break; | 1123 | break; |
1123 | case Key_F10: //contacts | 1124 | case Key_F10: //contacts |
1124 | // if( videoUI->isHidden()) | 1125 | // if( videoUI->isHidden()) |
1125 | // videoUI->showMaximized(); | 1126 | // videoUI->showMaximized(); |
1126 | break; | 1127 | break; |
1127 | case Key_F11: //menu | 1128 | case Key_F11: //menu |
1128 | break; | 1129 | break; |
1129 | case Key_F12: //home | 1130 | case Key_F12: //home |
1130 | // doBlank(); | 1131 | // doBlank(); |
1131 | break; | 1132 | break; |
1132 | case Key_F13: //mail | 1133 | case Key_F13: //mail |
1133 | // doUnblank(); | 1134 | // doUnblank(); |
1134 | break; | 1135 | break; |
1135 | case Key_Q: //add to playlist | 1136 | case Key_Q: //add to playlist |
1136 | qDebug("Add"); | 1137 | qDebug("Add"); |
1137 | addSelected(); | 1138 | addSelected(); |
1138 | break; | 1139 | break; |
1139 | case Key_R: //remove from playlist | 1140 | case Key_R: //remove from playlist |
1140 | removeSelected(); | 1141 | removeSelected(); |
1141 | break; | 1142 | break; |
1142 | // case Key_P: //play | 1143 | // case Key_P: //play |
1143 | // qDebug("Play"); | 1144 | // qDebug("Play"); |
1144 | // playSelected(); | 1145 | // playSelected(); |
1145 | // break; | 1146 | // break; |
1146 | case Key_Space: | 1147 | case Key_Space: |
1147 | qDebug("Play"); | 1148 | qDebug("Play"); |
1148 | // playSelected(); puh | 1149 | // playSelected(); puh |
1149 | break; | 1150 | break; |
1150 | case Key_1: | 1151 | case Key_1: |
1151 | tabWidget->setCurrentPage(0); | 1152 | tabWidget->setCurrentPage(0); |
1152 | break; | 1153 | break; |
1153 | case Key_2: | 1154 | case Key_2: |
1154 | tabWidget->setCurrentPage(1); | 1155 | tabWidget->setCurrentPage(1); |
1155 | break; | 1156 | break; |
1156 | case Key_3: | 1157 | case Key_3: |
1157 | tabWidget->setCurrentPage(2); | 1158 | tabWidget->setCurrentPage(2); |
1158 | break; | 1159 | break; |
1159 | case Key_4: | 1160 | case Key_4: |
1160 | tabWidget->setCurrentPage(3); | 1161 | tabWidget->setCurrentPage(3); |
1161 | break; | 1162 | break; |
1162 | } | 1163 | } |
1163 | } | 1164 | } |
1164 | 1165 | ||
1165 | void PlayListWidget::keyPressEvent( QKeyEvent *e) | 1166 | void PlayListWidget::keyPressEvent( QKeyEvent *e) |
1166 | { | 1167 | { |
1167 | // qDebug("Key press"); | 1168 | // qDebug("Key press"); |
1168 | // switch ( e->key() ) { | 1169 | // switch ( e->key() ) { |
1169 | // ////////////////////////////// Zaurus keys | 1170 | // ////////////////////////////// Zaurus keys |
1170 | // case Key_A: //add to playlist | 1171 | // case Key_A: //add to playlist |
1171 | // qDebug("Add"); | 1172 | // qDebug("Add"); |
1172 | // addSelected(); | 1173 | // addSelected(); |
1173 | // break; | 1174 | // break; |
1174 | // case Key_R: //remove from playlist | 1175 | // case Key_R: //remove from playlist |
1175 | // removeSelected(); | 1176 | // removeSelected(); |
1176 | // break; | 1177 | // break; |
1177 | // case Key_P: //play | 1178 | // case Key_P: //play |
1178 | // qDebug("Play"); | 1179 | // qDebug("Play"); |
1179 | // playSelected(); | 1180 | // playSelected(); |
1180 | // break; | 1181 | // break; |
1181 | // case Key_Space: | 1182 | // case Key_Space: |
1182 | // qDebug("Play"); | 1183 | // qDebug("Play"); |
1183 | // playSelected(); | 1184 | // playSelected(); |
1184 | // break; | 1185 | // break; |
1185 | // } | 1186 | // } |
1186 | } | 1187 | } |
1187 | 1188 | ||
1188 | void PlayListWidget::doBlank() { | 1189 | void PlayListWidget::doBlank() { |
1189 | qDebug("do blanking"); | 1190 | qDebug("do blanking"); |
1190 | fd=open("/dev/fb0",O_RDWR); | 1191 | fd=open("/dev/fb0",O_RDWR); |
1191 | if (fd != -1) { | 1192 | if (fd != -1) { |
1192 | ioctl(fd,FBIOBLANK,1); | 1193 | ioctl(fd,FBIOBLANK,1); |
1193 | // close(fd); | 1194 | // close(fd); |
1194 | } | 1195 | } |
1195 | } | 1196 | } |
1196 | 1197 | ||
1197 | void PlayListWidget::doUnblank() { | 1198 | void PlayListWidget::doUnblank() { |
1198 | // this crashes opieplayer with a segfault | 1199 | // this crashes opieplayer with a segfault |
1199 | // int fd; | 1200 | // int fd; |
1200 | // fd=open("/dev/fb0",O_RDWR); | 1201 | // fd=open("/dev/fb0",O_RDWR); |
1201 | qDebug("do unblanking"); | 1202 | qDebug("do unblanking"); |
1202 | if (fd != -1) { | 1203 | if (fd != -1) { |
1203 | ioctl(fd,FBIOBLANK,0); | 1204 | ioctl(fd,FBIOBLANK,0); |
1204 | close(fd); | 1205 | close(fd); |
1205 | } | 1206 | } |
1206 | QCopEnvelope h("QPE/System", "setBacklight(int)"); | 1207 | QCopEnvelope h("QPE/System", "setBacklight(int)"); |
1207 | h <<-3;// v[1]; // -3 Force on | 1208 | h <<-3;// v[1]; // -3 Force on |
1208 | } | 1209 | } |
1209 | 1210 | ||
1210 | void PlayListWidget::readm3u(const QString &filename) { | 1211 | void PlayListWidget::readm3u(const QString &filename) { |
1211 | 1212 | ||
1212 | qDebug("m3u filename is "+filename); | 1213 | qDebug("m3u filename is "+filename); |
1213 | QFile f(filename); | 1214 | QFile f(filename); |
1214 | 1215 | ||
1215 | if(f.open(IO_ReadOnly)) { | 1216 | if(f.open(IO_ReadOnly)) { |
1216 | QTextStream t(&f); | 1217 | QTextStream t(&f); |
1217 | QString s;//, first, second; | 1218 | QString s;//, first, second; |
1218 | int i=0; | 1219 | int i=0; |
1219 | while ( !t.atEnd()) { | 1220 | while ( !t.atEnd()) { |
1220 | // Lview->insertLine(t.readLine(),-1); | 1221 | // Lview->insertLine(t.readLine(),-1); |
1221 | s=t.readLine(); | 1222 | s=t.readLine(); |
1222 | if(s.find(" ",0,TRUE) != -1 || s.find("%20",0,TRUE) != -1) { | 1223 | if(s.find(" ",0,TRUE) != -1 || s.find("%20",0,TRUE) != -1) { |
1223 | QMessageBox::message("Note","Spaces in urls are not allowed."); | 1224 | QMessageBox::message("Note","Spaces in urls are not allowed."); |
1224 | } | 1225 | } |
1225 | else if(s.find("#",0,TRUE) == -1) { | 1226 | else if(s.find("#",0,TRUE) == -1) { |
1226 | if(s.find(" ",0,TRUE) == -1) { // not sure if this is neede since cf uses vfat | 1227 | if(s.find(" ",0,TRUE) == -1) { // not sure if this is neede since cf uses vfat |
1227 | if(s.left(2) == "E:" || s.left(2) == "P:") { | 1228 | if(s.left(2) == "E:" || s.left(2) == "P:") { |
1228 | s=s.right(s.length()-2); | 1229 | s=s.right(s.length()-2); |
1229 | DocLnk lnk( s ); | 1230 | DocLnk lnk( s ); |
1230 | QFileInfo f(s); | 1231 | QFileInfo f(s); |
1231 | QString name = f.baseName(); | 1232 | QString name = f.baseName(); |
1232 | name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); | 1233 | name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); |
1233 | lnk.setName( name); | 1234 | lnk.setName( name); |
1234 | s=s.replace( QRegExp("\\"),"/"); | 1235 | s=s.replace( QRegExp("\\"),"/"); |
1235 | lnk.setFile( s); | 1236 | lnk.setFile( s); |
1237 | lnk.writeLink(); | ||
1236 | // lnk.setIcon(opieplayer/MPEGPlayer); | 1238 | // lnk.setIcon(opieplayer/MPEGPlayer); |
1237 | qDebug("add "+name); | 1239 | qDebug("add "+name); |
1238 | d->selectedFiles->addToSelection( lnk); | 1240 | d->selectedFiles->addToSelection( lnk); |
1239 | } else { // is url | 1241 | } else { // is url |
1240 | 1242 | ||
1241 | s.replace(QRegExp("%20")," "); | 1243 | s.replace(QRegExp("%20")," "); |
1242 | DocLnk lnk( s); | 1244 | DocLnk lnk( s); |
1243 | QString name = s.right( s.length() - 7); | 1245 | QString name; |
1246 | if(name.left(4)=="http") | ||
1247 | name = s.right( s.length() - 7); | ||
1248 | else | ||
1249 | name=s; | ||
1244 | // name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); | 1250 | // name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); |
1245 | lnk.setName(name); | 1251 | lnk.setName(name); |
1246 | lnk.setFile( s+"/"); | 1252 | if(s.at(s.length()-4) == '.') |
1253 | lnk.setFile( s); | ||
1254 | else | ||
1255 | lnk.setFile( s+"/"); | ||
1247 | // lnk.setFile( filename); | 1256 | // lnk.setFile( filename); |
1248 | // lnk.setComment( s+"/"); | 1257 | // lnk.setComment( s+"/"); |
1249 | lnk.setType("audio/x-mpegurl"); | 1258 | lnk.setType("audio/x-mpegurl"); |
1259 | lnk.writeLink(); | ||
1250 | // lnk.setIcon( "opieplayer/MPEGPlayer"); | 1260 | // lnk.setIcon( "opieplayer/MPEGPlayer"); |
1251 | // qDebug("add "+s); | 1261 | // qDebug("add "+s); |
1252 | d->selectedFiles->addToSelection( lnk); | 1262 | d->selectedFiles->addToSelection( lnk); |
1253 | } | 1263 | } |
1254 | i++; | 1264 | i++; |
1255 | } | 1265 | } |
1256 | } | 1266 | } |
1257 | } | 1267 | } |
1258 | } | 1268 | } |
1259 | f.close(); | 1269 | f.close(); |
1260 | } | 1270 | } |
1261 | 1271 | ||
1262 | void PlayListWidget::writem3u(const QString &filename) { | 1272 | void PlayListWidget::writem3u(const QString &filename) { |
1263 | 1273 | ||
1264 | } | 1274 | } |
1265 | 1275 | ||
1266 | void PlayListWidget::readPls(const QString &filename) { | 1276 | void PlayListWidget::readPls(const QString &filename) { |
1267 | 1277 | ||
1268 | qDebug("pls filename is "+filename); | 1278 | qDebug("pls filename is "+filename); |
1269 | QFile f(filename); | 1279 | QFile f(filename); |
1270 | 1280 | ||
1271 | if(f.open(IO_ReadOnly)) { | 1281 | if(f.open(IO_ReadOnly)) { |
1272 | QTextStream t(&f); | 1282 | QTextStream t(&f); |
1273 | QString s;//, first, second; | 1283 | QString s;//, first, second; |
1274 | int i=0; | 1284 | int i=0; |
1275 | while ( !t.atEnd()) { | 1285 | while ( !t.atEnd()) { |
1276 | s=t.readLine(); | 1286 | s=t.readLine(); |
1277 | if(s.left(4) == "File") { | 1287 | if(s.left(4) == "File") { |
1278 | s=s.right(s.length() - 6); | 1288 | s=s.right(s.length() - 6); |
1279 | s.replace(QRegExp("%20")," "); | 1289 | s.replace(QRegExp("%20")," "); |
1280 | qDebug("adding "+s+" to playlist"); | 1290 | qDebug("adding "+s+" to playlist"); |
1281 | // numberofentries=2 | 1291 | // numberofentries=2 |
1282 | // File1=http | 1292 | // File1=http |
1283 | // Title | 1293 | // Title |
1284 | // Length | 1294 | // Length |
1285 | // Version | 1295 | // Version |
1286 | // File2=http | 1296 | // File2=http |
1287 | 1297 | ||
1288 | s=s.replace( QRegExp("\\"),"/"); | 1298 | s=s.replace( QRegExp("\\"),"/"); |
1289 | // Lview->insertLine(t.readLine(),-1); | 1299 | // Lview->insertLine(t.readLine(),-1); |
1290 | // s=t.readLine(); | 1300 | // s=t.readLine(); |
1291 | // s=s.right(s.length()-2); | 1301 | // s=s.right(s.length()-2); |
1292 | DocLnk lnk( s ); | 1302 | DocLnk lnk( s ); |
1293 | QFileInfo f(s); | 1303 | QFileInfo f(s); |
1294 | QString name = f.baseName(); | 1304 | QString name = f.baseName(); |
1295 | name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); | 1305 | name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); |
1296 | // QFileInfo f(s); | 1306 | // QFileInfo f(s); |
1297 | // QString name = f.baseName(); | 1307 | // QString name = f.baseName(); |
1298 | // // name = name.left(name.length()-4); | 1308 | // // name = name.left(name.length()-4); |
1299 | // name = name.right(name.findRev("/",0,TRUE)); | 1309 | // name = name.right(name.findRev("/",0,TRUE)); |
1300 | lnk.setName( name); | 1310 | lnk.setName( name); |
1301 | lnk.setFile( s+"/"); | 1311 | lnk.setFile( s+"/"); |
1302 | lnk.setType("audio/x-mpegurl"); | 1312 | lnk.setType("audio/x-mpegurl"); |
1303 | 1313 | ||
1304 | qDebug("DocLnk add "+name); | 1314 | qDebug("DocLnk add "+name); |
1305 | d->selectedFiles->addToSelection( lnk); | 1315 | d->selectedFiles->addToSelection( lnk); |
1306 | } | 1316 | } |
1307 | } | 1317 | } |
1308 | i++; | 1318 | i++; |
1309 | } | 1319 | } |
1310 | } | 1320 | } |
1311 | 1321 | ||