author | llornkcor <llornkcor> | 2002-11-14 03:14:00 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-14 03:14:00 (UTC) |
commit | 5250e8571646f422a0830adcb137df8332ec0fe7 (patch) (side-by-side diff) | |
tree | 6409f4ced4259f37705e4289baedba6ad02e098a | |
parent | 4a60497bd689bd01ca301378f382bff6863b592e (diff) | |
download | opie-5250e8571646f422a0830adcb137df8332ec0fe7.zip opie-5250e8571646f422a0830adcb137df8332ec0fe7.tar.gz opie-5250e8571646f422a0830adcb137df8332ec0fe7.tar.bz2 |
dont try to find media anymore
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.cpp | 48 |
1 files changed, 26 insertions, 22 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp index 6bedb57..16467c0 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp @@ -708,73 +708,77 @@ void PlayListWidget::populateAudioView() { audioView->clear(); StorageInfo storageInfo; const QList<FileSystem> &fs = storageInfo.fileSystems(); if(!audioScan) { scanForAudio(); } QListIterator<DocLnk> dit( files.children() ); - QListIterator<FileSystem> it ( fs ); + // QListIterator<FileSystem> it ( fs ); + audioView->clear(); QString storage; - for ( ; dit.current(); ++dit ) { - for( ; it.current(); ++it ){ - const QString name = (*it)->name(); - const QString path = (*it)->path(); - if(dit.current()->file().find(path) != -1 ) { - storage = name; - } - } + for ( ; dit.current(); ++dit ) { +// // for( ; it.current(); ++it ){ +// const QString name = (*dit)->name(); +// const QString path = (*dit)->path(); +// if(dit.current()->file().find(path) != -1 ) { +// storage = name; +// // } +// } QListViewItem * newItem; if ( QFile( dit.current()->file()).exists() || dit.current()->file().left(4) == "http" ) { long size; if( dit.current()->file().left(4) == "http" ) size=0; else size = QFile( dit.current()->file() ).size(); + newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), - QString::number(size ), storage, dit.current()->file()); + QString::number(size ), "" /*storage*/, + dit.current()->file() ); newItem->setPixmap( 0, Resource::loadPixmap( "opieplayer2/musicfile" ) ); - } +// qDebug("<<<< "+dit.current()->file()); + } } audioPopulated=true; } void PlayListWidget::populateVideoView() { videoView->clear(); StorageInfo storageInfo; const QList<FileSystem> &fs = storageInfo.fileSystems(); if(!videoScan ) { scanForVideo(); } QListIterator<DocLnk> Vdit( vFiles.children() ); - QListIterator<FileSystem> it ( fs ); +// QListIterator<FileSystem> it ( fs ); videoView->clear(); QString storage, pathName; - for ( ; Vdit.current(); ++Vdit ) { - for( ; it.current(); ++it ) { - const QString name = (*it)->name(); - const QString path = (*it)->path(); - if( Vdit.current()->file().find(path) != -1 ) { - storage=name; - pathName=path; - } - } + for ( ; Vdit.current(); ++Vdit ) { +// // for( ; it.current(); ++it ) { +// const QString name = (*Vdit)->name(); +// const QString path = (*Vdit)->path(); +// if( Vdit.current()->file().find(path) != -1 ) { +// storage=name; +// pathName=path; +// // } +// } QListViewItem * newItem; if ( QFile( Vdit.current()->file() ).exists() ) { newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), QString::number( QFile( Vdit.current()->file() ).size() ), - storage, Vdit.current()->file()); + ""/*storage*/, Vdit.current()->file()); newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" ) ); } } videoPopulated=true; } void PlayListWidget::openFile() { |