author | llornkcor <llornkcor> | 2002-11-10 15:09:42 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-10 15:09:42 (UTC) |
commit | 1486b6f940adde3cd80592e436e8e025045d7f8e (patch) (unidiff) | |
tree | c7e0add7b96a10cbd5095bdfd2845c4e063ebccb | |
parent | 521b993fb4175e699e9ac832c50558af0354ca25 (diff) | |
download | opie-1486b6f940adde3cd80592e436e8e025045d7f8e.zip opie-1486b6f940adde3cd80592e436e8e025045d7f8e.tar.gz opie-1486b6f940adde3cd80592e436e8e025045d7f8e.tar.bz2 |
need a default m3u to write too
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp index 7ada5ee..75c7332 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp | |||
@@ -704,16 +704,18 @@ void PlayListWidget::populateVideoView() { | |||
704 | storage, Vdit.current()->file()); | 704 | storage, Vdit.current()->file()); |
705 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" ) ); | 705 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" ) ); |
706 | } | 706 | } |
707 | } | 707 | } |
708 | } | 708 | } |
709 | 709 | ||
710 | 710 | ||
711 | void PlayListWidget::openFile() { | 711 | void PlayListWidget::openFile() { |
712 | // http://66.28.164.33:2080 | ||
713 | // http://somafm.com/star0242.m3u | ||
712 | QString filename, name; | 714 | QString filename, name; |
713 | InputDialog *fileDlg; | 715 | InputDialog *fileDlg; |
714 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); | 716 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); |
715 | fileDlg->exec(); | 717 | fileDlg->exec(); |
716 | if( fileDlg->result() == 1 ) { | 718 | if( fileDlg->result() == 1 ) { |
717 | filename = fileDlg->text(); | 719 | filename = fileDlg->text(); |
718 | qDebug( "Selected filename is " + filename ); | 720 | qDebug( "Selected filename is " + filename ); |
719 | Om3u *m3uList; | 721 | Om3u *m3uList; |
@@ -854,17 +856,17 @@ void PlayListWidget::readPls( const QString &filename ) { | |||
854 | } | 856 | } |
855 | 857 | ||
856 | /* | 858 | /* |
857 | writes current playlist to current m3u file */ | 859 | writes current playlist to current m3u file */ |
858 | void PlayListWidget::writeCurrentM3u() { | 860 | void PlayListWidget::writeCurrentM3u() { |
859 | qDebug("writing to current m3u"); | 861 | qDebug("writing to current m3u"); |
860 | Config cfg( "OpiePlayer" ); | 862 | Config cfg( "OpiePlayer" ); |
861 | cfg.setGroup("PlayList"); | 863 | cfg.setGroup("PlayList"); |
862 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); | 864 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist","default"); |
863 | 865 | ||
864 | if( d->selectedFiles->first()) { | 866 | if( d->selectedFiles->first()) { |
865 | Om3u *m3uList; | 867 | Om3u *m3uList; |
866 | m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate ); | 868 | m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate ); |
867 | 869 | ||
868 | do { | 870 | do { |
869 | qDebug( "writeCurrentM3u " +d->selectedFiles->current()->file()); | 871 | qDebug( "writeCurrentM3u " +d->selectedFiles->current()->file()); |
870 | m3uList->add( d->selectedFiles->current()->file() ); | 872 | m3uList->add( d->selectedFiles->current()->file() ); |