summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/playlistwidget.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp
index 60eb0c8..86130d5 100644
--- a/noncore/multimedia/opieplayer2/playlistwidget.cpp
+++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp
@@ -1,1082 +1,1082 @@
1/* 1/*
2                This file is part of the Opie Project 2                This file is part of the Opie Project
3 3
4              Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> 4              Copyright (c) 2002 Max Reiss <harlekin@handhelds.org>
5 Copyright (c) 2002 L. Potter <ljp@llornkcor.com> 5 Copyright (c) 2002 L. Potter <ljp@llornkcor.com>
6 Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> 6 Copyright (c) 2002 Holger Freyther <zecke@handhelds.org>
7 =. 7 =.
8 .=l. 8 .=l.
9           .>+-= 9           .>+-=
10 _;:,     .>    :=|. This program is free software; you can 10 _;:,     .>    :=|. This program is free software; you can
11.> <`_,   >  .   <= redistribute it and/or modify it under 11.> <`_,   >  .   <= redistribute it and/or modify it under
12:`=1 )Y*s>-.--   : the terms of the GNU General Public 12:`=1 )Y*s>-.--   : the terms of the GNU General Public
13.="- .-=="i,     .._ License as published by the Free Software 13.="- .-=="i,     .._ License as published by the Free Software
14 - .   .-<_>     .<> Foundation; either version 2 of the License, 14 - .   .-<_>     .<> Foundation; either version 2 of the License,
15     ._= =}       : or (at your option) any later version. 15     ._= =}       : or (at your option) any later version.
16    .%`+i>       _;_. 16    .%`+i>       _;_.
17    .i_,=:_.      -<s. This program is distributed in the hope that 17    .i_,=:_.      -<s. This program is distributed in the hope that
18     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 18     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
19    : ..    .:,     . . . without even the implied warranty of 19    : ..    .:,     . . . without even the implied warranty of
20    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 20    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
21  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 21  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
22..}^=.=       =       ; General Public License for more 22..}^=.=       =       ; General Public License for more
23++=   -.     .`     .: details. 23++=   -.     .`     .: details.
24 :     =  ...= . :.=- 24 :     =  ...= . :.=-
25 -.   .:....=;==+<; You should have received a copy of the GNU 25 -.   .:....=;==+<; You should have received a copy of the GNU
26  -_. . .   )=.  = General Public License along with 26  -_. . .   )=.  = General Public License along with
27    --        :-=` this library; see the file COPYING.LIB. 27    --        :-=` this library; see the file COPYING.LIB.
28 If not, write to the Free Software Foundation, 28 If not, write to the Free Software Foundation,
29 Inc., 59 Temple Place - Suite 330, 29 Inc., 59 Temple Place - Suite 330,
30 Boston, MA 02111-1307, USA. 30 Boston, MA 02111-1307, USA.
31 31
32*/ 32*/
33 33
34#include <qpe/qpetoolbar.h> 34#include <qpe/qpetoolbar.h>
35#include <qpe/qpeapplication.h> 35#include <qpe/qpeapplication.h>
36#include <qpe/storage.h> 36#include <qpe/storage.h>
37#include <qpe/mimetype.h> 37#include <qpe/mimetype.h>
38#include <qpe/global.h> 38#include <qpe/global.h>
39#include <qpe/resource.h> 39#include <qpe/resource.h>
40 40
41#include <qdir.h> 41#include <qdir.h>
42#include <qmessagebox.h> 42#include <qmessagebox.h>
43#include <qregexp.h> 43#include <qregexp.h>
44#include <qtextstream.h> 44#include <qtextstream.h>
45 45
46#include "playlistselection.h" 46#include "playlistselection.h"
47#include "playlistwidget.h" 47#include "playlistwidget.h"
48#include "mediaplayerstate.h" 48#include "mediaplayerstate.h"
49#include "inputDialog.h" 49#include "inputDialog.h"
50#include "om3u.h" 50#include "om3u.h"
51 51
52//only needed for the random play 52//only needed for the random play
53#include <stdlib.h> 53#include <stdlib.h>
54 54
55#include "audiowidget.h" 55#include "audiowidget.h"
56#include "videowidget.h" 56#include "videowidget.h"
57 57
58extern MediaPlayerState *mediaPlayerState; 58extern MediaPlayerState *mediaPlayerState;
59 59
60QString audioMimes ="audio/mpeg;audio/x-wav;audio/x-ogg"; 60QString audioMimes ="audio/mpeg;audio/x-wav;audio/x-ogg";
61// no m3u's here please 61// no m3u's here please
62 62
63PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) 63PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl )
64 : PlayListWidgetGui( parent, name, fl ) { 64 : PlayListWidgetGui( parent, name, fl ) {
65 65
66 d->tbAddToList = new ToolButton( bar, tr( "Add to Playlist" ), 66 d->tbAddToList = new ToolButton( bar, tr( "Add to Playlist" ),
67 "opieplayer2/add_to_playlist", 67 "opieplayer2/add_to_playlist",
68 this , SLOT(addSelected() ) ); 68 this , SLOT(addSelected() ) );
69 d->tbRemoveFromList = new ToolButton( bar, tr( "Remove from Playlist" ), 69 d->tbRemoveFromList = new ToolButton( bar, tr( "Remove from Playlist" ),
70 "opieplayer2/remove_from_playlist", 70 "opieplayer2/remove_from_playlist",
71 this , SLOT(removeSelected() ) ); 71 this , SLOT(removeSelected() ) );
72 d->tbPlay = new ToolButton( bar, tr( "Play" ), "opieplayer2/play", 72 d->tbPlay = new ToolButton( bar, tr( "Play" ), "opieplayer2/play",
73 this , SLOT( btnPlay( bool) ), TRUE ); 73 this , SLOT( btnPlay( bool) ), TRUE );
74 d->tbShuffle = new ToolButton( bar, tr( "Randomize" ),"opieplayer2/shuffle", 74 d->tbShuffle = new ToolButton( bar, tr( "Randomize" ),"opieplayer2/shuffle",
75 mediaPlayerState, SLOT( setShuffled( bool ) ), TRUE ); 75 mediaPlayerState, SLOT( setShuffled( bool ) ), TRUE );
76 d->tbLoop = new ToolButton( bar, tr( "Loop" ), "opieplayer2/loop", 76 d->tbLoop = new ToolButton( bar, tr( "Loop" ), "opieplayer2/loop",
77 mediaPlayerState, SLOT( setLooping( bool ) ), TRUE ); 77 mediaPlayerState, SLOT( setLooping( bool ) ), TRUE );
78 78
79 (void)new MenuItem( pmPlayList, tr( "Clear List" ), this, SLOT( clearList() ) ); 79 (void)new MenuItem( pmPlayList, tr( "Clear List" ), this, SLOT( clearList() ) );
80 (void)new MenuItem( pmPlayList, tr( "Add all audio files" ), 80 (void)new MenuItem( pmPlayList, tr( "Add all audio files" ),
81 this, SLOT( addAllMusicToList() ) ); 81 this, SLOT( addAllMusicToList() ) );
82 (void)new MenuItem( pmPlayList, tr( "Add all video files" ), 82 (void)new MenuItem( pmPlayList, tr( "Add all video files" ),
83 this, SLOT( addAllVideoToList() ) ); 83 this, SLOT( addAllVideoToList() ) );
84 (void)new MenuItem( pmPlayList, tr( "Add all files" ), 84 (void)new MenuItem( pmPlayList, tr( "Add all files" ),
85 this, SLOT( addAllToList() ) ); 85 this, SLOT( addAllToList() ) );
86 pmPlayList->insertSeparator(-1); 86 pmPlayList->insertSeparator(-1);
87// (void)new MenuItem( pmPlayList, tr( "Save PlayList" ), 87// (void)new MenuItem( pmPlayList, tr( "Save PlayList" ),
88// this, SLOT( saveList() ) ); 88// this, SLOT( saveList() ) );
89 (void)new MenuItem( pmPlayList, tr( "Save Playlist" ), 89 (void)new MenuItem( pmPlayList, tr( "Save Playlist" ),
90 this, SLOT(writem3u() ) ); 90 this, SLOT(writem3u() ) );
91 pmPlayList->insertSeparator(-1); 91 pmPlayList->insertSeparator(-1);
92 (void)new MenuItem( pmPlayList, tr( "Open File or URL" ), 92 (void)new MenuItem( pmPlayList, tr( "Open File or URL" ),
93 this,SLOT( openFile() ) ); 93 this,SLOT( openFile() ) );
94 pmPlayList->insertSeparator(-1); 94 pmPlayList->insertSeparator(-1);
95 (void)new MenuItem( pmPlayList, tr( "Rescan for Audio Files" ), 95 (void)new MenuItem( pmPlayList, tr( "Rescan for Audio Files" ),
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", "default"); 160 QString currentPlaylist = cfg.readEntry( "CurrentPlaylist", "default");
161 loadList(DocLnk( currentPlaylist ) ); 161 loadList(DocLnk( currentPlaylist ) );
162 162
163} 163}
164 164
165 165
166PlayListWidget::~PlayListWidget() { 166PlayListWidget::~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
174void PlayListWidget::initializeStates() { 174void 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
181void PlayListWidget::writeDefaultPlaylist() { 181void 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
206void PlayListWidget::addToSelection( const DocLnk& lnk ) { 206void 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
219void PlayListWidget::clearList() { 219void PlayListWidget::clearList() {
220 while ( first() ) { 220 while ( first() ) {
221 d->selectedFiles->removeSelected(); 221 d->selectedFiles->removeSelected();
222 } 222 }
223} 223}
224 224
225void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , int) { 225void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , int) {
226 switch (mouse) { 226 switch (mouse) {
227 case 1: 227 case 1:
228 break; 228 break;
229 case 2: 229 case 2:
230 { 230 {
231 QPopupMenu m; 231 QPopupMenu m;
232 m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() )); 232 m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() ));
233 m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() )); 233 m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() ));
234 m.exec( QCursor::pos() ); 234 m.exec( QCursor::pos() );
235 } 235 }
236 break; 236 break;
237 } 237 }
238} 238}
239 239
240 240
241void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *, const QPoint& , int ) { 241void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *, const QPoint& , int ) {
242 switch (mouse) { 242 switch (mouse) {
243 case 1: 243 case 1:
244 break; 244 break;
245 case 2: 245 case 2:
246 { 246 {
247 QPopupMenu m; 247 QPopupMenu m;
248 m.insertItem( tr( "Play" ), this, SLOT( playSelected() )); 248 m.insertItem( tr( "Play" ), this, SLOT( playSelected() ));
249 m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() )); 249 m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() ));
250 m.exec( QCursor::pos() ); 250 m.exec( QCursor::pos() );
251 } 251 }
252 break; 252 break;
253 } 253 }
254} 254}
255 255
256 256
257void PlayListWidget::addAllToList() { 257void PlayListWidget::addAllToList() {
258 DocLnkSet filesAll; 258 DocLnkSet filesAll;
259 Global::findDocuments(&filesAll, "video/*;"+audioMimes); 259 Global::findDocuments(&filesAll, "video/*;"+audioMimes);
260 QListIterator<DocLnk> Adit( filesAll.children() ); 260 QListIterator<DocLnk> Adit( filesAll.children() );
261 for ( ; Adit.current(); ++Adit ) { 261 for ( ; Adit.current(); ++Adit ) {
262 if( QFileInfo( Adit.current()->file() ).exists() ) { 262 if( QFileInfo( Adit.current()->file() ).exists() ) {
263 d->selectedFiles->addToSelection( **Adit ); 263 d->selectedFiles->addToSelection( **Adit );
264 } 264 }
265 } 265 }
266 writeCurrentM3u(); 266 writeCurrentM3u();
267} 267}
268 268
269 269
270void PlayListWidget::addAllMusicToList() { 270void PlayListWidget::addAllMusicToList() {
271 if(!audioScan) 271 if(!audioScan)
272 scanForAudio(); 272 scanForAudio();
273 QListIterator<DocLnk> dit( files.children() ); 273 QListIterator<DocLnk> dit( files.children() );
274 for ( ; dit.current(); ++dit ) { 274 for ( ; dit.current(); ++dit ) {
275 if( QFileInfo(dit.current()->file() ).exists() ) { 275 if( QFileInfo(dit.current()->file() ).exists() ) {
276 d->selectedFiles->addToSelection( **dit ); 276 d->selectedFiles->addToSelection( **dit );
277 } 277 }
278 } 278 }
279 writeCurrentM3u(); 279 writeCurrentM3u();
280} 280}
281 281
282 282
283void PlayListWidget::addAllVideoToList() { 283void PlayListWidget::addAllVideoToList() {
284 if(!videoScan) 284 if(!videoScan)
285 scanForVideo(); 285 scanForVideo();
286 QListIterator<DocLnk> dit( vFiles.children() ); 286 QListIterator<DocLnk> dit( vFiles.children() );
287 for ( ; dit.current(); ++dit ) { 287 for ( ; dit.current(); ++dit ) {
288 if( QFileInfo( dit.current()->file() ).exists() ) { 288 if( QFileInfo( dit.current()->file() ).exists() ) {
289 d->selectedFiles->addToSelection( **dit ); 289 d->selectedFiles->addToSelection( **dit );
290 } 290 }
291 } 291 }
292 writeCurrentM3u(); 292 writeCurrentM3u();
293} 293}
294 294
295 295
296void PlayListWidget::setDocument( const QString& fileref ) { 296void PlayListWidget::setDocument( const QString& fileref ) {
297 qDebug( "<<<<<<<<set document>>>>>>>>>> "+fileref ); 297 qDebug( "<<<<<<<<set document>>>>>>>>>> "+fileref );
298 fromSetDocument = TRUE; 298 fromSetDocument = TRUE;
299 if ( fileref.isNull() ) { 299 if ( fileref.isNull() ) {
300 QMessageBox::critical( 0, tr( "Invalid File" ), 300 QMessageBox::critical( 0, tr( "Invalid File" ),
301 tr( "There was a problem in getting the file." ) ); 301 tr( "There was a problem in getting the file." ) );
302 return; 302 return;
303 } 303 }
304 304
305 clearList(); 305 clearList();
306 if( fileref.find( "m3u", 0, TRUE) != -1 ) { //is m3u 306 if( fileref.find( "m3u", 0, TRUE) != -1 ) { //is m3u
307 readm3u( fileref ); 307 readm3u( fileref );
308 } else if( DocLnk( fileref).file().find( "m3u", 0, TRUE) != -1 ) { 308 } else if( DocLnk( fileref).file().find( "m3u", 0, TRUE) != -1 ) {
309 readm3u( DocLnk( fileref).file() ); 309 readm3u( DocLnk( fileref).file() );
310 } else if( fileref.find( "pls", 0, TRUE) != -1 ) { //is pls 310 } else if( fileref.find( "pls", 0, TRUE) != -1 ) { //is pls
311 readPls( fileref ); 311 readPls( fileref );
312 } else if( DocLnk( fileref).file().find( "pls", 0, TRUE) != -1 ) { 312 } else if( DocLnk( fileref).file().find( "pls", 0, TRUE) != -1 ) {
313 readPls( DocLnk( fileref).file() ); 313 readPls( DocLnk( fileref).file() );
314 } else { 314 } else {
315 clearList(); 315 clearList();
316 addToSelection( DocLnk( fileref ) ); 316 addToSelection( DocLnk( fileref ) );
317 writeCurrentM3u(); 317 writeCurrentM3u();
318 318
319 d->setDocumentUsed = TRUE; 319 d->setDocumentUsed = TRUE;
320 mediaPlayerState->setPlaying( FALSE ); 320 mediaPlayerState->setPlaying( FALSE );
321 mediaPlayerState->setPlaying( TRUE ); 321 mediaPlayerState->setPlaying( TRUE );
322 } 322 }
323} 323}
324 324
325 325
326void PlayListWidget::useSelectedDocument() { 326void PlayListWidget::useSelectedDocument() {
327 d->setDocumentUsed = FALSE; 327 d->setDocumentUsed = FALSE;
328} 328}
329 329
330 330
331const DocLnk *PlayListWidget::current() { // this is fugly 331const DocLnk *PlayListWidget::current() { // this is fugly
332 switch ( whichList() ) { 332 switch ( whichList() ) {
333 case 0: //playlist 333 case 0: //playlist
334 { 334 {
335// qDebug("playlist"); 335// qDebug("playlist");
336 if ( mediaPlayerState->playlist() ) { 336 if ( mediaPlayerState->playlist() ) {
337 return d->selectedFiles->current(); 337 return d->selectedFiles->current();
338 } else if ( d->setDocumentUsed && d->current ) { 338 } else if ( d->setDocumentUsed && d->current ) {
339 return d->current; 339 return d->current;
340 } else { 340 } else {
341 return &(d->files->selectedDocument()); 341 return &(d->files->selectedDocument());
342 } 342 }
343 } 343 }
344 break; 344 break;
345 }; 345 };
346 return 0; 346 return 0;
347} 347}
348 348
349 349
350bool PlayListWidget::prev() { 350bool PlayListWidget::prev() {
351 if ( mediaPlayerState->playlist() ) { 351 if ( mediaPlayerState->playlist() ) {
352 if ( mediaPlayerState->shuffled() ) { 352 if ( mediaPlayerState->shuffled() ) {
353 const DocLnk *cur = current(); 353 const DocLnk *cur = current();
354 int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0)); 354 int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0));
355 for ( int i = 0; i < j; i++ ) { 355 for ( int i = 0; i < j; i++ ) {
356 if ( !d->selectedFiles->next() ) 356 if ( !d->selectedFiles->next() )
357 d->selectedFiles->first(); 357 d->selectedFiles->first();
358 } 358 }
359 if ( cur == current() ) 359 if ( cur == current() )
360 if ( !d->selectedFiles->next() ) { 360 if ( !d->selectedFiles->next() ) {
361 d->selectedFiles->first(); 361 d->selectedFiles->first();
362 } 362 }
363 return TRUE; 363 return TRUE;
364 } else { 364 } else {
365 if ( !d->selectedFiles->prev() ) { 365 if ( !d->selectedFiles->prev() ) {
366 if ( mediaPlayerState->looping() ) { 366 if ( mediaPlayerState->looping() ) {
367 return d->selectedFiles->last(); 367 return d->selectedFiles->last();
368 } else { 368 } else {
369 return FALSE; 369 return FALSE;
370 } 370 }
371 } 371 }
372 return TRUE; 372 return TRUE;
373 } 373 }
374 } else { 374 } else {
375 return mediaPlayerState->looping(); 375 return mediaPlayerState->looping();
376 } 376 }
377} 377}
378 378
379 379
380bool PlayListWidget::next() { 380bool PlayListWidget::next() {
381//qDebug("<<<<<<<<<<<<next()"); 381//qDebug("<<<<<<<<<<<<next()");
382 if ( mediaPlayerState->playlist() ) { 382 if ( mediaPlayerState->playlist() ) {
383 if ( mediaPlayerState->shuffled() ) { 383 if ( mediaPlayerState->shuffled() ) {
384 return prev(); 384 return prev();
385 } else { 385 } else {
386 if ( !d->selectedFiles->next() ) { 386 if ( !d->selectedFiles->next() ) {
387 if ( mediaPlayerState->looping() ) { 387 if ( mediaPlayerState->looping() ) {
388 return d->selectedFiles->first(); 388 return d->selectedFiles->first();
389 } else { 389 } else {
390 return FALSE; 390 return FALSE;
391 } 391 }
392 } 392 }
393 return TRUE; 393 return TRUE;
394 } 394 }
395 } else { 395 } else {
396 return mediaPlayerState->looping(); 396 return mediaPlayerState->looping();
397 } 397 }
398} 398}
399 399
400 400
401bool PlayListWidget::first() { 401bool PlayListWidget::first() {
402 if ( mediaPlayerState->playlist() ) 402 if ( mediaPlayerState->playlist() )
403 return d->selectedFiles->first(); 403 return d->selectedFiles->first();
404 else 404 else
405 return mediaPlayerState->looping(); 405 return mediaPlayerState->looping();
406} 406}
407 407
408 408
409bool PlayListWidget::last() { 409bool PlayListWidget::last() {
410 if ( mediaPlayerState->playlist() ) 410 if ( mediaPlayerState->playlist() )
411 return d->selectedFiles->last(); 411 return d->selectedFiles->last();
412 else 412 else
413 return mediaPlayerState->looping(); 413 return mediaPlayerState->looping();
414} 414}
415 415
416 416
417 void PlayListWidget::saveList() { 417 void PlayListWidget::saveList() {
418 writem3u(); 418 writem3u();
419 } 419 }
420 420
421 421
422void PlayListWidget::loadList( const DocLnk & lnk) { 422void PlayListWidget::loadList( const DocLnk & lnk) {
423 QString name = lnk.name(); 423 QString name = lnk.name();
424 qDebug("<<<<<<<<<<<<<<<<<<<<<<<<currentList is "+name); 424 qDebug("<<<<<<<<<<<<<<<<<<<<<<<<currentList is "+name);
425 425
426 if( name.length()>0) { 426 if( name.length()>0) {
427 setCaption("OpiePlayer: "+name); 427 setCaption("OpiePlayer: "+name);
428 qDebug("<<<<<<<<<<<<load list "+ lnk.file()); 428 qDebug("<<<<<<<<<<<<load list "+ lnk.file());
429 clearList(); 429 clearList();
430 readm3u(lnk.file()); 430 readm3u(lnk.file());
431 tabWidget->setCurrentPage(0); 431 tabWidget->setCurrentPage(0);
432 } 432 }
433} 433}
434 434
435 435
436void PlayListWidget::setPlaylist( bool shown ) { 436void PlayListWidget::setPlaylist( bool shown ) {
437 if ( shown ) { 437 if ( shown ) {
438 d->playListFrame->show(); 438 d->playListFrame->show();
439 } else { 439 } else {
440 d->playListFrame->hide(); 440 d->playListFrame->hide();
441 } 441 }
442} 442}
443 443
444 444
445void PlayListWidget::addSelected() { 445void PlayListWidget::addSelected() {
446 qDebug("addSelected"); 446 qDebug("addSelected");
447 switch (whichList()) { 447 switch (whichList()) {
448 case 0: //playlist 448 case 0: //playlist
449 break; 449 break;
450 case 1: { //audio 450 case 1: { //audio
451 QListViewItemIterator it( audioView ); 451 QListViewItemIterator it( audioView );
452 // iterate through all items of the listview 452 // iterate through all items of the listview
453 for ( ; it.current(); ++it ) { 453 for ( ; it.current(); ++it ) {
454 if ( it.current()->isSelected() ) { 454 if ( it.current()->isSelected() ) {
455 QListIterator<DocLnk> dit( files.children() ); 455 QListIterator<DocLnk> dit( files.children() );
456 for ( ; dit.current(); ++dit ) { 456 for ( ; dit.current(); ++dit ) {
457 if( dit.current()->name() == it.current()->text(0) ) { 457 if( dit.current()->name() == it.current()->text(0) ) {
458 if( QFileInfo( dit.current()->file()).exists()) { 458 if( QFileInfo( dit.current()->file()).exists()) {
459 d->selectedFiles->addToSelection( **dit ); 459 d->selectedFiles->addToSelection( **dit );
460 audioView->setSelected( it.current(),FALSE); 460 audioView->setSelected( it.current(),FALSE);
461 } 461 }
462 } 462 }
463 } 463 }
464 } 464 }
465 } 465 }
466// tabWidget->setCurrentPage(0); 466// tabWidget->setCurrentPage(0);
467 writeCurrentM3u(); 467 writeCurrentM3u();
468 d->selectedFiles->next(); 468 d->selectedFiles->next();
469 } 469 }
470 break; 470 break;
471 case 2: { // video 471 case 2: { // video
472 QListViewItemIterator it( videoView ); 472 QListViewItemIterator it( videoView );
473 // iterate through all items of the listview 473 // iterate through all items of the listview
474 for ( ; it.current(); ++it ) { 474 for ( ; it.current(); ++it ) {
475 if ( it.current()->isSelected() ) { 475 if ( it.current()->isSelected() ) {
476 QListIterator<DocLnk> dit( vFiles.children() ); 476 QListIterator<DocLnk> dit( vFiles.children() );
477 for ( ; dit.current(); ++dit ) { 477 for ( ; dit.current(); ++dit ) {
478 if( dit.current()->name() == it.current()->text(0) ) { 478 if( dit.current()->name() == it.current()->text(0) ) {
479 if(QFileInfo( dit.current()->file()).exists()) { 479 if(QFileInfo( dit.current()->file()).exists()) {
480 d->selectedFiles->addToSelection( **dit ); 480 d->selectedFiles->addToSelection( **dit );
481 videoView->setSelected( it.current(),FALSE); 481 videoView->setSelected( it.current(),FALSE);
482 } 482 }
483 } 483 }
484 } 484 }
485 } 485 }
486 } 486 }
487// tabWidget->setCurrentPage(0); 487// tabWidget->setCurrentPage(0);
488 writeCurrentM3u(); 488 writeCurrentM3u();
489 489
490 } 490 }
491 break; 491 break;
492 }; 492 };
493} 493}
494 494
495 495
496void PlayListWidget::removeSelected() { 496void PlayListWidget::removeSelected() {
497 d->selectedFiles->removeSelected( ); 497 d->selectedFiles->removeSelected( );
498 writeCurrentM3u(); 498 writeCurrentM3u();
499} 499}
500 500
501 501
502void PlayListWidget::playIt( QListViewItem *it) { 502void PlayListWidget::playIt( QListViewItem *it) {
503 if(!it) return; 503 if(!it) return;
504 mediaPlayerState->setPlaying(FALSE); 504 mediaPlayerState->setPlaying(FALSE);
505 mediaPlayerState->setPlaying(TRUE); 505 mediaPlayerState->setPlaying(TRUE);
506 d->selectedFiles->unSelect(); 506 d->selectedFiles->unSelect();
507} 507}
508 508
509 509
510void PlayListWidget::addToSelection( QListViewItem *it) { 510void PlayListWidget::addToSelection( QListViewItem *it) {
511 d->setDocumentUsed = FALSE; 511 d->setDocumentUsed = FALSE;
512 512
513 if(it) { 513 if(it) {
514 switch ( whichList()) { 514 switch ( whichList()) {
515 case 1: { 515 case 1: {
516 QListIterator<DocLnk> dit( files.children() ); 516 QListIterator<DocLnk> dit( files.children() );
517 for ( ; dit.current(); ++dit ) { 517 for ( ; dit.current(); ++dit ) {
518 if( dit.current()->name() == it->text(0)) { 518 if( dit.current()->name() == it->text(0)) {
519 if(QFileInfo( dit.current()->file()).exists()) { 519 if(QFileInfo( dit.current()->file()).exists()) {
520 d->selectedFiles->addToSelection( **dit ); 520 d->selectedFiles->addToSelection( **dit );
521 qDebug("blah "+ dit.current()->name()); 521// qDebug("blah "+ dit.current()->name());
522 d->selectedFiles->setSelectedItem( dit.current()->name()); 522// d->selectedFiles->setSelectedItem( dit.current()->name());
523 } 523 }
524 } 524 }
525 } 525 }
526 writeCurrentM3u(); 526 writeCurrentM3u();
527 } 527 }
528 break; 528 break;
529 case 2: { 529 case 2: {
530 QListIterator<DocLnk> dit( vFiles.children() ); 530 QListIterator<DocLnk> dit( vFiles.children() );
531 for ( ; dit.current(); ++dit ) { 531 for ( ; dit.current(); ++dit ) {
532 if( dit.current()->name() == it->text(0)) { 532 if( dit.current()->name() == it->text(0)) {
533 if( QFileInfo( dit.current()->file()).exists() ) { 533 if( QFileInfo( dit.current()->file()).exists() ) {
534 d->selectedFiles->addToSelection( **dit ); 534 d->selectedFiles->addToSelection( **dit );
535 qDebug("blah "+ dit.current()->name()); 535// qDebug("blah "+ dit.current()->name());
536 d->selectedFiles->setSelectedItem( dit.current()->name()); 536// d->selectedFiles->setSelectedItem( dit.current()->name());
537 } 537 }
538 } 538 }
539 } 539 }
540 writeCurrentM3u(); 540 writeCurrentM3u();
541 541
542 } 542 }
543 break; 543 break;
544 case 0: 544 case 0:
545 break; 545 break;
546 }; 546 };
547 tabWidget->setCurrentPage(0); 547 tabWidget->setCurrentPage(0);
548 548
549 } 549 }
550} 550}
551 551
552 552
553void PlayListWidget::tabChanged(QWidget *) { 553void PlayListWidget::tabChanged(QWidget *) {
554 554
555 switch ( whichList()) { 555 switch ( whichList()) {
556 case 0: 556 case 0:
557 { 557 {
558 if( !tbDeletePlaylist->isHidden() ) { 558 if( !tbDeletePlaylist->isHidden() ) {
559 tbDeletePlaylist->hide(); 559 tbDeletePlaylist->hide();
560 } 560 }
561 d->tbRemoveFromList->setEnabled(TRUE); 561 d->tbRemoveFromList->setEnabled(TRUE);
562 d->tbAddToList->setEnabled(FALSE); 562 d->tbAddToList->setEnabled(FALSE);
563 } 563 }
564 break; 564 break;
565 case 1: 565 case 1:
566 { 566 {
567 audioView->clear(); 567 audioView->clear();
568 populateAudioView(); 568 populateAudioView();
569 569
570 if( !tbDeletePlaylist->isHidden() ) { 570 if( !tbDeletePlaylist->isHidden() ) {
571 tbDeletePlaylist->hide(); 571 tbDeletePlaylist->hide();
572 } 572 }
573 d->tbRemoveFromList->setEnabled(FALSE); 573 d->tbRemoveFromList->setEnabled(FALSE);
574 d->tbAddToList->setEnabled(TRUE); 574 d->tbAddToList->setEnabled(TRUE);
575 } 575 }
576 break; 576 break;
577 case 2: 577 case 2:
578 { 578 {
579 videoView->clear(); 579 videoView->clear();
580 populateVideoView(); 580 populateVideoView();
581 if( !tbDeletePlaylist->isHidden() ) { 581 if( !tbDeletePlaylist->isHidden() ) {
582 tbDeletePlaylist->hide(); 582 tbDeletePlaylist->hide();
583 } 583 }
584 d->tbRemoveFromList->setEnabled(FALSE); 584 d->tbRemoveFromList->setEnabled(FALSE);
585 d->tbAddToList->setEnabled(TRUE); 585 d->tbAddToList->setEnabled(TRUE);
586 } 586 }
587 break; 587 break;
588 case 3: 588 case 3:
589 { 589 {
590 if( tbDeletePlaylist->isHidden() ) { 590 if( tbDeletePlaylist->isHidden() ) {
591 tbDeletePlaylist->show(); 591 tbDeletePlaylist->show();
592 } 592 }
593 playLists->reread(); 593 playLists->reread();
594 } 594 }
595 break; 595 break;
596 }; 596 };
597} 597}
598 598
599 599
600void PlayListWidget::btnPlay(bool b) { 600void PlayListWidget::btnPlay(bool b) {
601// mediaPlayerState->setPlaying(false); 601// mediaPlayerState->setPlaying(false);
602 mediaPlayerState->setPlaying(b); 602 mediaPlayerState->setPlaying(b);
603 insanityBool=FALSE; 603 insanityBool=FALSE;
604} 604}
605 605
606void PlayListWidget::deletePlaylist() { 606void PlayListWidget::deletePlaylist() {
607 switch( QMessageBox::information( this, (tr("Remove Playlist?")), 607 switch( QMessageBox::information( this, (tr("Remove Playlist?")),
608 (tr("You really want to delete\nthis playlist?")), 608 (tr("You really want to delete\nthis playlist?")),
609 (tr("Yes")), (tr("No")), 0 )){ 609 (tr("Yes")), (tr("No")), 0 )){
610 case 0: // Yes clicked, 610 case 0: // Yes clicked,
611 QFile().remove(playLists->selectedDocument().file()); 611 QFile().remove(playLists->selectedDocument().file());
612 QFile().remove(playLists->selectedDocument().linkFile()); 612 QFile().remove(playLists->selectedDocument().linkFile());
613 playLists->reread(); 613 playLists->reread();
614 break; 614 break;
615 case 1: // Cancel 615 case 1: // Cancel
616 break; 616 break;
617 }; 617 };
618} 618}
619 619
620 620
621void PlayListWidget::playSelected() { 621void PlayListWidget::playSelected() {
622 btnPlay( TRUE); 622 btnPlay( TRUE);
623} 623}
624 624
625 625
626void PlayListWidget::scanForAudio() { 626void PlayListWidget::scanForAudio() {
627// qDebug("scan for audio"); 627// qDebug("scan for audio");
628 files.detachChildren(); 628 files.detachChildren();
629 QListIterator<DocLnk> sdit( files.children() ); 629 QListIterator<DocLnk> sdit( files.children() );
630 for ( ; sdit.current(); ++sdit ) { 630 for ( ; sdit.current(); ++sdit ) {
631 delete sdit.current(); 631 delete sdit.current();
632 } 632 }
633// Global::findDocuments( &files, "audio/*"); 633// Global::findDocuments( &files, "audio/*");
634 Global::findDocuments( &files, audioMimes); 634 Global::findDocuments( &files, audioMimes);
635 audioScan = TRUE; 635 audioScan = TRUE;
636} 636}
637 637
638void PlayListWidget::scanForVideo() { 638void PlayListWidget::scanForVideo() {
639// qDebug("scan for video"); 639// qDebug("scan for video");
640 vFiles.detachChildren(); 640 vFiles.detachChildren();
641 QListIterator<DocLnk> sdit( vFiles.children() ); 641 QListIterator<DocLnk> sdit( vFiles.children() );
642 for ( ; sdit.current(); ++sdit ) { 642 for ( ; sdit.current(); ++sdit ) {
643 delete sdit.current(); 643 delete sdit.current();
644 } 644 }
645 Global::findDocuments(&vFiles, "video/*"); 645 Global::findDocuments(&vFiles, "video/*");
646 videoScan = TRUE; 646 videoScan = TRUE;
647} 647}
648 648
649void PlayListWidget::populateAudioView() { 649void PlayListWidget::populateAudioView() {
650 audioView->clear(); 650 audioView->clear();
651 StorageInfo storageInfo; 651 StorageInfo storageInfo;
652 const QList<FileSystem> &fs = storageInfo.fileSystems(); 652 const QList<FileSystem> &fs = storageInfo.fileSystems();
653 if(!audioScan) { 653 if(!audioScan) {
654 scanForAudio(); 654 scanForAudio();
655 } 655 }
656 656
657 QListIterator<DocLnk> dit( files.children() ); 657 QListIterator<DocLnk> dit( files.children() );
658 QListIterator<FileSystem> it ( fs ); 658 QListIterator<FileSystem> it ( fs );
659 659
660 QString storage; 660 QString storage;
661 for ( ; dit.current(); ++dit ) { 661 for ( ; dit.current(); ++dit ) {
662 for( ; it.current(); ++it ){ 662 for( ; it.current(); ++it ){
663 const QString name = (*it)->name(); 663 const QString name = (*it)->name();
664 const QString path = (*it)->path(); 664 const QString path = (*it)->path();
665 if(dit.current()->file().find(path) != -1 ) { 665 if(dit.current()->file().find(path) != -1 ) {
666 storage = name; 666 storage = name;
667 } 667 }
668 } 668 }
669 669
670 QListViewItem * newItem; 670 QListViewItem * newItem;
671 if ( QFile( dit.current()->file()).exists() || 671 if ( QFile( dit.current()->file()).exists() ||
672 dit.current()->file().left(4) == "http" ) { 672 dit.current()->file().left(4) == "http" ) {
673 long size; 673 long size;
674 if( dit.current()->file().left(4) == "http" ) 674 if( dit.current()->file().left(4) == "http" )
675 size=0; 675 size=0;
676 else 676 else
677 size = QFile( dit.current()->file() ).size(); 677 size = QFile( dit.current()->file() ).size();
678 newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), 678 newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(),
679 QString::number(size ), storage, dit.current()->file()); 679 QString::number(size ), storage, dit.current()->file());
680 newItem->setPixmap( 0, Resource::loadPixmap( "opieplayer2/musicfile" ) ); 680 newItem->setPixmap( 0, Resource::loadPixmap( "opieplayer2/musicfile" ) );
681 } 681 }
682 } 682 }
683} 683}
684 684
685 685
686void PlayListWidget::populateVideoView() { 686void PlayListWidget::populateVideoView() {
687 videoView->clear(); 687 videoView->clear();
688 StorageInfo storageInfo; 688 StorageInfo storageInfo;
689 const QList<FileSystem> &fs = storageInfo.fileSystems(); 689 const QList<FileSystem> &fs = storageInfo.fileSystems();
690 690
691 if(!videoScan ) { 691 if(!videoScan ) {
692 scanForVideo(); 692 scanForVideo();
693 } 693 }
694 694
695 QListIterator<DocLnk> Vdit( vFiles.children() ); 695 QListIterator<DocLnk> Vdit( vFiles.children() );
696 QListIterator<FileSystem> it ( fs ); 696 QListIterator<FileSystem> it ( fs );
697 videoView->clear(); 697 videoView->clear();
698 QString storage, pathName; 698 QString storage, pathName;
699 for ( ; Vdit.current(); ++Vdit ) { 699 for ( ; Vdit.current(); ++Vdit ) {
700 for( ; it.current(); ++it ) { 700 for( ; it.current(); ++it ) {
701 const QString name = (*it)->name(); 701 const QString name = (*it)->name();
702 const QString path = (*it)->path(); 702 const QString path = (*it)->path();
703 if( Vdit.current()->file().find(path) != -1 ) { 703 if( Vdit.current()->file().find(path) != -1 ) {
704 storage=name; 704 storage=name;
705 pathName=path; 705 pathName=path;
706 } 706 }
707 } 707 }
708 708
709 QListViewItem * newItem; 709 QListViewItem * newItem;
710 if ( QFile( Vdit.current()->file() ).exists() ) { 710 if ( QFile( Vdit.current()->file() ).exists() ) {
711 newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), 711 newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(),
712 QString::number( QFile( Vdit.current()->file() ).size() ), 712 QString::number( QFile( Vdit.current()->file() ).size() ),
713 storage, Vdit.current()->file()); 713 storage, Vdit.current()->file());
714 newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" ) ); 714 newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" ) );
715 } 715 }
716 } 716 }
717} 717}
718 718
719 719
720void PlayListWidget::openFile() { 720void PlayListWidget::openFile() {
721 // http://66.28.164.33:2080 721 // http://66.28.164.33:2080
722 // http://somafm.com/star0242.m3u 722 // http://somafm.com/star0242.m3u
723 QString filename, name; 723 QString filename, name;
724 InputDialog *fileDlg; 724 InputDialog *fileDlg;
725 fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); 725 fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0);
726 fileDlg->exec(); 726 fileDlg->exec();
727 if( fileDlg->result() == 1 ) { 727 if( fileDlg->result() == 1 ) {
728 filename = fileDlg->text(); 728 filename = fileDlg->text();
729 qDebug( "Selected filename is " + filename ); 729 qDebug( "Selected filename is " + filename );
730 Om3u *m3uList; 730 Om3u *m3uList;
731 DocLnk lnk; 731 DocLnk lnk;
732 Config cfg( "OpiePlayer" ); 732 Config cfg( "OpiePlayer" );
733 cfg.setGroup("PlayList"); 733 cfg.setGroup("PlayList");
734 734
735 if(filename.left(4) == "http") { 735 if(filename.left(4) == "http") {
736 QString m3uFile, m3uFilePath; 736 QString m3uFile, m3uFilePath;
737 if(filename.find(":",8,TRUE) != -1) { //found a port 737 if(filename.find(":",8,TRUE) != -1) { //found a port
738 m3uFile = filename.left( filename.find( ":",8,TRUE)); 738 m3uFile = filename.left( filename.find( ":",8,TRUE));
739 m3uFile = m3uFile.right( 7); 739 m3uFile = m3uFile.right( 7);
740 } else if(filename.left(4) == "http"){ 740 } else if(filename.left(4) == "http"){
741 m3uFile=filename; 741 m3uFile=filename;
742 m3uFile = m3uFile.right( m3uFile.length() - 7); 742 m3uFile = m3uFile.right( m3uFile.length() - 7);
743 } else{ 743 } else{
744 m3uFile=filename; 744 m3uFile=filename;
745 } 745 }
746 746
747// qDebug("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"+ m3uFile); 747// qDebug("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"+ m3uFile);
748 lnk.setName( filename ); //sets name 748 lnk.setName( filename ); //sets name
749 lnk.setFile( filename ); //sets file name 749 lnk.setFile( filename ); //sets file name
750 750
751// lnk.setIcon("opieplayer2/musicfile"); 751// lnk.setIcon("opieplayer2/musicfile");
752 752
753 d->selectedFiles->addToSelection( lnk ); 753 d->selectedFiles->addToSelection( lnk );
754 writeCurrentM3u(); 754 writeCurrentM3u();
755 d->selectedFiles->setSelectedItem( lnk->name()); 755 d->selectedFiles->setSelectedItem( lnk.name());
756 } 756 }
757 else if( filename.right( 3) == "m3u" ) { 757 else if( filename.right( 3) == "m3u" ) {
758 readm3u( filename ); 758 readm3u( filename );
759 759
760 } else if( filename.right(3) == "pls" ) { 760 } else if( filename.right(3) == "pls" ) {
761 readPls( filename ); 761 readPls( filename );
762 } else { 762 } else {
763 lnk.setName( QFileInfo(filename).baseName() ); //sets name 763 lnk.setName( QFileInfo(filename).baseName() ); //sets name
764 lnk.setFile( filename ); //sets file name 764 lnk.setFile( filename ); //sets file name
765 d->selectedFiles->addToSelection( lnk); 765 d->selectedFiles->addToSelection( lnk);
766 writeCurrentM3u(); 766 writeCurrentM3u();
767 d->selectedFiles->setSelectedItem( lnk.name()); 767 d->selectedFiles->setSelectedItem( lnk.name());
768 } 768 }
769 } 769 }
770 770
771 if( fileDlg ) { 771 if( fileDlg ) {
772 delete fileDlg; 772 delete fileDlg;
773 } 773 }
774} 774}
775 775
776/* 776/*
777reads m3u and shows files/urls to playlist widget */ 777reads m3u and shows files/urls to playlist widget */
778void PlayListWidget::readm3u( const QString &filename ) { 778void PlayListWidget::readm3u( const QString &filename ) {
779 qDebug( "read m3u filename " + filename ); 779 qDebug( "read m3u filename " + filename );
780 780
781 Om3u *m3uList; 781 Om3u *m3uList;
782 QString s, name; 782 QString s, name;
783 m3uList = new Om3u( filename, IO_ReadOnly ); 783 m3uList = new Om3u( filename, IO_ReadOnly );
784 m3uList->readM3u(); 784 m3uList->readM3u();
785 DocLnk lnk; 785 DocLnk lnk;
786 for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { 786 for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) {
787 s = *it; 787 s = *it;
788// qDebug("reading "+ s); 788// qDebug("reading "+ s);
789 if(s.left(4)=="http") { 789 if(s.left(4)=="http") {
790 lnk.setName( s ); //sets file name 790 lnk.setName( s ); //sets file name
791 lnk.setIcon("opieplayer2/musicfile"); 791 lnk.setIcon("opieplayer2/musicfile");
792// if(s.right(4) != '.' || s.right(5) != '.') 792// if(s.right(4) != '.' || s.right(5) != '.')
793// lnk.setFile( s+"/"); //if url with no extension 793// lnk.setFile( s+"/"); //if url with no extension
794// else 794// else
795 lnk.setFile( s ); //sets file name 795 lnk.setFile( s ); //sets file name
796 796
797 } else { 797 } else {
798 // if( QFileInfo( s ).exists() ) { 798 // if( QFileInfo( s ).exists() ) {
799 lnk.setName( QFileInfo(s).baseName()); 799 lnk.setName( QFileInfo(s).baseName());
800 // if(s.right(4) == '.') {//if regular file 800 // if(s.right(4) == '.') {//if regular file
801 if(s.left(1) != "/") { 801 if(s.left(1) != "/") {
802 // qDebug("set link "+QFileInfo(filename).dirPath()+"/"+s); 802 // qDebug("set link "+QFileInfo(filename).dirPath()+"/"+s);
803 lnk.setFile( QFileInfo(filename).dirPath()+"/"+s); 803 lnk.setFile( QFileInfo(filename).dirPath()+"/"+s);
804// lnk.setIcon(MimeType(s).pixmap() ); 804// lnk.setIcon(MimeType(s).pixmap() );
805// lnk.setIcon("SoundPlayer"); 805// lnk.setIcon("SoundPlayer");
806 } else { 806 } else {
807 // qDebug("set link2 "+s); 807 // qDebug("set link2 "+s);
808 lnk.setFile( s); 808 lnk.setFile( s);
809// lnk.setIcon(MimeType(s).pixmap() ); 809// lnk.setIcon(MimeType(s).pixmap() );
810// lnk.setIcon("SoundPlayer"); 810// lnk.setIcon("SoundPlayer");
811 } 811 }
812 } 812 }
813 d->selectedFiles->addToSelection( lnk ); 813 d->selectedFiles->addToSelection( lnk );
814 } 814 }
815 Config config( "OpiePlayer" ); 815 Config config( "OpiePlayer" );
816 config.setGroup( "PlayList" ); 816 config.setGroup( "PlayList" );
817 817
818 config.writeEntry("CurrentPlaylist",filename); 818 config.writeEntry("CurrentPlaylist",filename);
819 config.write(); 819 config.write();
820 currentPlayList=filename; 820 currentPlayList=filename;
821 821
822// m3uList->write(); 822// m3uList->write();
823 m3uList->close(); 823 m3uList->close();
824 if(m3uList) delete m3uList; 824 if(m3uList) delete m3uList;
825 825
826 d->selectedFiles->setSelectedItem( s); 826 d->selectedFiles->setSelectedItem( s);
827 setCaption(tr("OpiePlayer: ")+ QFileInfo(filename).baseName()); 827 setCaption(tr("OpiePlayer: ")+ QFileInfo(filename).baseName());
828 828
829} 829}
830 830
831/* 831/*
832reads pls and adds files/urls to playlist */ 832reads pls and adds files/urls to playlist */
833void PlayListWidget::readPls( const QString &filename ) { 833void PlayListWidget::readPls( const QString &filename ) {
834 834
835 qDebug( "pls filename is " + filename ); 835 qDebug( "pls filename is " + filename );
836 Om3u *m3uList; 836 Om3u *m3uList;
837 QString s, name; 837 QString s, name;
838 m3uList = new Om3u( filename, IO_ReadOnly ); 838 m3uList = new Om3u( filename, IO_ReadOnly );
839 m3uList->readPls(); 839 m3uList->readPls();
840 840
841 for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { 841 for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) {
842 s = *it; 842 s = *it;
843 // s.replace( QRegExp( "%20" )," " ); 843 // s.replace( QRegExp( "%20" )," " );
844 DocLnk lnk( s ); 844 DocLnk lnk( s );
845 QFileInfo f( s ); 845 QFileInfo f( s );
846 QString name = f.baseName(); 846 QString name = f.baseName();
847 847
848 if( name.left( 4 ) == "http" ) { 848 if( name.left( 4 ) == "http" ) {
849 name = s.right( s.length() - 7); 849 name = s.right( s.length() - 7);
850 } else { 850 } else {
851 name = s; 851 name = s;
852 } 852 }
853 853
854 name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 ); 854 name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 );
855 855
856 lnk.setName( name ); 856 lnk.setName( name );
857 if( s.at( s.length() - 4) == '.') {// if this is probably a file 857 if( s.at( s.length() - 4) == '.') {// if this is probably a file
858 lnk.setFile( s ); 858 lnk.setFile( s );
859 } else { //if its a url 859 } else { //if its a url
860// if( name.right( 1 ).find( '/' ) == -1) { 860// if( name.right( 1 ).find( '/' ) == -1) {
861// s += "/"; 861// s += "/";
862// } 862// }
863 lnk.setFile( s ); 863 lnk.setFile( s );
864 } 864 }
865 lnk.setType( "audio/x-mpegurl" ); 865 lnk.setType( "audio/x-mpegurl" );
866 866
867 lnk.writeLink(); 867 lnk.writeLink();
868 d->selectedFiles->addToSelection( lnk ); 868 d->selectedFiles->addToSelection( lnk );
869 } 869 }
870 870
871 m3uList->close(); 871 m3uList->close();
872 if(m3uList) delete m3uList; 872 if(m3uList) delete m3uList;
873} 873}
874 874
875/* 875/*
876 writes current playlist to current m3u file */ 876 writes current playlist to current m3u file */
877void PlayListWidget::writeCurrentM3u() { 877void PlayListWidget::writeCurrentM3u() {
878 qDebug("writing to current m3u"); 878 qDebug("writing to current m3u");
879 Config cfg( "OpiePlayer" ); 879 Config cfg( "OpiePlayer" );
880 cfg.setGroup("PlayList"); 880 cfg.setGroup("PlayList");
881 QString currentPlaylist = cfg.readEntry("CurrentPlaylist","default"); 881 QString currentPlaylist = cfg.readEntry("CurrentPlaylist","default");
882 882
883 Om3u *m3uList; 883 Om3u *m3uList;
884 m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate ); 884 m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate );
885 if( d->selectedFiles->first()) { 885 if( d->selectedFiles->first()) {
886 886
887 do { 887 do {
888 qDebug( "add writeCurrentM3u " +d->selectedFiles->current()->file()); 888 qDebug( "add writeCurrentM3u " +d->selectedFiles->current()->file());
889 m3uList->add( d->selectedFiles->current()->file() ); 889 m3uList->add( d->selectedFiles->current()->file() );
890 } 890 }
891 while ( d->selectedFiles->next() ); 891 while ( d->selectedFiles->next() );
892 qDebug( "<<<<<<<<<<<<>>>>>>>>>>>>>>>>>" ); 892 qDebug( "<<<<<<<<<<<<>>>>>>>>>>>>>>>>>" );
893 m3uList->write(); 893 m3uList->write();
894 m3uList->close(); 894 m3uList->close();
895 895
896 if(m3uList) delete m3uList; 896 if(m3uList) delete m3uList;
897 } 897 }
898 898
899} 899}
900 900
901 /* 901 /*
902 writes current playlist to m3u file */ 902 writes current playlist to m3u file */
903void PlayListWidget::writem3u() { 903void PlayListWidget::writem3u() {
904 InputDialog *fileDlg; 904 InputDialog *fileDlg;
905 fileDlg = new InputDialog( this, tr( "Save m3u Playlist " ), TRUE, 0); 905 fileDlg = new InputDialog( this, tr( "Save m3u Playlist " ), TRUE, 0);
906 fileDlg->exec(); 906 fileDlg->exec();
907 QString name, filename, list; 907 QString name, filename, list;
908 Om3u *m3uList; 908 Om3u *m3uList;
909 909
910 if( fileDlg->result() == 1 ) { 910 if( fileDlg->result() == 1 ) {
911 name = fileDlg->text(); 911 name = fileDlg->text();
912// qDebug( filename ); 912// qDebug( filename );
913 913
914 if( name.left( 1) != "/" ) { 914 if( name.left( 1) != "/" ) {
915 filename = QPEApplication::documentDir() + "/" + name; 915 filename = QPEApplication::documentDir() + "/" + name;
916 } 916 }
917 917
918 if( name.right( 3 ) != "m3u" ) { 918 if( name.right( 3 ) != "m3u" ) {
919 filename = QPEApplication::documentDir() + "/" +name+".m3u"; 919 filename = QPEApplication::documentDir() + "/" +name+".m3u";
920 } 920 }
921 921
922 if( d->selectedFiles->first()) { 922 if( d->selectedFiles->first()) {
923 m3uList = new Om3u(filename, IO_ReadWrite); 923 m3uList = new Om3u(filename, IO_ReadWrite);
924 924
925 do { 925 do {
926 m3uList->add( d->selectedFiles->current()->file()); 926 m3uList->add( d->selectedFiles->current()->file());
927 } 927 }
928 while ( d->selectedFiles->next() ); 928 while ( d->selectedFiles->next() );
929 // qDebug( list ); 929 // qDebug( list );
930 m3uList->write(); 930 m3uList->write();
931 m3uList->close(); 931 m3uList->close();
932 if(m3uList) delete m3uList; 932 if(m3uList) delete m3uList;
933 933
934 if(fileDlg) delete fileDlg; 934 if(fileDlg) delete fileDlg;
935 935
936 DocLnk lnk; 936 DocLnk lnk;
937 lnk.setFile( filename); 937 lnk.setFile( filename);
938// lnk.setIcon("opieplayer2/playlist2"); 938// lnk.setIcon("opieplayer2/playlist2");
939 lnk.setName( name); //sets file name 939 lnk.setName( name); //sets file name
940 940
941 // qDebug(filename); 941 // qDebug(filename);
942 Config config( "OpiePlayer" ); 942 Config config( "OpiePlayer" );
943 config.setGroup( "PlayList" ); 943 config.setGroup( "PlayList" );
944 944
945 config.writeEntry("CurrentPlaylist",filename); 945 config.writeEntry("CurrentPlaylist",filename);
946 currentPlayList=filename; 946 currentPlayList=filename;
947 947
948 if(!lnk.writeLink()) { 948 if(!lnk.writeLink()) {
949 qDebug("Writing doclink did not work"); 949 qDebug("Writing doclink did not work");
950 } 950 }
951 951
952 setCaption(tr("OpiePlayer: ") + name); 952 setCaption(tr("OpiePlayer: ") + name);
953 } 953 }
954 } 954 }
955} 955}
956 956
957void PlayListWidget::keyReleaseEvent( QKeyEvent *e ) { 957void PlayListWidget::keyReleaseEvent( QKeyEvent *e ) {
958 switch ( e->key() ) { 958 switch ( e->key() ) {
959 ////////////////////////////// Zaurus keys 959 ////////////////////////////// Zaurus keys
960 case Key_F9: //activity 960 case Key_F9: //activity
961 // if(audioUI->isHidden()) 961 // if(audioUI->isHidden())
962 // audioUI->showMaximized(); 962 // audioUI->showMaximized();
963 break; 963 break;
964 case Key_F10: //contacts 964 case Key_F10: //contacts
965 // if( videoUI->isHidden()) 965 // if( videoUI->isHidden())
966 // videoUI->showMaximized(); 966 // videoUI->showMaximized();
967 break; 967 break;
968 case Key_F11: //menu 968 case Key_F11: //menu
969 break; 969 break;
970 case Key_F12: //home 970 case Key_F12: //home
971 // doBlank(); 971 // doBlank();
972 break; 972 break;
973 case Key_F13: //mail 973 case Key_F13: //mail
974 // doUnblank(); 974 // doUnblank();
975 break; 975 break;
976 case Key_Q: //add to playlist 976 case Key_Q: //add to playlist
977 addSelected(); 977 addSelected();
978 break; 978 break;
979 case Key_R: //remove from playlist 979 case Key_R: //remove from playlist
980 removeSelected(); 980 removeSelected();
981 break; 981 break;
982 // case Key_P: //play 982 // case Key_P: //play
983 // qDebug("Play"); 983 // qDebug("Play");
984 // playSelected(); 984 // playSelected();
985 // break; 985 // break;
986 case Key_Space: 986 case Key_Space:
987 // playSelected(); puh 987 // playSelected(); puh
988 break; 988 break;
989 case Key_1: 989 case Key_1:
990 tabWidget->setCurrentPage( 0 ); 990 tabWidget->setCurrentPage( 0 );
991 break; 991 break;
992 case Key_2: 992 case Key_2:
993 tabWidget->setCurrentPage( 1 ); 993 tabWidget->setCurrentPage( 1 );
994 break; 994 break;
995 case Key_3: 995 case Key_3:
996 tabWidget->setCurrentPage( 2 ); 996 tabWidget->setCurrentPage( 2 );
997 break; 997 break;
998 case Key_4: 998 case Key_4:
999 tabWidget->setCurrentPage( 3 ); 999 tabWidget->setCurrentPage( 3 );
1000 break; 1000 break;
1001 case Key_Down: 1001 case Key_Down:
1002 if ( !d->selectedFiles->next() ) 1002 if ( !d->selectedFiles->next() )
1003 d->selectedFiles->first(); 1003 d->selectedFiles->first();
1004 break; 1004 break;
1005 case Key_Up: 1005 case Key_Up:
1006 if ( !d->selectedFiles->prev() ) 1006 if ( !d->selectedFiles->prev() )
1007 // d->selectedFiles->last(); 1007 // d->selectedFiles->last();
1008 break; 1008 break;
1009 } 1009 }
1010} 1010}
1011 1011
1012void PlayListWidget::pmViewActivated(int index) { 1012void PlayListWidget::pmViewActivated(int index) {
1013// qDebug("%d", index); 1013// qDebug("%d", index);
1014 switch(index) { 1014 switch(index) {
1015 case -16: 1015 case -16:
1016 { 1016 {
1017 mediaPlayerState->toggleFullscreen(); 1017 mediaPlayerState->toggleFullscreen();
1018 bool b=mediaPlayerState->fullscreen(); 1018 bool b=mediaPlayerState->fullscreen();
1019 pmView->setItemChecked( index, b); 1019 pmView->setItemChecked( index, b);
1020 Config cfg( "OpiePlayer" ); 1020 Config cfg( "OpiePlayer" );
1021 cfg.writeEntry( "FullScreen", b ); 1021 cfg.writeEntry( "FullScreen", b );
1022 } 1022 }
1023 break; 1023 break;
1024 }; 1024 };
1025} 1025}
1026 1026
1027void PlayListWidget::populateSkinsMenu() { 1027void PlayListWidget::populateSkinsMenu() {
1028 int item = 0; 1028 int item = 0;
1029 defaultSkinIndex = 0; 1029 defaultSkinIndex = 0;
1030 QString skinName; 1030 QString skinName;
1031 Config cfg( "OpiePlayer" ); 1031 Config cfg( "OpiePlayer" );
1032 cfg.setGroup("Options" ); 1032 cfg.setGroup("Options" );
1033 QString skin = cfg.readEntry( "Skin", "default" ); 1033 QString skin = cfg.readEntry( "Skin", "default" );
1034 1034
1035 QDir skinsDir( QPEApplication::qpeDir() + "/pics/opieplayer2/skins" ); 1035 QDir skinsDir( QPEApplication::qpeDir() + "/pics/opieplayer2/skins" );
1036 skinsDir.setFilter( QDir::Dirs ); 1036 skinsDir.setFilter( QDir::Dirs );
1037 skinsDir.setSorting(QDir::Name ); 1037 skinsDir.setSorting(QDir::Name );
1038 const QFileInfoList *skinslist = skinsDir.entryInfoList(); 1038 const QFileInfoList *skinslist = skinsDir.entryInfoList();
1039 QFileInfoListIterator it( *skinslist ); 1039 QFileInfoListIterator it( *skinslist );
1040 QFileInfo *fi; 1040 QFileInfo *fi;
1041 while ( ( fi = it.current() ) ) { 1041 while ( ( fi = it.current() ) ) {
1042 skinName = fi->fileName(); 1042 skinName = fi->fileName();
1043// qDebug( fi->fileName() ); 1043// qDebug( fi->fileName() );
1044 if( skinName != "." && skinName != ".." && skinName !="CVS" ) { 1044 if( skinName != "." && skinName != ".." && skinName !="CVS" ) {
1045 item = skinsMenu->insertItem( fi->fileName() ) ; 1045 item = skinsMenu->insertItem( fi->fileName() ) ;
1046 } 1046 }
1047 if( skinName == "default" ) { 1047 if( skinName == "default" ) {
1048 defaultSkinIndex = item; 1048 defaultSkinIndex = item;
1049 } 1049 }
1050 if( skinName == skin ) { 1050 if( skinName == skin ) {
1051 skinsMenu->setItemChecked( item, TRUE ); 1051 skinsMenu->setItemChecked( item, TRUE );
1052 } 1052 }
1053 ++it; 1053 ++it;
1054 } 1054 }
1055} 1055}
1056 1056
1057void PlayListWidget::skinsMenuActivated( int item ) { 1057void PlayListWidget::skinsMenuActivated( int item ) {
1058 for( int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i-- ) { 1058 for( int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i-- ) {
1059 skinsMenu->setItemChecked( i, FALSE ); 1059 skinsMenu->setItemChecked( i, FALSE );
1060 } 1060 }
1061 skinsMenu->setItemChecked( item, TRUE ); 1061 skinsMenu->setItemChecked( item, TRUE );
1062 1062
1063 Config cfg( "OpiePlayer" ); 1063 Config cfg( "OpiePlayer" );
1064 cfg.setGroup("Options"); 1064 cfg.setGroup("Options");
1065 cfg.writeEntry("Skin", skinsMenu->text( item ) ); 1065 cfg.writeEntry("Skin", skinsMenu->text( item ) );
1066} 1066}
1067 1067
1068int PlayListWidget::whichList() { 1068int PlayListWidget::whichList() {
1069 return tabWidget->currentPageIndex(); 1069 return tabWidget->currentPageIndex();
1070} 1070}
1071 1071
1072QString PlayListWidget::currentFileListPathName() { 1072QString PlayListWidget::currentFileListPathName() {
1073 switch (whichList()) { 1073 switch (whichList()) {
1074 case 1: 1074 case 1:
1075 return audioView->currentItem()->text(3); 1075 return audioView->currentItem()->text(3);
1076 break; 1076 break;
1077 case 2: 1077 case 2:
1078 return videoView->currentItem()->text(3); 1078 return videoView->currentItem()->text(3);
1079 break; 1079 break;
1080 }; 1080 };
1081 return ""; 1081 return "";
1082} 1082}