summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/playlistwidget.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp
index 27a3286..cba7b6d 100644
--- a/noncore/multimedia/opieplayer2/playlistwidget.cpp
+++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp
@@ -112,192 +112,196 @@ PlayListWidget::PlayListWidget( MediaPlayerState &mediaPlayerState, QWidget* par
112 connect( tbDeletePlaylist, ( SIGNAL( released() ) ), 112 connect( tbDeletePlaylist, ( SIGNAL( released() ) ),
113 SLOT( deletePlaylist() ) ); 113 SLOT( deletePlaylist() ) );
114 connect( pmView, SIGNAL( activated( int ) ), 114 connect( pmView, SIGNAL( activated( int ) ),
115 this, SLOT( pmViewActivated( int ) ) ); 115 this, SLOT( pmViewActivated( int ) ) );
116 connect( skinsMenu, SIGNAL( activated( int ) ) , 116 connect( skinsMenu, SIGNAL( activated( int ) ) ,
117 this, SLOT( skinsMenuActivated( int ) ) ); 117 this, SLOT( skinsMenuActivated( int ) ) );
118 connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ), 118 connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ),
119 this,SLOT( playlistViewPressed( int, QListViewItem *, const QPoint&, int ) ) ); 119 this,SLOT( playlistViewPressed( int, QListViewItem *, const QPoint&, int ) ) );
120 connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int ) ), 120 connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int ) ),
121 this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int ) ) ); 121 this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int ) ) );
122 connect( audioView, SIGNAL( returnPressed( QListViewItem *) ), 122 connect( audioView, SIGNAL( returnPressed( QListViewItem *) ),
123 this,SLOT( playIt( QListViewItem *) ) ); 123 this,SLOT( playIt( QListViewItem *) ) );
124 connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), 124 connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ),
125 this, SLOT( addToSelection( QListViewItem *) ) ); 125 this, SLOT( addToSelection( QListViewItem *) ) );
126 connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ), 126 connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ),
127 this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int) ) ); 127 this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int) ) );
128 connect( videoView, SIGNAL( returnPressed( QListViewItem *) ), 128 connect( videoView, SIGNAL( returnPressed( QListViewItem *) ),
129 this,SLOT( playIt( QListViewItem *) ) ); 129 this,SLOT( playIt( QListViewItem *) ) );
130 connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), 130 connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ),
131 this, SLOT( addToSelection( QListViewItem *) ) ); 131 this, SLOT( addToSelection( QListViewItem *) ) );
132 connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), 132 connect( playLists, SIGNAL( fileSelected( const DocLnk &) ),
133 this, SLOT( loadList( const DocLnk & ) ) ); 133 this, SLOT( loadList( const DocLnk & ) ) );
134 connect( tabWidget, SIGNAL ( currentChanged(QWidget*) ), 134 connect( tabWidget, SIGNAL ( currentChanged(QWidget*) ),
135 this, SLOT( tabChanged( QWidget* ) ) ); 135 this, SLOT( tabChanged( QWidget* ) ) );
136 connect( &mediaPlayerState, SIGNAL( playingToggled( bool ) ), 136 connect( &mediaPlayerState, SIGNAL( playingToggled( bool ) ),
137 d->tbPlay, SLOT( setOn( bool ) ) ); 137 d->tbPlay, SLOT( setOn( bool ) ) );
138 connect( &mediaPlayerState, SIGNAL( loopingToggled( bool ) ), 138 connect( &mediaPlayerState, SIGNAL( loopingToggled( bool ) ),
139 d->tbLoop, SLOT( setOn( bool ) ) ); 139 d->tbLoop, SLOT( setOn( bool ) ) );
140 connect( &mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), 140 connect( &mediaPlayerState, SIGNAL( shuffledToggled( bool ) ),
141 d->tbShuffle, SLOT( setOn( bool ) ) ); 141 d->tbShuffle, SLOT( setOn( bool ) ) );
142 connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), 142 connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ),
143 this, SLOT( playIt( QListViewItem *) ) ); 143 this, SLOT( playIt( QListViewItem *) ) );
144 connect ( gammaSlider, SIGNAL( valueChanged( int ) ), 144 connect ( gammaSlider, SIGNAL( valueChanged( int ) ),
145 &mediaPlayerState, SLOT( setVideoGamma( int ) ) ); 145 &mediaPlayerState, SLOT( setVideoGamma( int ) ) );
146 146
147 // see which skins are installed 147 // see which skins are installed
148 populateSkinsMenu(); 148 populateSkinsMenu();
149 initializeStates(); 149 initializeStates();
150 150
151 cfg.setGroup("PlayList"); 151 cfg.setGroup("PlayList");
152 QString currentPlaylist = cfg.readEntry( "CurrentPlaylist", "default"); 152 QString currentPlaylist = cfg.readEntry( "CurrentPlaylist", "default");
153 loadList(DocLnk( currentPlaylist ) ); 153 loadList(DocLnk( currentPlaylist ) );
154} 154}
155 155
156 156
157PlayListWidget::~PlayListWidget() { 157PlayListWidget::~PlayListWidget() {
158 delete d; 158 delete d;
159} 159}
160 160
161 161
162void PlayListWidget::initializeStates() { 162void PlayListWidget::initializeStates() {
163 d->tbPlay->setOn( mediaPlayerState.isPlaying() ); 163 d->tbPlay->setOn( mediaPlayerState.isPlaying() );
164 d->tbLoop->setOn( mediaPlayerState.isLooping() ); 164 d->tbLoop->setOn( mediaPlayerState.isLooping() );
165 d->tbShuffle->setOn( mediaPlayerState.isShuffled() ); 165 d->tbShuffle->setOn( mediaPlayerState.isShuffled() );
166 d->playListFrame->show(); 166 d->playListFrame->show();
167} 167}
168 168
169void PlayListWidget::writeDefaultPlaylist() { 169void PlayListWidget::writeDefaultPlaylist() {
170 170
171 Config config( "OpiePlayer" ); 171 Config config( "OpiePlayer" );
172 config.setGroup( "PlayList" ); 172 config.setGroup( "PlayList" );
173 QString filename=QPEApplication::documentDir() + "/default.m3u"; 173 QString filename=QPEApplication::documentDir() + "/default.m3u";
174 QString currentString = config.readEntry( "CurrentPlaylist", filename); 174 QString currentString = config.readEntry( "CurrentPlaylist", filename);
175 if( currentString == filename) { 175 if( currentString == filename) {
176 Om3u *m3uList; 176 Om3u *m3uList;
177 // qDebug("<<<<<<<<<<<<<default>>>>>>>>>>>>>>>>>>>"); 177 // qDebug("<<<<<<<<<<<<<default>>>>>>>>>>>>>>>>>>>");
178 if( d->selectedFiles->first() ) { 178 if( d->selectedFiles->first() ) {
179 m3uList = new Om3u(filename, IO_ReadWrite | IO_Truncate); 179 m3uList = new Om3u(filename, IO_ReadWrite | IO_Truncate);
180 do { 180 do {
181 // qDebug(d->selectedFiles->current()->file()); 181 // qDebug(d->selectedFiles->current()->file());
182 m3uList->add( d->selectedFiles->current()->file() ); 182 m3uList->add( d->selectedFiles->current()->file() );
183 } 183 }
184 while ( d->selectedFiles->next() ); 184 while ( d->selectedFiles->next() );
185 185
186 m3uList->write(); 186 m3uList->write();
187 m3uList->close(); 187 m3uList->close();
188 delete m3uList; 188 delete m3uList;
189 189
190 } 190 }
191 } 191 }
192} 192}
193 193
194void PlayListWidget::addToSelection( const DocLnk& lnk ) { 194void PlayListWidget::addToSelection( const DocLnk& lnk ) {
195 d->setDocumentUsed = FALSE; 195 d->setDocumentUsed = FALSE;
196 if( QFileInfo( lnk.file() ).exists() || 196 if( QFileInfo( lnk.file() ).exists() ||
197 lnk.file().left(4) == "http" ) { 197 lnk.file().left(4) == "http" ) {
198 d->selectedFiles->addToSelection( lnk ); 198 d->selectedFiles->addToSelection( lnk );
199 } 199 }
200// writeCurrentM3u(); 200// writeCurrentM3u();
201} 201}
202 202
203 203
204void PlayListWidget::clearList() { 204void PlayListWidget::clearList() {
205 while ( first() ) { 205 while ( first() ) {
206 d->selectedFiles->removeSelected(); 206 d->selectedFiles->removeSelected();
207 } 207 }
208 Config cfg( "OpiePlayer" );
209 cfg.setGroup("PlayList");
210 cfg.writeEntry("CurrentPlaylist","default");
211 setCaption("OpiePlayer");
208} 212}
209 213
210void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , int) { 214void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , int) {
211 switch (mouse) { 215 switch (mouse) {
212 case LeftButton: 216 case LeftButton:
213 break; 217 break;
214 case RightButton: 218 case RightButton:
215 { 219 {
216 QPopupMenu m; 220 QPopupMenu m;
217 m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() )); 221 m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() ));
218 m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() )); 222 m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() ));
219 m.exec( QCursor::pos() ); 223 m.exec( QCursor::pos() );
220 } 224 }
221 break; 225 break;
222 } 226 }
223} 227}
224 228
225 229
226void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *, const QPoint& , int ) { 230void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *, const QPoint& , int ) {
227 switch (mouse) { 231 switch (mouse) {
228 case LeftButton: 232 case LeftButton:
229 break; 233 break;
230 case RightButton: 234 case RightButton:
231 { 235 {
232 QPopupMenu m; 236 QPopupMenu m;
233 m.insertItem( tr( "Play" ), this, SLOT( playSelected() )); 237 m.insertItem( tr( "Play" ), this, SLOT( playSelected() ));
234 m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() )); 238 m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() ));
235 m.exec( QCursor::pos() ); 239 m.exec( QCursor::pos() );
236 } 240 }
237 break; 241 break;
238 } 242 }
239} 243}
240 244
241 245
242void PlayListWidget::addAllToList() { 246void PlayListWidget::addAllToList() {
243 247
244// QTime t; 248// QTime t;
245// t.start(); 249// t.start();
246 250
247 audioView->populateView(); 251 audioView->populateView();
248 252
249 QListViewItemIterator audioIt( audioView ); 253 QListViewItemIterator audioIt( audioView );
250 DocLnk lnk; 254 DocLnk lnk;
251 QString filename; 255 QString filename;
252 // iterate through all items of the listview 256 // iterate through all items of the listview
253 for ( ; audioIt.current(); ++audioIt ) { 257 for ( ; audioIt.current(); ++audioIt ) {
254 filename = audioIt.current()->text(3); 258 filename = audioIt.current()->text(3);
255 lnk.setName( QFileInfo(filename).baseName() ); //sets name 259 lnk.setName( QFileInfo(filename).baseName() ); //sets name
256 lnk.setFile( filename ); //sets file name 260 lnk.setFile( filename ); //sets file name
257 d->selectedFiles->addToSelection( lnk); 261 d->selectedFiles->addToSelection( lnk);
258 } 262 }
259 263
260 videoView->populateView(); 264 videoView->populateView();
261 265
262 QListViewItemIterator videoIt( videoView ); 266 QListViewItemIterator videoIt( videoView );
263 for ( ; videoIt.current(); ++videoIt ) { 267 for ( ; videoIt.current(); ++videoIt ) {
264 filename = videoIt.current()->text(3); 268 filename = videoIt.current()->text(3);
265 lnk.setName( QFileInfo(filename).baseName() ); //sets name 269 lnk.setName( QFileInfo(filename).baseName() ); //sets name
266 lnk.setFile( filename ); //sets file name 270 lnk.setFile( filename ); //sets file name
267 d->selectedFiles->addToSelection( lnk); 271 d->selectedFiles->addToSelection( lnk);
268 } 272 }
269 273
270 // d->selectedFiles->addToSelection( ); 274 // d->selectedFiles->addToSelection( );
271 // if ( it.current()->isSelected() ) 275 // if ( it.current()->isSelected() )
272 // lst->append( audioIt.current() ); 276 // lst->append( audioIt.current() );
273 // } 277 // }
274 278
275 279
276// if(!audioScan) 280// if(!audioScan)
277// scanForAudio(); 281// scanForAudio();
278// if(!videoScan) 282// if(!videoScan)
279// scanForVideo(); 283// scanForVideo();
280 284
281// DocLnkSet filesAll; 285// DocLnkSet filesAll;
282// Global::findDocuments(&filesAll, "video/*;"+audioMimes); 286// Global::findDocuments(&filesAll, "video/*;"+audioMimes);
283// QListIterator<DocLnk> Adit( filesAll.children() ); 287// QListIterator<DocLnk> Adit( filesAll.children() );
284// for ( ; Adit.current(); ++Adit ) { 288// for ( ; Adit.current(); ++Adit ) {
285// if( QFileInfo( Adit.current()->file() ).exists() ) { 289// if( QFileInfo( Adit.current()->file() ).exists() ) {
286// d->selectedFiles->addToSelection( **Adit ); 290// d->selectedFiles->addToSelection( **Adit );
287// } 291// }
288// } 292// }
289 293
290 // qDebug("elapsed time %d", t.elapsed() ); 294 // qDebug("elapsed time %d", t.elapsed() );
291 295
292 tabWidget->setCurrentPage(0); 296 tabWidget->setCurrentPage(0);
293 297
294 writeCurrentM3u(); 298 writeCurrentM3u();
295 d->selectedFiles->first(); 299 d->selectedFiles->first();
296} 300}
297 301
298 302
299void PlayListWidget::addAllMusicToList() { 303void PlayListWidget::addAllMusicToList() {
300 304
301 audioView->populateView(); 305 audioView->populateView();
302 306
303 QListViewItemIterator audioIt( audioView ); 307 QListViewItemIterator audioIt( audioView );
@@ -399,228 +403,228 @@ const DocLnk *PlayListWidget::current() const { // this is fugly
399 d->selectedFiles->first(); 403 d->selectedFiles->first();
400 lnk = d->selectedFiles->current(); 404 lnk = d->selectedFiles->current();
401 } 405 }
402 assert( lnk ); 406 assert( lnk );
403 return lnk; 407 return lnk;
404} 408}
405 409
406 410
407bool PlayListWidget::prev() { 411bool PlayListWidget::prev() {
408 if ( mediaPlayerState.isShuffled() ) { 412 if ( mediaPlayerState.isShuffled() ) {
409 const DocLnk *cur = current(); 413 const DocLnk *cur = current();
410 int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0)); 414 int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0));
411 for ( int i = 0; i < j; i++ ) { 415 for ( int i = 0; i < j; i++ ) {
412 if ( !d->selectedFiles->next() ) 416 if ( !d->selectedFiles->next() )
413 d->selectedFiles->first(); 417 d->selectedFiles->first();
414 } 418 }
415 if ( cur == current() ) 419 if ( cur == current() )
416 if ( !d->selectedFiles->next() ) { 420 if ( !d->selectedFiles->next() ) {
417 d->selectedFiles->first(); 421 d->selectedFiles->first();
418 } 422 }
419 return TRUE; 423 return TRUE;
420 } else { 424 } else {
421 if ( !d->selectedFiles->prev() ) { 425 if ( !d->selectedFiles->prev() ) {
422 if ( mediaPlayerState.isLooping() ) { 426 if ( mediaPlayerState.isLooping() ) {
423 return d->selectedFiles->last(); 427 return d->selectedFiles->last();
424 } else { 428 } else {
425 return FALSE; 429 return FALSE;
426 } 430 }
427 } 431 }
428 return TRUE; 432 return TRUE;
429 } 433 }
430} 434}
431 435
432 436
433bool PlayListWidget::next() { 437bool PlayListWidget::next() {
434//qDebug("<<<<<<<<<<<<next()"); 438//qDebug("<<<<<<<<<<<<next()");
435 if ( mediaPlayerState.isShuffled() ) { 439 if ( mediaPlayerState.isShuffled() ) {
436 return prev(); 440 return prev();
437 } else { 441 } else {
438 if ( !d->selectedFiles->next() ) { 442 if ( !d->selectedFiles->next() ) {
439 if ( mediaPlayerState.isLooping() ) { 443 if ( mediaPlayerState.isLooping() ) {
440 return d->selectedFiles->first(); 444 return d->selectedFiles->first();
441 } else { 445 } else {
442 return FALSE; 446 return FALSE;
443 } 447 }
444 } 448 }
445 return TRUE; 449 return TRUE;
446 } 450 }
447} 451}
448 452
449 453
450bool PlayListWidget::first() { 454bool PlayListWidget::first() {
451 return d->selectedFiles->first(); 455 return d->selectedFiles->first();
452} 456}
453 457
454 458
455bool PlayListWidget::last() { 459bool PlayListWidget::last() {
456 return d->selectedFiles->last(); 460 return d->selectedFiles->last();
457} 461}
458 462
459 463
460 void PlayListWidget::saveList() { 464 void PlayListWidget::saveList() {
461 writem3u(); 465 writem3u();
462 } 466 }
463 467
464 468
465void PlayListWidget::loadList( const DocLnk & lnk) { 469void PlayListWidget::loadList( const DocLnk & lnk) {
466 QString name = lnk.name(); 470 QString name = lnk.name();
467 // qDebug("<<<<<<<<<<<<<<<<<<<<<<<<currentList is "+name); 471 // qDebug("<<<<<<<<<<<<<<<<<<<<<<<<currentList is "+name);
468 472
469 if( name.length()>0) { 473 if( name.length()>0) {
470 setCaption("OpiePlayer: "+name); 474 setCaption("OpiePlayer: "+name);
471// qDebug("<<<<<<<<<<<<load list "+ lnk.file()); 475// qDebug("<<<<<<<<<<<<load list "+ lnk.file());
472 clearList(); 476 clearList();
473 readm3u(lnk.file()); 477 readm3u(lnk.file());
474 tabWidget->setCurrentPage(0); 478 tabWidget->setCurrentPage(0);
475 } 479 }
476} 480}
477 481
478void PlayListWidget::addSelected() { 482void PlayListWidget::addSelected() {
479 assert( inFileListMode() ); 483 assert( inFileListMode() );
480 484
481 QListViewItemIterator it( currentFileListView ); 485 QListViewItemIterator it( currentFileListView );
482 for ( ; it.current(); ++it ) 486 for ( ; it.current(); ++it )
483 if ( it.current()->isSelected() ) { 487 if ( it.current()->isSelected() ) {
484 QString filename = it.current()->text(3); 488 QString filename = it.current()->text(3);
485 489
486 DocLnk lnk; 490 DocLnk lnk;
487 lnk.setName( QFileInfo( filename ).baseName() ); //sets name 491 lnk.setName( QFileInfo( filename ).baseName() ); //sets name
488 lnk.setFile( filename ); //sets file name 492 lnk.setFile( filename ); //sets file name
489 493
490 d->selectedFiles->addToSelection( lnk ); 494 d->selectedFiles->addToSelection( lnk );
491 } 495 }
492 496
493 currentFileListView->clearSelection(); 497 currentFileListView->clearSelection();
494 498
495 tabWidget->setCurrentPage( 0 ); 499// tabWidget->setCurrentPage( 0 );
496 writeCurrentM3u(); 500 writeCurrentM3u();
497} 501}
498 502
499 503
500void PlayListWidget::removeSelected() { 504void PlayListWidget::removeSelected() {
501 d->selectedFiles->removeSelected( ); 505 d->selectedFiles->removeSelected( );
502 writeCurrentM3u(); 506 writeCurrentM3u();
503} 507}
504 508
505 509
506void PlayListWidget::playIt( QListViewItem *it) { 510void PlayListWidget::playIt( QListViewItem *it) {
507 if(!it) return; 511 if(!it) return;
508 mediaPlayerState.setPlaying(FALSE); 512 mediaPlayerState.setPlaying(FALSE);
509 mediaPlayerState.setPlaying(TRUE); 513 mediaPlayerState.setPlaying(TRUE);
510 d->selectedFiles->unSelect(); 514 d->selectedFiles->unSelect();
511} 515}
512 516
513 517
514void PlayListWidget::addToSelection( QListViewItem *it) { 518void PlayListWidget::addToSelection( QListViewItem *it) {
515 d->setDocumentUsed = FALSE; 519 d->setDocumentUsed = FALSE;
516 520
517 if(it) { 521 if(it) {
518 if ( currentTab() == CurrentPlayList ) 522 if ( currentTab() == CurrentPlayList )
519 return; 523 return;
520 // case 1: { 524 // case 1: {
521 DocLnk lnk; 525 DocLnk lnk;
522 QString filename; 526 QString filename;
523 527
524 filename=it->text(3); 528 filename=it->text(3);
525 lnk.setName( QFileInfo(filename).baseName() ); //sets name 529 lnk.setName( QFileInfo(filename).baseName() ); //sets name
526 lnk.setFile( filename ); //sets file name 530 lnk.setFile( filename ); //sets file name
527 d->selectedFiles->addToSelection( lnk); 531 d->selectedFiles->addToSelection( lnk);
528 532
529 writeCurrentM3u(); 533 writeCurrentM3u();
530 tabWidget->setCurrentPage(0); 534// tabWidget->setCurrentPage(0);
531 535
532 } 536 }
533} 537}
534 538
535 539
536void PlayListWidget::tabChanged(QWidget *) { 540void PlayListWidget::tabChanged(QWidget *) {
537 541
538 d->tbPlay->setEnabled( true ); 542 d->tbPlay->setEnabled( true );
539 543
540 disconnect( audioView, SIGNAL( itemsSelected( bool ) ), 544 disconnect( audioView, SIGNAL( itemsSelected( bool ) ),
541 d->tbPlay, SLOT( setEnabled( bool ) ) ); 545 d->tbPlay, SLOT( setEnabled( bool ) ) );
542 disconnect( videoView, SIGNAL( itemsSelected( bool ) ), 546 disconnect( videoView, SIGNAL( itemsSelected( bool ) ),
543 d->tbPlay, SLOT( setEnabled( bool ) ) ); 547 d->tbPlay, SLOT( setEnabled( bool ) ) );
544 548
545 currentFileListView = 0; 549 currentFileListView = 0;
546 550
547 switch ( currentTab() ) { 551 switch ( currentTab() ) {
548 case CurrentPlayList: 552 case CurrentPlayList:
549 { 553 {
550 if( !tbDeletePlaylist->isHidden() ) { 554 if( !tbDeletePlaylist->isHidden() ) {
551 tbDeletePlaylist->hide(); 555 tbDeletePlaylist->hide();
552 } 556 }
553 d->tbRemoveFromList->setEnabled(TRUE); 557 d->tbRemoveFromList->setEnabled(TRUE);
554 d->tbAddToList->setEnabled(FALSE); 558 d->tbAddToList->setEnabled(FALSE);
555 559
556 d->tbPlay->setEnabled( !d->selectedFiles->isEmpty() ); 560 d->tbPlay->setEnabled( !d->selectedFiles->isEmpty() );
557 } 561 }
558 break; 562 break;
559 case AudioFiles: 563 case AudioFiles:
560 { 564 {
561 audioView->populateView(); 565 audioView->populateView();
562 566
563 if( !tbDeletePlaylist->isHidden() ) { 567 if( !tbDeletePlaylist->isHidden() ) {
564 tbDeletePlaylist->hide(); 568 tbDeletePlaylist->hide();
565 } 569 }
566 d->tbRemoveFromList->setEnabled(FALSE); 570 d->tbRemoveFromList->setEnabled(FALSE);
567 d->tbAddToList->setEnabled(TRUE); 571 d->tbAddToList->setEnabled(TRUE);
568 572
569 connect( audioView, SIGNAL( itemsSelected( bool ) ), 573 connect( audioView, SIGNAL( itemsSelected( bool ) ),
570 d->tbPlay, SLOT( setEnabled( bool ) ) ); 574 d->tbPlay, SLOT( setEnabled( bool ) ) );
571 575
572 d->tbPlay->setEnabled( audioView->hasSelection() ); 576 d->tbPlay->setEnabled( audioView->hasSelection() );
573 577
574 currentFileListView = audioView; 578 currentFileListView = audioView;
575 } 579 }
576 break; 580 break;
577 case VideoFiles: 581 case VideoFiles:
578 { 582 {
579 videoView->populateView(); 583 videoView->populateView();
580 if( !tbDeletePlaylist->isHidden() ) { 584 if( !tbDeletePlaylist->isHidden() ) {
581 tbDeletePlaylist->hide(); 585 tbDeletePlaylist->hide();
582 } 586 }
583 d->tbRemoveFromList->setEnabled(FALSE); 587 d->tbRemoveFromList->setEnabled(FALSE);
584 d->tbAddToList->setEnabled(TRUE); 588 d->tbAddToList->setEnabled(TRUE);
585 589
586 connect( videoView, SIGNAL( itemsSelected( bool ) ), 590 connect( videoView, SIGNAL( itemsSelected( bool ) ),
587 d->tbPlay, SLOT( setEnabled( bool ) ) ); 591 d->tbPlay, SLOT( setEnabled( bool ) ) );
588 592
589 d->tbPlay->setEnabled( videoView->hasSelection() ); 593 d->tbPlay->setEnabled( videoView->hasSelection() );
590 594
591 currentFileListView = videoView; 595 currentFileListView = videoView;
592 } 596 }
593 break; 597 break;
594 case PlayLists: 598 case PlayLists:
595 { 599 {
596 if( tbDeletePlaylist->isHidden() ) { 600 if( tbDeletePlaylist->isHidden() ) {
597 tbDeletePlaylist->show(); 601 tbDeletePlaylist->show();
598 } 602 }
599 playLists->reread(); 603 playLists->reread();
600 d->tbAddToList->setEnabled(FALSE); 604 d->tbAddToList->setEnabled(FALSE);
601 605
602 d->tbPlay->setEnabled( false ); 606 d->tbPlay->setEnabled( false );
603 } 607 }
604 break; 608 break;
605 }; 609 };
606} 610}
607 611
608 612
609void PlayListWidget::btnPlay(bool b) { 613void PlayListWidget::btnPlay(bool b) {
610// mediaPlayerState->setPlaying(false); 614// mediaPlayerState->setPlaying(false);
611 mediaPlayerState.setPlaying(b); 615 mediaPlayerState.setPlaying(b);
612 insanityBool=FALSE; 616 insanityBool=FALSE;
613} 617}
614 618
615void PlayListWidget::deletePlaylist() { 619void PlayListWidget::deletePlaylist() {
616 switch( QMessageBox::information( this, (tr("Remove Playlist?")), 620 switch( QMessageBox::information( this, (tr("Remove Playlist?")),
617 (tr("You really want to delete\nthis playlist?")), 621 (tr("You really want to delete\nthis playlist?")),
618 (tr("Yes")), (tr("No")), 0 )){ 622 (tr("Yes")), (tr("No")), 0 )){
619 case 0: // Yes clicked, 623 case 0: // Yes clicked,
620 QFile().remove(playLists->selectedDocument().file()); 624 QFile().remove(playLists->selectedDocument().file());
621 QFile().remove(playLists->selectedDocument().linkFile()); 625 QFile().remove(playLists->selectedDocument().linkFile());
622 playLists->reread(); 626 playLists->reread();
623 break; 627 break;
624 case 1: // Cancel 628 case 1: // Cancel
625 break; 629 break;
626 }; 630 };