-rw-r--r-- | noncore/multimedia/opieplayer2/inputDialog.cpp | 15 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.cpp | 30 |
2 files changed, 29 insertions, 16 deletions
diff --git a/noncore/multimedia/opieplayer2/inputDialog.cpp b/noncore/multimedia/opieplayer2/inputDialog.cpp index 62240b2..2c4be1b 100644 --- a/noncore/multimedia/opieplayer2/inputDialog.cpp +++ b/noncore/multimedia/opieplayer2/inputDialog.cpp | |||
@@ -1,62 +1,69 @@ | |||
1 | #include "inputDialog.h" | 1 | #include "inputDialog.h" |
2 | 2 | ||
3 | #include <qpe/resource.h> | 3 | #include <qpe/resource.h> |
4 | 4 | #include <qpe/qpeapplication.h> | |
5 | #include <qpe/config.h> | ||
5 | #include <opie/ofiledialog.h> | 6 | #include <opie/ofiledialog.h> |
6 | 7 | ||
8 | #include <qfileinfo.h> | ||
7 | #include <qlineedit.h> | 9 | #include <qlineedit.h> |
8 | #include <qlayout.h> | 10 | #include <qlayout.h> |
9 | #include <qvariant.h> | 11 | #include <qvariant.h> |
10 | #include <qpushbutton.h> | 12 | #include <qpushbutton.h> |
11 | #include <qwhatsthis.h> | 13 | #include <qwhatsthis.h> |
12 | 14 | ||
13 | InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) | 15 | InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) |
14 | : QDialog( parent, name, modal, fl ) { | 16 | : QDialog( parent, name, modal, fl ) { |
15 | if ( !name ) { | 17 | if ( !name ) { |
16 | setName( "InputDialog" ); | 18 | setName( "InputDialog" ); |
17 | } | 19 | } |
18 | resize( 234, 115); | 20 | resize( 234, 115); |
19 | setMaximumSize( QSize( 240, 40)); | 21 | setMaximumSize( QSize( 240, 40)); |
20 | setCaption( tr( name ) ); | 22 | setCaption( tr( name ) ); |
21 | 23 | ||
22 | QPushButton *browserButton; | 24 | QPushButton *browserButton; |
23 | browserButton = new QPushButton( Resource::loadIconSet("fileopen"),"",this,"BrowseButton"); | 25 | browserButton = new QPushButton( Resource::loadIconSet("fileopen"),"",this,"BrowseButton"); |
24 | browserButton->setGeometry( QRect( 205, 10, 22, 22)); | 26 | browserButton->setGeometry( QRect( 205, 10, 22, 22)); |
25 | connect( browserButton, SIGNAL(released()),this,SLOT(browse())); | 27 | connect( browserButton, SIGNAL(released()),this,SLOT(browse())); |
26 | LineEdit1 = new QLineEdit( this, "LineEdit1" ); | 28 | LineEdit1 = new QLineEdit( this, "LineEdit1" ); |
27 | LineEdit1->setGeometry( QRect( 4, 10, 190, 22 ) ); | 29 | LineEdit1->setGeometry( QRect( 4, 10, 190, 22 ) ); |
28 | LineEdit1->setFocus(); | 30 | LineEdit1->setFocus(); |
29 | } | 31 | } |
30 | /* | 32 | /* |
31 | * return the current text(input) | 33 | * return the current text(input) |
32 | */ | 34 | */ |
33 | QString InputDialog::text() const { | 35 | QString InputDialog::text() const { |
34 | return LineEdit1->text(); | 36 | return LineEdit1->text(); |
35 | } | 37 | } |
36 | /* | 38 | /* |
37 | * Destroys the object and frees any allocated resources | 39 | * Destroys the object and frees any allocated resources |
38 | */ | 40 | */ |
39 | InputDialog::~InputDialog() { | 41 | InputDialog::~InputDialog() { |
40 | } | 42 | } |
41 | 43 | ||
42 | void InputDialog::browse() { | 44 | void InputDialog::browse() { |
43 | 45 | Config cfg( "OpiePlayer" ); | |
44 | MimeTypes types; | 46 | cfg.setGroup("Dialog"); |
47 | MimeTypes types; | ||
45 | QStringList audio, video, all; | 48 | QStringList audio, video, all; |
46 | audio << "audio/*"; | 49 | audio << "audio/*"; |
47 | audio << "playlist/plain"; | 50 | audio << "playlist/plain"; |
48 | audio << "audio/x-mpegurl"; | 51 | audio << "audio/x-mpegurl"; |
49 | 52 | ||
50 | video << "video/*"; | 53 | video << "video/*"; |
51 | video << "playlist/plain"; | 54 | video << "playlist/plain"; |
52 | 55 | ||
53 | all += audio; | 56 | all += audio; |
54 | all += video; | 57 | all += video; |
55 | types.insert("All Media Files", all ); | 58 | types.insert("All Media Files", all ); |
56 | types.insert("Audio", audio ); | 59 | types.insert("Audio", audio ); |
57 | types.insert("Video", video ); | 60 | types.insert("Video", video ); |
58 | 61 | ||
59 | QString str = OFileDialog::getOpenFileName( 1,"/","", types, 0 ); | 62 | QString str = OFileDialog::getOpenFileName( 1, |
63 | cfg.readEntry("LastDirectory",QPEApplication::documentDir()),"", | ||
64 | types, 0 ); | ||
65 | if(str.left(2) == "//") str=str.right(str.length()-1); | ||
60 | LineEdit1->setText(str); | 66 | LineEdit1->setText(str); |
67 | cfg.writeEntry("LastDirectory" ,QFileInfo(str).dirPath()); | ||
61 | } | 68 | } |
62 | 69 | ||
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp index b15f95e..0825eed 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp | |||
@@ -96,131 +96,131 @@ PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | |||
96 | this,SLOT( scanForAudio() ) ); | 96 | this,SLOT( scanForAudio() ) ); |
97 | (void)new MenuItem( pmPlayList, tr( "Rescan for Video Files" ), | 97 | (void)new MenuItem( pmPlayList, tr( "Rescan for Video Files" ), |
98 | this,SLOT( scanForVideo() ) ); | 98 | this,SLOT( scanForVideo() ) ); |
99 | 99 | ||
100 | pmView->insertItem( Resource::loadPixmap("fullscreen") , tr( "Full Screen"), | 100 | pmView->insertItem( Resource::loadPixmap("fullscreen") , tr( "Full Screen"), |
101 | mediaPlayerState, SLOT( toggleFullscreen() ) ); | 101 | mediaPlayerState, SLOT( toggleFullscreen() ) ); |
102 | 102 | ||
103 | Config cfg( "OpiePlayer" ); | 103 | Config cfg( "OpiePlayer" ); |
104 | bool b= cfg.readBoolEntry("FullScreen", 0); | 104 | bool b= cfg.readBoolEntry("FullScreen", 0); |
105 | mediaPlayerState->setFullscreen( b ); | 105 | mediaPlayerState->setFullscreen( b ); |
106 | pmView->setItemChecked( -16, b ); | 106 | pmView->setItemChecked( -16, b ); |
107 | 107 | ||
108 | (void)new ToolButton( vbox1, tr( "Move Up" ), "opieplayer2/up", | 108 | (void)new ToolButton( vbox1, tr( "Move Up" ), "opieplayer2/up", |
109 | d->selectedFiles, SLOT(moveSelectedUp() ) ); | 109 | d->selectedFiles, SLOT(moveSelectedUp() ) ); |
110 | (void)new ToolButton( vbox1, tr( "Remove" ), "opieplayer2/cut", | 110 | (void)new ToolButton( vbox1, tr( "Remove" ), "opieplayer2/cut", |
111 | d->selectedFiles, SLOT(removeSelected() ) ); | 111 | d->selectedFiles, SLOT(removeSelected() ) ); |
112 | (void)new ToolButton( vbox1, tr( "Move Down" ), "opieplayer2/down", | 112 | (void)new ToolButton( vbox1, tr( "Move Down" ), "opieplayer2/down", |
113 | d->selectedFiles, SLOT(moveSelectedDown() ) ); | 113 | d->selectedFiles, SLOT(moveSelectedDown() ) ); |
114 | QVBox *stretch2 = new QVBox( vbox1 ); | 114 | QVBox *stretch2 = new QVBox( vbox1 ); |
115 | 115 | ||
116 | connect( tbDeletePlaylist, ( SIGNAL( released() ) ), | 116 | connect( tbDeletePlaylist, ( SIGNAL( released() ) ), |
117 | SLOT( deletePlaylist() ) ); | 117 | SLOT( deletePlaylist() ) ); |
118 | connect( pmView, SIGNAL( activated( int ) ), | 118 | connect( pmView, SIGNAL( activated( int ) ), |
119 | this, SLOT( pmViewActivated( int ) ) ); | 119 | this, SLOT( pmViewActivated( int ) ) ); |
120 | connect( skinsMenu, SIGNAL( activated( int ) ) , | 120 | connect( skinsMenu, SIGNAL( activated( int ) ) , |
121 | this, SLOT( skinsMenuActivated( int ) ) ); | 121 | this, SLOT( skinsMenuActivated( int ) ) ); |
122 | connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ), | 122 | connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ), |
123 | this,SLOT( playlistViewPressed( int, QListViewItem *, const QPoint&, int ) ) ); | 123 | this,SLOT( playlistViewPressed( int, QListViewItem *, const QPoint&, int ) ) ); |
124 | connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int ) ), | 124 | connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int ) ), |
125 | this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int ) ) ); | 125 | this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int ) ) ); |
126 | connect( audioView, SIGNAL( returnPressed( QListViewItem *) ), | 126 | connect( audioView, SIGNAL( returnPressed( QListViewItem *) ), |
127 | this,SLOT( playIt( QListViewItem *) ) ); | 127 | this,SLOT( playIt( QListViewItem *) ) ); |
128 | connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), | 128 | connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), |
129 | this, SLOT( addToSelection( QListViewItem *) ) ); | 129 | this, SLOT( addToSelection( QListViewItem *) ) ); |
130 | connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ), | 130 | connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ), |
131 | this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int) ) ); | 131 | this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int) ) ); |
132 | connect( videoView, SIGNAL( returnPressed( QListViewItem *) ), | 132 | connect( videoView, SIGNAL( returnPressed( QListViewItem *) ), |
133 | this,SLOT( playIt( QListViewItem *) ) ); | 133 | this,SLOT( playIt( QListViewItem *) ) ); |
134 | connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), | 134 | connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), |
135 | this, SLOT( addToSelection( QListViewItem *) ) ); | 135 | this, SLOT( addToSelection( QListViewItem *) ) ); |
136 | connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), | 136 | connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), |
137 | this, SLOT( loadList( const DocLnk & ) ) ); | 137 | this, SLOT( loadList( const DocLnk & ) ) ); |
138 | connect( tabWidget, SIGNAL ( currentChanged(QWidget*) ), | 138 | connect( tabWidget, SIGNAL ( currentChanged(QWidget*) ), |
139 | this, SLOT( tabChanged( QWidget* ) ) ); | 139 | this, SLOT( tabChanged( QWidget* ) ) ); |
140 | connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), | 140 | connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), |
141 | d->tbPlay, SLOT( setOn( bool ) ) ); | 141 | d->tbPlay, SLOT( setOn( bool ) ) ); |
142 | connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), | 142 | connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), |
143 | d->tbLoop, SLOT( setOn( bool ) ) ); | 143 | d->tbLoop, SLOT( setOn( bool ) ) ); |
144 | connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), | 144 | connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), |
145 | d->tbShuffle, SLOT( setOn( bool ) ) ); | 145 | d->tbShuffle, SLOT( setOn( bool ) ) ); |
146 | connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), | 146 | connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), |
147 | this, SLOT( setPlaylist( bool ) ) ); | 147 | this, SLOT( setPlaylist( bool ) ) ); |
148 | connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), | 148 | connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), |
149 | this, SLOT( playIt( QListViewItem *) ) ); | 149 | this, SLOT( playIt( QListViewItem *) ) ); |
150 | connect ( gammaSlider, SIGNAL( valueChanged( int ) ), | 150 | connect ( gammaSlider, SIGNAL( valueChanged( int ) ), |
151 | mediaPlayerState, SLOT( setVideoGamma( int ) ) ); | 151 | mediaPlayerState, SLOT( setVideoGamma( int ) ) ); |
152 | 152 | ||
153 | // see which skins are installed | 153 | // see which skins are installed |
154 | videoScan=FALSE; | 154 | videoScan=FALSE; |
155 | audioScan=FALSE; | 155 | audioScan=FALSE; |
156 | populateSkinsMenu(); | 156 | populateSkinsMenu(); |
157 | initializeStates(); | 157 | initializeStates(); |
158 | 158 | ||
159 | cfg.setGroup("PlayList"); | 159 | cfg.setGroup("PlayList"); |
160 | QString currentPlaylist = cfg.readEntry( "CurrentPlaylist", "" ); | 160 | QString currentPlaylist = cfg.readEntry( "CurrentPlaylist", "default"); |
161 | loadList(DocLnk( currentPlaylist ) ); | 161 | loadList(DocLnk( currentPlaylist ) ); |
162 | setCaption( tr( "OpiePlayer: " ) + currentPlaylist ); | 162 | |
163 | } | 163 | } |
164 | 164 | ||
165 | 165 | ||
166 | PlayListWidget::~PlayListWidget() { | 166 | PlayListWidget::~PlayListWidget() { |
167 | if ( d->current ) { | 167 | if ( d->current ) { |
168 | delete d->current; | 168 | delete d->current; |
169 | } | 169 | } |
170 | delete d; | 170 | delete d; |
171 | } | 171 | } |
172 | 172 | ||
173 | 173 | ||
174 | void PlayListWidget::initializeStates() { | 174 | void PlayListWidget::initializeStates() { |
175 | d->tbPlay->setOn( mediaPlayerState->playing() ); | 175 | d->tbPlay->setOn( mediaPlayerState->playing() ); |
176 | d->tbLoop->setOn( mediaPlayerState->looping() ); | 176 | d->tbLoop->setOn( mediaPlayerState->looping() ); |
177 | d->tbShuffle->setOn( mediaPlayerState->shuffled() ); | 177 | d->tbShuffle->setOn( mediaPlayerState->shuffled() ); |
178 | setPlaylist( true ); | 178 | setPlaylist( true ); |
179 | } | 179 | } |
180 | 180 | ||
181 | void PlayListWidget::writeDefaultPlaylist() { | 181 | void PlayListWidget::writeDefaultPlaylist() { |
182 | 182 | ||
183 | Config config( "OpiePlayer" ); | 183 | Config config( "OpiePlayer" ); |
184 | config.setGroup( "PlayList" ); | 184 | config.setGroup( "PlayList" ); |
185 | QString filename=QPEApplication::documentDir() + "/default.m3u"; | 185 | QString filename=QPEApplication::documentDir() + "/default.m3u"; |
186 | QString currentString = config.readEntry( "CurrentPlaylist", filename); | 186 | QString currentString = config.readEntry( "CurrentPlaylist", filename); |
187 | if( currentString == filename) { | 187 | if( currentString == filename) { |
188 | Om3u *m3uList; | 188 | Om3u *m3uList; |
189 | // qDebug("<<<<<<<<<<<<<default>>>>>>>>>>>>>>>>>>>"); | 189 | // qDebug("<<<<<<<<<<<<<default>>>>>>>>>>>>>>>>>>>"); |
190 | if( d->selectedFiles->first() ) { | 190 | if( d->selectedFiles->first() ) { |
191 | m3uList = new Om3u(filename, IO_ReadWrite | IO_Truncate); | 191 | m3uList = new Om3u(filename, IO_ReadWrite | IO_Truncate); |
192 | do { | 192 | do { |
193 | // qDebug(d->selectedFiles->current()->file()); | 193 | // qDebug(d->selectedFiles->current()->file()); |
194 | m3uList->add( d->selectedFiles->current()->file() ); | 194 | m3uList->add( d->selectedFiles->current()->file() ); |
195 | } | 195 | } |
196 | while ( d->selectedFiles->next() ); | 196 | while ( d->selectedFiles->next() ); |
197 | 197 | ||
198 | m3uList->write(); | 198 | m3uList->write(); |
199 | m3uList->close(); | 199 | m3uList->close(); |
200 | if(m3uList) delete m3uList; | 200 | if(m3uList) delete m3uList; |
201 | 201 | ||
202 | } | 202 | } |
203 | } | 203 | } |
204 | } | 204 | } |
205 | 205 | ||
206 | void PlayListWidget::addToSelection( const DocLnk& lnk ) { | 206 | void PlayListWidget::addToSelection( const DocLnk& lnk ) { |
207 | d->setDocumentUsed = FALSE; | 207 | d->setDocumentUsed = FALSE; |
208 | if ( mediaPlayerState->playlist() ) { | 208 | if ( mediaPlayerState->playlist() ) { |
209 | if( QFileInfo( lnk.file() ).exists() || | 209 | if( QFileInfo( lnk.file() ).exists() || |
210 | lnk.file().left(4) == "http" ) | 210 | lnk.file().left(4) == "http" ) |
211 | d->selectedFiles->addToSelection( lnk ); | 211 | d->selectedFiles->addToSelection( lnk ); |
212 | // writeCurrentM3u(); | 212 | // writeCurrentM3u(); |
213 | } | 213 | } |
214 | else | 214 | else |
215 | mediaPlayerState->setPlaying( TRUE ); | 215 | mediaPlayerState->setPlaying( TRUE ); |
216 | } | 216 | } |
217 | 217 | ||
218 | 218 | ||
219 | void PlayListWidget::clearList() { | 219 | void PlayListWidget::clearList() { |
220 | while ( first() ) { | 220 | while ( first() ) { |
221 | d->selectedFiles->removeSelected(); | 221 | d->selectedFiles->removeSelected(); |
222 | } | 222 | } |
223 | } | 223 | } |
224 | 224 | ||
225 | void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , int) { | 225 | void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , int) { |
226 | switch (mouse) { | 226 | switch (mouse) { |
@@ -679,308 +679,314 @@ void PlayListWidget::populateAudioView() { | |||
679 | void PlayListWidget::populateVideoView() { | 679 | void PlayListWidget::populateVideoView() { |
680 | videoView->clear(); | 680 | videoView->clear(); |
681 | StorageInfo storageInfo; | 681 | StorageInfo storageInfo; |
682 | const QList<FileSystem> &fs = storageInfo.fileSystems(); | 682 | const QList<FileSystem> &fs = storageInfo.fileSystems(); |
683 | 683 | ||
684 | if(!videoScan ) { | 684 | if(!videoScan ) { |
685 | scanForVideo(); | 685 | scanForVideo(); |
686 | } | 686 | } |
687 | 687 | ||
688 | QListIterator<DocLnk> Vdit( vFiles.children() ); | 688 | QListIterator<DocLnk> Vdit( vFiles.children() ); |
689 | QListIterator<FileSystem> it ( fs ); | 689 | QListIterator<FileSystem> it ( fs ); |
690 | videoView->clear(); | 690 | videoView->clear(); |
691 | QString storage, pathName; | 691 | QString storage, pathName; |
692 | for ( ; Vdit.current(); ++Vdit ) { | 692 | for ( ; Vdit.current(); ++Vdit ) { |
693 | for( ; it.current(); ++it ) { | 693 | for( ; it.current(); ++it ) { |
694 | const QString name = (*it)->name(); | 694 | const QString name = (*it)->name(); |
695 | const QString path = (*it)->path(); | 695 | const QString path = (*it)->path(); |
696 | if( Vdit.current()->file().find(path) != -1 ) { | 696 | if( Vdit.current()->file().find(path) != -1 ) { |
697 | storage=name; | 697 | storage=name; |
698 | pathName=path; | 698 | pathName=path; |
699 | } | 699 | } |
700 | } | 700 | } |
701 | 701 | ||
702 | QListViewItem * newItem; | 702 | QListViewItem * newItem; |
703 | if ( QFile( Vdit.current()->file() ).exists() ) { | 703 | if ( QFile( Vdit.current()->file() ).exists() ) { |
704 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), | 704 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), |
705 | QString::number( QFile( Vdit.current()->file() ).size() ), | 705 | QString::number( QFile( Vdit.current()->file() ).size() ), |
706 | storage, Vdit.current()->file()); | 706 | storage, Vdit.current()->file()); |
707 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" ) ); | 707 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" ) ); |
708 | } | 708 | } |
709 | } | 709 | } |
710 | } | 710 | } |
711 | 711 | ||
712 | 712 | ||
713 | void PlayListWidget::openFile() { | 713 | void PlayListWidget::openFile() { |
714 | // http://66.28.164.33:2080 | 714 | // http://66.28.164.33:2080 |
715 | // http://somafm.com/star0242.m3u | 715 | // http://somafm.com/star0242.m3u |
716 | QString filename, name; | 716 | QString filename, name; |
717 | InputDialog *fileDlg; | 717 | InputDialog *fileDlg; |
718 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); | 718 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); |
719 | fileDlg->exec(); | 719 | fileDlg->exec(); |
720 | if( fileDlg->result() == 1 ) { | 720 | if( fileDlg->result() == 1 ) { |
721 | filename = fileDlg->text(); | 721 | filename = fileDlg->text(); |
722 | qDebug( "Selected filename is " + filename ); | 722 | qDebug( "Selected filename is " + filename ); |
723 | Om3u *m3uList; | 723 | Om3u *m3uList; |
724 | DocLnk lnk; | 724 | DocLnk lnk; |
725 | Config cfg( "OpiePlayer" ); | 725 | Config cfg( "OpiePlayer" ); |
726 | cfg.setGroup("PlayList"); | 726 | cfg.setGroup("PlayList"); |
727 | 727 | ||
728 | if(filename.left(4) == "http") { | 728 | if(filename.left(4) == "http") { |
729 | QString m3uFile, m3uFilePath; | 729 | QString m3uFile, m3uFilePath; |
730 | if(filename.find(":",8,TRUE) != -1) { //found a port | 730 | if(filename.find(":",8,TRUE) != -1) { //found a port |
731 | m3uFile = filename.left( filename.find( ":",8,TRUE)); | 731 | m3uFile = filename.left( filename.find( ":",8,TRUE)); |
732 | m3uFile = m3uFile.right( 7); | 732 | m3uFile = m3uFile.right( 7); |
733 | } else if(filename.left(4) == "http"){ | 733 | } else if(filename.left(4) == "http"){ |
734 | m3uFile=filename; | 734 | m3uFile=filename; |
735 | m3uFile = m3uFile.right( m3uFile.length() - 7); | 735 | m3uFile = m3uFile.right( m3uFile.length() - 7); |
736 | } else{ | 736 | } else{ |
737 | m3uFile=filename; | 737 | m3uFile=filename; |
738 | } | 738 | } |
739 | 739 | ||
740 | // qDebug("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"+ m3uFile); | 740 | // qDebug("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"+ m3uFile); |
741 | lnk.setName( filename ); //sets name | 741 | lnk.setName( filename ); //sets name |
742 | lnk.setFile( filename ); //sets file name | 742 | lnk.setFile( filename ); //sets file name |
743 | lnk.setIcon("opieplayer2/musicfile"); | 743 | |
744 | // lnk.setIcon("opieplayer2/musicfile"); | ||
745 | |||
744 | d->selectedFiles->addToSelection( lnk ); | 746 | d->selectedFiles->addToSelection( lnk ); |
745 | writeCurrentM3u(); | 747 | writeCurrentM3u(); |
746 | } | 748 | } |
747 | else if( filename.right( 3) == "m3u" ) { | 749 | else if( filename.right( 3) == "m3u" ) { |
748 | readm3u( filename ); | 750 | readm3u( filename ); |
749 | 751 | ||
750 | } else if( filename.right(3) == "pls" ) { | 752 | } else if( filename.right(3) == "pls" ) { |
751 | readPls( filename ); | 753 | readPls( filename ); |
752 | } else { | 754 | } else { |
753 | d->selectedFiles->addToSelection( DocLnk(filename) ); | 755 | lnk.setName( QFileInfo(filename).baseName() ); //sets name |
756 | lnk.setFile( filename ); //sets file name | ||
757 | d->selectedFiles->addToSelection( lnk); | ||
754 | writeCurrentM3u(); | 758 | writeCurrentM3u(); |
755 | } | 759 | } |
756 | } | 760 | } |
757 | 761 | ||
758 | if( fileDlg ) { | 762 | if( fileDlg ) { |
759 | delete fileDlg; | 763 | delete fileDlg; |
760 | } | 764 | } |
761 | } | 765 | } |
762 | 766 | ||
763 | /* | 767 | /* |
764 | reads m3u and shows files/urls to playlist widget */ | 768 | reads m3u and shows files/urls to playlist widget */ |
765 | void PlayListWidget::readm3u( const QString &filename ) { | 769 | void PlayListWidget::readm3u( const QString &filename ) { |
766 | qDebug( "read m3u filename " + filename ); | 770 | qDebug( "read m3u filename " + filename ); |
767 | 771 | ||
768 | Om3u *m3uList; | 772 | Om3u *m3uList; |
769 | QString s, name; | 773 | QString s, name; |
770 | m3uList = new Om3u( filename, IO_ReadOnly ); | 774 | m3uList = new Om3u( filename, IO_ReadOnly ); |
771 | m3uList->readM3u(); | 775 | m3uList->readM3u(); |
772 | DocLnk lnk; | 776 | DocLnk lnk; |
773 | for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { | 777 | for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { |
774 | s = *it; | 778 | s = *it; |
775 | // qDebug("reading "+ s); | 779 | // qDebug("reading "+ s); |
776 | if(s.left(4)=="http") { | 780 | if(s.left(4)=="http") { |
777 | lnk.setName( s ); //sets file name | 781 | lnk.setName( s ); //sets file name |
778 | lnk.setIcon("opieplayer2/musicfile"); | 782 | lnk.setIcon("opieplayer2/musicfile"); |
779 | // if(s.right(4) != '.' || s.right(5) != '.') | 783 | // if(s.right(4) != '.' || s.right(5) != '.') |
780 | // lnk.setFile( s+"/"); //if url with no extension | 784 | // lnk.setFile( s+"/"); //if url with no extension |
781 | // else | 785 | // else |
782 | lnk.setFile( s ); //sets file name | 786 | lnk.setFile( s ); //sets file name |
783 | 787 | ||
784 | } else { | 788 | } else { |
785 | // if( QFileInfo( s ).exists() ) { | 789 | // if( QFileInfo( s ).exists() ) { |
786 | lnk.setName( QFileInfo(s).baseName()); | 790 | lnk.setName( QFileInfo(s).baseName()); |
787 | // if(s.right(4) == '.') {//if regular file | 791 | // if(s.right(4) == '.') {//if regular file |
788 | if(s.left(1) != "/") { | 792 | if(s.left(1) != "/") { |
789 | // qDebug("set link "+QFileInfo(filename).dirPath()+"/"+s); | 793 | // qDebug("set link "+QFileInfo(filename).dirPath()+"/"+s); |
790 | lnk.setFile( QFileInfo(filename).dirPath()+"/"+s); | 794 | lnk.setFile( QFileInfo(filename).dirPath()+"/"+s); |
791 | lnk.setIcon("SoundPlayer"); | 795 | // lnk.setIcon(MimeType(s).pixmap() ); |
796 | // lnk.setIcon("SoundPlayer"); | ||
792 | } else { | 797 | } else { |
793 | // qDebug("set link2 "+s); | 798 | // qDebug("set link2 "+s); |
794 | lnk.setFile( s); | 799 | lnk.setFile( s); |
795 | lnk.setIcon("SoundPlayer"); | 800 | // lnk.setIcon(MimeType(s).pixmap() ); |
801 | // lnk.setIcon("SoundPlayer"); | ||
796 | } | 802 | } |
797 | } | 803 | } |
798 | d->selectedFiles->addToSelection( lnk ); | 804 | d->selectedFiles->addToSelection( lnk ); |
799 | } | 805 | } |
800 | Config config( "OpiePlayer" ); | 806 | Config config( "OpiePlayer" ); |
801 | config.setGroup( "PlayList" ); | 807 | config.setGroup( "PlayList" ); |
802 | 808 | ||
803 | config.writeEntry("CurrentPlaylist",filename); | 809 | config.writeEntry("CurrentPlaylist",filename); |
804 | config.write(); | 810 | config.write(); |
805 | currentPlayList=filename; | 811 | currentPlayList=filename; |
806 | 812 | ||
807 | // m3uList->write(); | 813 | // m3uList->write(); |
808 | m3uList->close(); | 814 | m3uList->close(); |
809 | if(m3uList) delete m3uList; | 815 | if(m3uList) delete m3uList; |
810 | 816 | ||
811 | d->selectedFiles->setSelectedItem( s); | 817 | d->selectedFiles->setSelectedItem( s); |
812 | setCaption(tr("OpiePlayer: ")+ QFileInfo(filename).baseName()); | 818 | setCaption(tr("OpiePlayer: ")+ QFileInfo(filename).baseName()); |
813 | 819 | ||
814 | } | 820 | } |
815 | 821 | ||
816 | /* | 822 | /* |
817 | reads pls and adds files/urls to playlist */ | 823 | reads pls and adds files/urls to playlist */ |
818 | void PlayListWidget::readPls( const QString &filename ) { | 824 | void PlayListWidget::readPls( const QString &filename ) { |
819 | 825 | ||
820 | qDebug( "pls filename is " + filename ); | 826 | qDebug( "pls filename is " + filename ); |
821 | Om3u *m3uList; | 827 | Om3u *m3uList; |
822 | QString s, name; | 828 | QString s, name; |
823 | m3uList = new Om3u( filename, IO_ReadOnly ); | 829 | m3uList = new Om3u( filename, IO_ReadOnly ); |
824 | m3uList->readPls(); | 830 | m3uList->readPls(); |
825 | 831 | ||
826 | for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { | 832 | for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { |
827 | s = *it; | 833 | s = *it; |
828 | // s.replace( QRegExp( "%20" )," " ); | 834 | // s.replace( QRegExp( "%20" )," " ); |
829 | DocLnk lnk( s ); | 835 | DocLnk lnk( s ); |
830 | QFileInfo f( s ); | 836 | QFileInfo f( s ); |
831 | QString name = f.baseName(); | 837 | QString name = f.baseName(); |
832 | 838 | ||
833 | if( name.left( 4 ) == "http" ) { | 839 | if( name.left( 4 ) == "http" ) { |
834 | name = s.right( s.length() - 7); | 840 | name = s.right( s.length() - 7); |
835 | } else { | 841 | } else { |
836 | name = s; | 842 | name = s; |
837 | } | 843 | } |
838 | 844 | ||
839 | name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 ); | 845 | name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 ); |
840 | 846 | ||
841 | lnk.setName( name ); | 847 | lnk.setName( name ); |
842 | if( s.at( s.length() - 4) == '.') {// if this is probably a file | 848 | if( s.at( s.length() - 4) == '.') {// if this is probably a file |
843 | lnk.setFile( s ); | 849 | lnk.setFile( s ); |
844 | } else { //if its a url | 850 | } else { //if its a url |
845 | if( name.right( 1 ).find( '/' ) == -1) { | 851 | // if( name.right( 1 ).find( '/' ) == -1) { |
846 | s += "/"; | 852 | // s += "/"; |
847 | } | 853 | // } |
848 | lnk.setFile( s ); | 854 | lnk.setFile( s ); |
849 | } | 855 | } |
850 | lnk.setType( "audio/x-mpegurl" ); | 856 | lnk.setType( "audio/x-mpegurl" ); |
851 | 857 | ||
852 | lnk.writeLink(); | 858 | lnk.writeLink(); |
853 | d->selectedFiles->addToSelection( lnk ); | 859 | d->selectedFiles->addToSelection( lnk ); |
854 | } | 860 | } |
855 | 861 | ||
856 | m3uList->close(); | 862 | m3uList->close(); |
857 | if(m3uList) delete m3uList; | 863 | if(m3uList) delete m3uList; |
858 | } | 864 | } |
859 | 865 | ||
860 | /* | 866 | /* |
861 | writes current playlist to current m3u file */ | 867 | writes current playlist to current m3u file */ |
862 | void PlayListWidget::writeCurrentM3u() { | 868 | void PlayListWidget::writeCurrentM3u() { |
863 | qDebug("writing to current m3u"); | 869 | qDebug("writing to current m3u"); |
864 | Config cfg( "OpiePlayer" ); | 870 | Config cfg( "OpiePlayer" ); |
865 | cfg.setGroup("PlayList"); | 871 | cfg.setGroup("PlayList"); |
866 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist","default"); | 872 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist","default"); |
867 | 873 | ||
868 | if( d->selectedFiles->first()) { | ||
869 | Om3u *m3uList; | 874 | Om3u *m3uList; |
870 | m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate ); | 875 | m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate ); |
876 | if( d->selectedFiles->first()) { | ||
871 | 877 | ||
872 | do { | 878 | do { |
873 | qDebug( "writeCurrentM3u " +d->selectedFiles->current()->file()); | 879 | qDebug( "add writeCurrentM3u " +d->selectedFiles->current()->file()); |
874 | m3uList->add( d->selectedFiles->current()->file() ); | 880 | m3uList->add( d->selectedFiles->current()->file() ); |
875 | } | 881 | } |
876 | while ( d->selectedFiles->next() ); | 882 | while ( d->selectedFiles->next() ); |
877 | qDebug( "<<<<<<<<<<<<>>>>>>>>>>>>>>>>>" ); | 883 | qDebug( "<<<<<<<<<<<<>>>>>>>>>>>>>>>>>" ); |
878 | m3uList->write(); | 884 | m3uList->write(); |
879 | m3uList->close(); | 885 | m3uList->close(); |
880 | 886 | ||
881 | if(m3uList) delete m3uList; | 887 | if(m3uList) delete m3uList; |
882 | } | 888 | } |
883 | } | 889 | } |
884 | 890 | ||
885 | /* | 891 | /* |
886 | writes current playlist to m3u file */ | 892 | writes current playlist to m3u file */ |
887 | void PlayListWidget::writem3u() { | 893 | void PlayListWidget::writem3u() { |
888 | InputDialog *fileDlg; | 894 | InputDialog *fileDlg; |
889 | fileDlg = new InputDialog( this, tr( "Save m3u Playlist " ), TRUE, 0); | 895 | fileDlg = new InputDialog( this, tr( "Save m3u Playlist " ), TRUE, 0); |
890 | fileDlg->exec(); | 896 | fileDlg->exec(); |
891 | QString name, filename, list; | 897 | QString name, filename, list; |
892 | Om3u *m3uList; | 898 | Om3u *m3uList; |
893 | 899 | ||
894 | if( fileDlg->result() == 1 ) { | 900 | if( fileDlg->result() == 1 ) { |
895 | name = fileDlg->text(); | 901 | name = fileDlg->text(); |
896 | // qDebug( filename ); | 902 | // qDebug( filename ); |
897 | 903 | ||
898 | if( name.left( 1) != "/" ) { | 904 | if( name.left( 1) != "/" ) { |
899 | filename = QPEApplication::documentDir() + "/" + name; | 905 | filename = QPEApplication::documentDir() + "/" + name; |
900 | } | 906 | } |
901 | 907 | ||
902 | if( name.right( 3 ) != "m3u" ) { | 908 | if( name.right( 3 ) != "m3u" ) { |
903 | filename = QPEApplication::documentDir() + "/" +name+".m3u"; | 909 | filename = QPEApplication::documentDir() + "/" +name+".m3u"; |
904 | } | 910 | } |
905 | 911 | ||
906 | if( d->selectedFiles->first()) { | 912 | if( d->selectedFiles->first()) { |
907 | m3uList = new Om3u(filename, IO_ReadWrite); | 913 | m3uList = new Om3u(filename, IO_ReadWrite); |
908 | 914 | ||
909 | do { | 915 | do { |
910 | m3uList->add( d->selectedFiles->current()->file()); | 916 | m3uList->add( d->selectedFiles->current()->file()); |
911 | } | 917 | } |
912 | while ( d->selectedFiles->next() ); | 918 | while ( d->selectedFiles->next() ); |
913 | // qDebug( list ); | 919 | // qDebug( list ); |
914 | m3uList->write(); | 920 | m3uList->write(); |
915 | m3uList->close(); | 921 | m3uList->close(); |
916 | if(m3uList) delete m3uList; | 922 | if(m3uList) delete m3uList; |
917 | 923 | ||
918 | if(fileDlg) delete fileDlg; | 924 | if(fileDlg) delete fileDlg; |
919 | 925 | ||
920 | DocLnk lnk; | 926 | DocLnk lnk; |
921 | lnk.setFile( filename); | 927 | lnk.setFile( filename); |
922 | lnk.setIcon("opieplayer2/playlist2"); | 928 | // lnk.setIcon("opieplayer2/playlist2"); |
923 | lnk.setName( name); //sets file name | 929 | lnk.setName( name); //sets file name |
924 | 930 | ||
925 | // qDebug(filename); | 931 | // qDebug(filename); |
926 | Config config( "OpiePlayer" ); | 932 | Config config( "OpiePlayer" ); |
927 | config.setGroup( "PlayList" ); | 933 | config.setGroup( "PlayList" ); |
928 | 934 | ||
929 | config.writeEntry("CurrentPlaylist",filename); | 935 | config.writeEntry("CurrentPlaylist",filename); |
930 | currentPlayList=filename; | 936 | currentPlayList=filename; |
931 | 937 | ||
932 | if(!lnk.writeLink()) { | 938 | if(!lnk.writeLink()) { |
933 | qDebug("Writing doclink did not work"); | 939 | qDebug("Writing doclink did not work"); |
934 | } | 940 | } |
935 | 941 | ||
936 | setCaption(tr("OpiePlayer: ") + name); | 942 | setCaption(tr("OpiePlayer: ") + name); |
937 | } | 943 | } |
938 | } | 944 | } |
939 | } | 945 | } |
940 | 946 | ||
941 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e ) { | 947 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e ) { |
942 | switch ( e->key() ) { | 948 | switch ( e->key() ) { |
943 | ////////////////////////////// Zaurus keys | 949 | ////////////////////////////// Zaurus keys |
944 | case Key_F9: //activity | 950 | case Key_F9: //activity |
945 | // if(audioUI->isHidden()) | 951 | // if(audioUI->isHidden()) |
946 | // audioUI->showMaximized(); | 952 | // audioUI->showMaximized(); |
947 | break; | 953 | break; |
948 | case Key_F10: //contacts | 954 | case Key_F10: //contacts |
949 | // if( videoUI->isHidden()) | 955 | // if( videoUI->isHidden()) |
950 | // videoUI->showMaximized(); | 956 | // videoUI->showMaximized(); |
951 | break; | 957 | break; |
952 | case Key_F11: //menu | 958 | case Key_F11: //menu |
953 | break; | 959 | break; |
954 | case Key_F12: //home | 960 | case Key_F12: //home |
955 | // doBlank(); | 961 | // doBlank(); |
956 | break; | 962 | break; |
957 | case Key_F13: //mail | 963 | case Key_F13: //mail |
958 | // doUnblank(); | 964 | // doUnblank(); |
959 | break; | 965 | break; |
960 | case Key_Q: //add to playlist | 966 | case Key_Q: //add to playlist |
961 | addSelected(); | 967 | addSelected(); |
962 | break; | 968 | break; |
963 | case Key_R: //remove from playlist | 969 | case Key_R: //remove from playlist |
964 | removeSelected(); | 970 | removeSelected(); |
965 | break; | 971 | break; |
966 | // case Key_P: //play | 972 | // case Key_P: //play |
967 | // qDebug("Play"); | 973 | // qDebug("Play"); |
968 | // playSelected(); | 974 | // playSelected(); |
969 | // break; | 975 | // break; |
970 | case Key_Space: | 976 | case Key_Space: |
971 | // playSelected(); puh | 977 | // playSelected(); puh |
972 | break; | 978 | break; |
973 | case Key_1: | 979 | case Key_1: |
974 | tabWidget->setCurrentPage( 0 ); | 980 | tabWidget->setCurrentPage( 0 ); |
975 | break; | 981 | break; |
976 | case Key_2: | 982 | case Key_2: |
977 | tabWidget->setCurrentPage( 1 ); | 983 | tabWidget->setCurrentPage( 1 ); |
978 | break; | 984 | break; |
979 | case Key_3: | 985 | case Key_3: |
980 | tabWidget->setCurrentPage( 2 ); | 986 | tabWidget->setCurrentPage( 2 ); |
981 | break; | 987 | break; |
982 | case Key_4: | 988 | case Key_4: |
983 | tabWidget->setCurrentPage( 3 ); | 989 | tabWidget->setCurrentPage( 3 ); |
984 | break; | 990 | break; |
985 | case Key_Down: | 991 | case Key_Down: |
986 | if ( !d->selectedFiles->next() ) | 992 | if ( !d->selectedFiles->next() ) |