author | llornkcor <llornkcor> | 2002-09-01 14:50:06 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-09-01 14:50:06 (UTC) |
commit | 4602b00b2d76fca5c9ab86a589192f6bdb1e7ee7 (patch) (unidiff) | |
tree | 4371833546bed60c7e4d48db8527781c57533bec | |
parent | 2dab5b4aa31d795e968f81eb053ab507d96ff541 (diff) | |
download | opie-4602b00b2d76fca5c9ab86a589192f6bdb1e7ee7.zip opie-4602b00b2d76fca5c9ab86a589192f6bdb1e7ee7.tar.gz opie-4602b00b2d76fca5c9ab86a589192f6bdb1e7ee7.tar.bz2 |
fix for bug 0000014
-rw-r--r-- | core/launcher/launcherview.cpp | 2 | ||||
-rw-r--r-- | core/multimedia/opieplayer/playlistwidget.cpp | 10 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.cpp | 11 |
3 files changed, 15 insertions, 8 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp index 0ced256..c54a00f 100644 --- a/core/launcher/launcherview.cpp +++ b/core/launcher/launcherview.cpp | |||
@@ -568,65 +568,65 @@ void LauncherView::itemClicked( int btn, QIconViewItem *item ) | |||
568 | if ( item ) { | 568 | if ( item ) { |
569 | AppLnk *appLnk = ((LauncherItem *)item)->appLnk(); | 569 | AppLnk *appLnk = ((LauncherItem *)item)->appLnk(); |
570 | if ( btn == LeftButton ) { | 570 | if ( btn == LeftButton ) { |
571 | // Make sure it's the item we execute that gets highlighted | 571 | // Make sure it's the item we execute that gets highlighted |
572 | icons->setCurrentItem( item ); | 572 | icons->setCurrentItem( item ); |
573 | emit clicked( appLnk ); | 573 | emit clicked( appLnk ); |
574 | } | 574 | } |
575 | item->setSelected(FALSE); | 575 | item->setSelected(FALSE); |
576 | } | 576 | } |
577 | } | 577 | } |
578 | 578 | ||
579 | void LauncherView::itemPressed( int btn, QIconViewItem *item ) | 579 | void LauncherView::itemPressed( int btn, QIconViewItem *item ) |
580 | { | 580 | { |
581 | if ( item ) { | 581 | if ( item ) { |
582 | AppLnk *appLnk = ((LauncherItem *)item)->appLnk(); | 582 | AppLnk *appLnk = ((LauncherItem *)item)->appLnk(); |
583 | if ( btn == RightButton ) | 583 | if ( btn == RightButton ) |
584 | emit rightPressed( appLnk ); | 584 | emit rightPressed( appLnk ); |
585 | /* | 585 | /* |
586 | else if ( btn == LeftButton ) | 586 | else if ( btn == LeftButton ) |
587 | emit clicked( appLnk ); | 587 | emit clicked( appLnk ); |
588 | */ | 588 | */ |
589 | item->setSelected(FALSE); | 589 | item->setSelected(FALSE); |
590 | } | 590 | } |
591 | } | 591 | } |
592 | 592 | ||
593 | void LauncherView::internalPopulate( AppLnkSet *folder, const QString& typefilter ) | 593 | void LauncherView::internalPopulate( AppLnkSet *folder, const QString& typefilter ) |
594 | { | 594 | { |
595 | QListIterator<AppLnk> it( folder->children() ); | 595 | QListIterator<AppLnk> it( folder->children() ); |
596 | icons->setTypeFilter(typefilter,FALSE); | 596 | icons->setTypeFilter(typefilter,FALSE); |
597 | 597 | ||
598 | while ( it.current() ) { | 598 | while ( it.current() ) { |
599 | // show only the icons for existing files | 599 | // show only the icons for existing files |
600 | if (!QFile(it.current()->file()).exists() ) | 600 | if (!QFile(it.current()->file()).exists() & it.current()->file().left(4) != "http") |
601 | { | 601 | { |
602 | //maybe insert some .desktop file deletion code later | 602 | //maybe insert some .desktop file deletion code later |
603 | //maybe dir specific | 603 | //maybe dir specific |
604 | } | 604 | } |
605 | else | 605 | else |
606 | { | 606 | { |
607 | icons->addItem(*it,FALSE); | 607 | icons->addItem(*it,FALSE); |
608 | } | 608 | } |
609 | ++it; | 609 | ++it; |
610 | } | 610 | } |
611 | 611 | ||
612 | icons->sort(); | 612 | icons->sort(); |
613 | } | 613 | } |
614 | 614 | ||
615 | bool LauncherView::removeLink(const QString& linkfile) | 615 | bool LauncherView::removeLink(const QString& linkfile) |
616 | { | 616 | { |
617 | return icons->removeLink(linkfile); | 617 | return icons->removeLink(linkfile); |
618 | } | 618 | } |
619 | 619 | ||
620 | void LauncherView::sort() | 620 | void LauncherView::sort() |
621 | { | 621 | { |
622 | icons->sort(); | 622 | icons->sort(); |
623 | } | 623 | } |
624 | 624 | ||
625 | void LauncherView::addItem(AppLnk* app, bool resort) | 625 | void LauncherView::addItem(AppLnk* app, bool resort) |
626 | { | 626 | { |
627 | icons->addItem(app,resort); | 627 | icons->addItem(app,resort); |
628 | } | 628 | } |
629 | 629 | ||
630 | void LauncherView::setFileSystems(const QList<FileSystem> &) | 630 | void LauncherView::setFileSystems(const QList<FileSystem> &) |
631 | { | 631 | { |
632 | // ### does nothing now... | 632 | // ### does nothing now... |
diff --git a/core/multimedia/opieplayer/playlistwidget.cpp b/core/multimedia/opieplayer/playlistwidget.cpp index 65dc5fb..8d66407 100644 --- a/core/multimedia/opieplayer/playlistwidget.cpp +++ b/core/multimedia/opieplayer/playlistwidget.cpp | |||
@@ -1001,68 +1001,72 @@ void PlayListWidget::scanForAudio() { | |||
1001 | audioScan = TRUE; | 1001 | audioScan = TRUE; |
1002 | } | 1002 | } |
1003 | void PlayListWidget::scanForVideo() { | 1003 | void PlayListWidget::scanForVideo() { |
1004 | qDebug("scan for video"); | 1004 | qDebug("scan for video"); |
1005 | vFiles.detachChildren(); | 1005 | vFiles.detachChildren(); |
1006 | QListIterator<DocLnk> sdit( vFiles.children() ); | 1006 | QListIterator<DocLnk> sdit( vFiles.children() ); |
1007 | for ( ; sdit.current(); ++sdit ) { | 1007 | for ( ; sdit.current(); ++sdit ) { |
1008 | delete sdit.current(); | 1008 | delete sdit.current(); |
1009 | } | 1009 | } |
1010 | Global::findDocuments(&vFiles, "video/*"); | 1010 | Global::findDocuments(&vFiles, "video/*"); |
1011 | videoScan = TRUE; | 1011 | videoScan = TRUE; |
1012 | } | 1012 | } |
1013 | 1013 | ||
1014 | void PlayListWidget::populateAudioView() { | 1014 | void PlayListWidget::populateAudioView() { |
1015 | 1015 | ||
1016 | audioView->clear(); | 1016 | audioView->clear(); |
1017 | StorageInfo storageInfo; | 1017 | StorageInfo storageInfo; |
1018 | const QList<FileSystem> &fs = storageInfo.fileSystems(); | 1018 | const QList<FileSystem> &fs = storageInfo.fileSystems(); |
1019 | if(!audioScan) scanForAudio(); | 1019 | if(!audioScan) scanForAudio(); |
1020 | 1020 | ||
1021 | QListIterator<DocLnk> dit( files.children() ); | 1021 | QListIterator<DocLnk> dit( files.children() ); |
1022 | QListIterator<FileSystem> it ( fs ); | 1022 | QListIterator<FileSystem> it ( fs ); |
1023 | 1023 | ||
1024 | QString storage; | 1024 | QString storage; |
1025 | for ( ; dit.current(); ++dit ) { | 1025 | for ( ; dit.current(); ++dit ) { |
1026 | for( ; it.current(); ++it ){ | 1026 | for( ; it.current(); ++it ){ |
1027 | const QString name = (*it)->name(); | 1027 | const QString name = (*it)->name(); |
1028 | const QString path = (*it)->path(); | 1028 | const QString path = (*it)->path(); |
1029 | if(dit.current()->file().find(path) != -1 ) storage=name; | 1029 | if(dit.current()->file().find(path) != -1 ) storage=name; |
1030 | } | 1030 | } |
1031 | 1031 | ||
1032 | QListViewItem * newItem; | 1032 | QListViewItem * newItem; |
1033 | if ( QFile( dit.current()->file()).exists() ) { | 1033 | if ( QFile( dit.current()->file()).exists() || dit.current()->file().left(4) == "http" ) { |
1034 | // qDebug(dit.current()->name()); | 1034 | long size; |
1035 | if( dit.current()->file().left(4) == "http" ) | ||
1036 | size=0; | ||
1037 | else | ||
1038 | size = QFile( dit.current()->file() ).size(); | ||
1035 | newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), | 1039 | newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), |
1036 | QString::number( QFile( dit.current()->file()).size() ), storage); | 1040 | QString::number(size ), storage); |
1037 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer/musicfile" )); | 1041 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer/musicfile" )); |
1038 | } | 1042 | } |
1039 | } | 1043 | } |
1040 | 1044 | ||
1041 | } | 1045 | } |
1042 | 1046 | ||
1043 | void PlayListWidget::populateVideoView() { | 1047 | void PlayListWidget::populateVideoView() { |
1044 | videoView->clear(); | 1048 | videoView->clear(); |
1045 | StorageInfo storageInfo; | 1049 | StorageInfo storageInfo; |
1046 | const QList<FileSystem> &fs = storageInfo.fileSystems(); | 1050 | const QList<FileSystem> &fs = storageInfo.fileSystems(); |
1047 | 1051 | ||
1048 | if(!videoScan ) scanForVideo(); | 1052 | if(!videoScan ) scanForVideo(); |
1049 | 1053 | ||
1050 | QListIterator<DocLnk> Vdit( vFiles.children() ); | 1054 | QListIterator<DocLnk> Vdit( vFiles.children() ); |
1051 | QListIterator<FileSystem> it ( fs ); | 1055 | QListIterator<FileSystem> it ( fs ); |
1052 | videoView->clear(); | 1056 | videoView->clear(); |
1053 | QString storage; | 1057 | QString storage; |
1054 | for ( ; Vdit.current(); ++Vdit ) { | 1058 | for ( ; Vdit.current(); ++Vdit ) { |
1055 | for( ; it.current(); ++it ){ | 1059 | for( ; it.current(); ++it ){ |
1056 | const QString name = (*it)->name(); | 1060 | const QString name = (*it)->name(); |
1057 | const QString path = (*it)->path(); | 1061 | const QString path = (*it)->path(); |
1058 | if( Vdit.current()->file().find(path) != -1 ) storage=name; | 1062 | if( Vdit.current()->file().find(path) != -1 ) storage=name; |
1059 | } | 1063 | } |
1060 | 1064 | ||
1061 | QListViewItem * newItem; | 1065 | QListViewItem * newItem; |
1062 | if ( QFile( Vdit.current()->file()).exists() ) { | 1066 | if ( QFile( Vdit.current()->file()).exists() ) { |
1063 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), | 1067 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), |
1064 | QString::number( QFile( Vdit.current()->file()).size() ), storage); | 1068 | QString::number( QFile( Vdit.current()->file()).size() ), storage); |
1065 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer/videofile" )); | 1069 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer/videofile" )); |
1066 | } | 1070 | } |
1067 | } | 1071 | } |
1068 | } | 1072 | } |
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp index 603a7a3..6c4d07f 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp | |||
@@ -700,68 +700,71 @@ void PlayListWidget::scanForVideo() { | |||
700 | // qDebug("scan for video"); | 700 | // qDebug("scan for video"); |
701 | vFiles.detachChildren(); | 701 | vFiles.detachChildren(); |
702 | QListIterator<DocLnk> sdit( vFiles.children() ); | 702 | QListIterator<DocLnk> sdit( vFiles.children() ); |
703 | for ( ; sdit.current(); ++sdit ) { | 703 | for ( ; sdit.current(); ++sdit ) { |
704 | delete sdit.current(); | 704 | delete sdit.current(); |
705 | } | 705 | } |
706 | Global::findDocuments(&vFiles, "video/*"); | 706 | Global::findDocuments(&vFiles, "video/*"); |
707 | videoScan = TRUE; | 707 | videoScan = TRUE; |
708 | } | 708 | } |
709 | 709 | ||
710 | void PlayListWidget::populateAudioView() { | 710 | void PlayListWidget::populateAudioView() { |
711 | audioView->clear(); | 711 | audioView->clear(); |
712 | StorageInfo storageInfo; | 712 | StorageInfo storageInfo; |
713 | const QList<FileSystem> &fs = storageInfo.fileSystems(); | 713 | const QList<FileSystem> &fs = storageInfo.fileSystems(); |
714 | if(!audioScan) { | 714 | if(!audioScan) { |
715 | scanForAudio(); | 715 | scanForAudio(); |
716 | } | 716 | } |
717 | 717 | ||
718 | QListIterator<DocLnk> dit( files.children() ); | 718 | QListIterator<DocLnk> dit( files.children() ); |
719 | QListIterator<FileSystem> it ( fs ); | 719 | QListIterator<FileSystem> it ( fs ); |
720 | 720 | ||
721 | QString storage; | 721 | QString storage; |
722 | for ( ; dit.current(); ++dit ) { | 722 | for ( ; dit.current(); ++dit ) { |
723 | for( ; it.current(); ++it ){ | 723 | for( ; it.current(); ++it ){ |
724 | const QString name = (*it)->name(); | 724 | const QString name = (*it)->name(); |
725 | const QString path = (*it)->path(); | 725 | const QString path = (*it)->path(); |
726 | if(dit.current()->file().find(path) != -1 ) { | 726 | if(dit.current()->file().find(path) != -1 ) { |
727 | storage = name; | 727 | storage = name; |
728 | } | 728 | } |
729 | } | 729 | } |
730 | 730 | ||
731 | QListViewItem * newItem; | 731 | QListViewItem * newItem; |
732 | if ( QFile( dit.current()->file()).exists() ) { | 732 | if ( QFile( dit.current()->file()).exists() || dit.current()->file().left(4) == "http" ) { |
733 | // qDebug(dit.current()->name()); | 733 | long size; |
734 | newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), | 734 | if( dit.current()->file().left(4) == "http" ) |
735 | QString::number( QFile( dit.current()->file()).size() ), storage); | 735 | size=0; |
736 | else | ||
737 | size = QFile( dit.current()->file() ).size(); | ||
738 | newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), QString::number(size ), storage); | ||
736 | newItem->setPixmap( 0, Resource::loadPixmap( "opieplayer2/musicfile" ) ); | 739 | newItem->setPixmap( 0, Resource::loadPixmap( "opieplayer2/musicfile" ) ); |
737 | } | 740 | } |
738 | } | 741 | } |
739 | } | 742 | } |
740 | 743 | ||
741 | 744 | ||
742 | void PlayListWidget::populateVideoView() { | 745 | void PlayListWidget::populateVideoView() { |
743 | videoView->clear(); | 746 | videoView->clear(); |
744 | StorageInfo storageInfo; | 747 | StorageInfo storageInfo; |
745 | const QList<FileSystem> &fs = storageInfo.fileSystems(); | 748 | const QList<FileSystem> &fs = storageInfo.fileSystems(); |
746 | 749 | ||
747 | if(!videoScan ) { | 750 | if(!videoScan ) { |
748 | scanForVideo(); | 751 | scanForVideo(); |
749 | } | 752 | } |
750 | 753 | ||
751 | QListIterator<DocLnk> Vdit( vFiles.children() ); | 754 | QListIterator<DocLnk> Vdit( vFiles.children() ); |
752 | QListIterator<FileSystem> it ( fs ); | 755 | QListIterator<FileSystem> it ( fs ); |
753 | videoView->clear(); | 756 | videoView->clear(); |
754 | QString storage; | 757 | QString storage; |
755 | for ( ; Vdit.current(); ++Vdit ) { | 758 | for ( ; Vdit.current(); ++Vdit ) { |
756 | for( ; it.current(); ++it ) { | 759 | for( ; it.current(); ++it ) { |
757 | const QString name = (*it)->name(); | 760 | const QString name = (*it)->name(); |
758 | const QString path = (*it)->path(); | 761 | const QString path = (*it)->path(); |
759 | if( Vdit.current()->file().find(path) != -1 ) { | 762 | if( Vdit.current()->file().find(path) != -1 ) { |
760 | storage=name; | 763 | storage=name; |
761 | } | 764 | } |
762 | } | 765 | } |
763 | 766 | ||
764 | QListViewItem * newItem; | 767 | QListViewItem * newItem; |
765 | if ( QFile( Vdit.current()->file() ).exists() ) { | 768 | if ( QFile( Vdit.current()->file() ).exists() ) { |
766 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), | 769 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), |
767 | QString::number( QFile( Vdit.current()->file() ).size() ), storage ); | 770 | QString::number( QFile( Vdit.current()->file() ).size() ), storage ); |