author | llornkcor <llornkcor> | 2002-12-16 03:52:02 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-12-16 03:52:02 (UTC) |
commit | b1880703eea8601e06cf3d3e8593b649cd1a485e (patch) (unidiff) | |
tree | a7c9d9c1bc2971d4a062cfb68b433bffa4c557d1 | |
parent | de714f7a5d6b50b4689a217bbed58180da8acc27 (diff) | |
download | opie-b1880703eea8601e06cf3d3e8593b649cd1a485e.zip opie-b1880703eea8601e06cf3d3e8593b649cd1a485e.tar.gz opie-b1880703eea8601e06cf3d3e8593b649cd1a485e.tar.bz2 |
some stuff from op2
-rw-r--r-- | core/multimedia/opieplayer/playlistwidget.cpp | 45 |
1 files changed, 29 insertions, 16 deletions
diff --git a/core/multimedia/opieplayer/playlistwidget.cpp b/core/multimedia/opieplayer/playlistwidget.cpp index 8b25a4c..30e4daa 100644 --- a/core/multimedia/opieplayer/playlistwidget.cpp +++ b/core/multimedia/opieplayer/playlistwidget.cpp | |||
@@ -24,130 +24,130 @@ | |||
24 | #include <qpe/qpemenubar.h> | 24 | #include <qpe/qpemenubar.h> |
25 | #include <qpe/qpetoolbar.h> | 25 | #include <qpe/qpetoolbar.h> |
26 | #include <qpe/fileselector.h> | 26 | #include <qpe/fileselector.h> |
27 | #include <qpe/qpeapplication.h> | 27 | #include <qpe/qpeapplication.h> |
28 | #include <qpe/lnkproperties.h> | 28 | #include <qpe/lnkproperties.h> |
29 | #include <qpe/storage.h> | 29 | #include <qpe/storage.h> |
30 | 30 | ||
31 | #include <qpe/applnk.h> | 31 | #include <qpe/applnk.h> |
32 | #include <qpe/config.h> | 32 | #include <qpe/config.h> |
33 | #include <qpe/global.h> | 33 | #include <qpe/global.h> |
34 | #include <qpe/resource.h> | 34 | #include <qpe/resource.h> |
35 | #include <qaction.h> | 35 | #include <qaction.h> |
36 | #include <qcursor.h> | 36 | #include <qcursor.h> |
37 | #include <qimage.h> | 37 | #include <qimage.h> |
38 | #include <qfile.h> | 38 | #include <qfile.h> |
39 | #include <qdir.h> | 39 | #include <qdir.h> |
40 | #include <qlayout.h> | 40 | #include <qlayout.h> |
41 | #include <qlabel.h> | 41 | #include <qlabel.h> |
42 | #include <qlist.h> | 42 | #include <qlist.h> |
43 | #include <qlistbox.h> | 43 | #include <qlistbox.h> |
44 | #include <qmainwindow.h> | 44 | #include <qmainwindow.h> |
45 | #include <qmessagebox.h> | 45 | #include <qmessagebox.h> |
46 | #include <qtoolbutton.h> | 46 | #include <qtoolbutton.h> |
47 | #include <qtabwidget.h> | 47 | #include <qtabwidget.h> |
48 | #include <qlistview.h> | 48 | #include <qlistview.h> |
49 | #include <qpoint.h> | 49 | #include <qpoint.h> |
50 | #include <qlineedit.h> | 50 | #include <qlineedit.h> |
51 | #include <qpushbutton.h> | 51 | #include <qpushbutton.h> |
52 | #include <qregexp.h> | 52 | #include <qregexp.h> |
53 | #include <qtextstream.h> | 53 | #include <qtextstream.h> |
54 | 54 | ||
55 | //#include <qtimer.h> | 55 | //#include <qtimer.h> |
56 | 56 | ||
57 | #include "playlistselection.h" | 57 | #include "playlistselection.h" |
58 | #include "playlistwidget.h" | 58 | #include "playlistwidget.h" |
59 | #include "mediaplayerstate.h" | 59 | #include "mediaplayerstate.h" |
60 | 60 | ||
61 | #include "inputDialog.h" | 61 | #include "inputDialog.h" |
62 | 62 | ||
63 | #include <stdlib.h> | 63 | #include <stdlib.h> |
64 | #include "audiowidget.h" | 64 | #include "audiowidget.h" |
65 | #include "videowidget.h" | 65 | #include "videowidget.h" |
66 | 66 | ||
67 | #include <unistd.h> | 67 | #include <unistd.h> |
68 | #include <sys/file.h> | 68 | #include <sys/file.h> |
69 | #include <sys/ioctl.h> | 69 | #include <sys/ioctl.h> |
70 | #include <sys/soundcard.h> | 70 | #include <sys/soundcard.h> |
71 | 71 | ||
72 | // for setBacklight() | 72 | // for setBacklight() |
73 | #include <linux/fb.h> | 73 | #include <linux/fb.h> |
74 | #include <sys/types.h> | 74 | #include <sys/types.h> |
75 | #include <sys/stat.h> | 75 | #include <sys/stat.h> |
76 | #include <stdlib.h> | 76 | #include <stdlib.h> |
77 | 77 | ||
78 | #define BUTTONS_ON_TOOLBAR | 78 | #define BUTTONS_ON_TOOLBAR |
79 | #define SIDE_BUTTONS | 79 | #define SIDE_BUTTONS |
80 | #define CAN_SAVE_LOAD_PLAYLISTS | 80 | #define CAN_SAVE_LOAD_PLAYLISTS |
81 | 81 | ||
82 | extern AudioWidget *audioUI; | 82 | extern AudioWidget *audioUI; |
83 | extern VideoWidget *videoUI; | 83 | extern VideoWidget *videoUI; |
84 | extern MediaPlayerState *mediaPlayerState; | 84 | extern MediaPlayerState *mediaPlayerState; |
85 | 85 | ||
86 | static inline QString fullBaseName ( const QFileInfo &fi ) | 86 | static inline QString fullBaseName ( const QFileInfo &fi ) |
87 | { | 87 | { |
88 | QString str = fi. fileName ( ); | 88 | QString str = fi. fileName ( ); |
89 | return str. left ( str. findRev ( '.' )); | 89 | return str. left ( str. findRev ( '.' )); |
90 | } | 90 | } |
91 | 91 | ||
92 | 92 | ||
93 | QString audioMimes ="audio/mpeg;audio/x-wav;audio/x-ogg"; | 93 | QString audioMimes ="audio/mpeg;audio/x-wav;audio/x-ogg"; |
94 | // class myFileSelector { | 94 | // class myFileSelector { |
95 | 95 | ||
96 | // }; | 96 | // }; |
97 | class PlayListWidgetPrivate { | 97 | class PlayListWidgetPrivate { |
98 | public: | 98 | public: |
99 | QToolButton *tbPlay, *tbFull, *tbLoop, *tbScale, *tbShuffle, *tbAddToList, *tbRemoveFromList, *tbMoveUp, *tbMoveDown, *tbRemove; | 99 | QToolButton *tbPlay, *tbFull, *tbLoop, *tbScale, *tbShuffle, *tbAddToList, *tbRemoveFromList, *tbMoveUp, *tbMoveDown, *tbRemove; |
100 | QFrame *playListFrame; | 100 | QFrame *playListFrame; |
101 | FileSelector *files; | 101 | FileSelector *files; |
102 | PlayListSelection *selectedFiles; | 102 | PlayListSelection *selectedFiles; |
103 | bool setDocumentUsed; | 103 | bool setDocumentUsed; |
104 | DocLnk *current; | 104 | DocLnk *current; |
105 | }; | 105 | }; |
106 | 106 | ||
107 | 107 | ||
108 | class ToolButton : public QToolButton { | 108 | class ToolButton : public QToolButton { |
109 | public: | 109 | public: |
110 | ToolButton( QWidget *parent, const char *name, const QString& icon, QObject *handler, const QString& slot, bool t = FALSE ) | 110 | ToolButton( QWidget *parent, const char *name, const QString& icon, QObject *handler, const QString& slot, bool t = FALSE ) |
111 | : QToolButton( parent, name ) { | 111 | : QToolButton( parent, name ) { |
112 | setTextLabel( name ); | 112 | setTextLabel( name ); |
113 | setPixmap( Resource::loadPixmap( icon ) ); | 113 | setPixmap( Resource::loadPixmap( icon ) ); |
114 | setAutoRaise( TRUE ); | 114 | setAutoRaise( TRUE ); |
115 | setFocusPolicy( QWidget::NoFocus ); | 115 | setFocusPolicy( QWidget::NoFocus ); |
116 | setToggleButton( t ); | 116 | setToggleButton( t ); |
117 | connect( this, t ? SIGNAL( toggled(bool) ) : SIGNAL( clicked() ), handler, slot ); | 117 | connect( this, t ? SIGNAL( toggled(bool) ) : SIGNAL( clicked() ), handler, slot ); |
118 | QPEMenuToolFocusManager::manager()->addWidget( this ); | 118 | QPEMenuToolFocusManager::manager()->addWidget( this ); |
119 | } | 119 | } |
120 | }; | 120 | }; |
121 | 121 | ||
122 | 122 | ||
123 | class MenuItem : public QAction { | 123 | class MenuItem : public QAction { |
124 | public: | 124 | public: |
125 | MenuItem( QWidget *parent, const QString& text, QObject *handler, const QString& slot ) | 125 | MenuItem( QWidget *parent, const QString& text, QObject *handler, const QString& slot ) |
126 | : QAction( text, QString::null, 0, 0 ) { | 126 | : QAction( text, QString::null, 0, 0 ) { |
127 | connect( this, SIGNAL( activated() ), handler, slot ); | 127 | connect( this, SIGNAL( activated() ), handler, slot ); |
128 | addTo( parent ); | 128 | addTo( parent ); |
129 | } | 129 | } |
130 | }; | 130 | }; |
131 | 131 | ||
132 | 132 | ||
133 | PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | 133 | PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) |
134 | : QMainWindow( parent, name, fl ) { | 134 | : QMainWindow( parent, name, fl ) { |
135 | 135 | ||
136 | d = new PlayListWidgetPrivate; | 136 | d = new PlayListWidgetPrivate; |
137 | d->setDocumentUsed = FALSE; | 137 | d->setDocumentUsed = FALSE; |
138 | d->current = NULL; | 138 | d->current = NULL; |
139 | fromSetDocument = FALSE; | 139 | fromSetDocument = FALSE; |
140 | insanityBool=FALSE; | 140 | insanityBool=FALSE; |
141 | audioScan = FALSE; | 141 | audioScan = FALSE; |
142 | videoScan = FALSE; | 142 | videoScan = FALSE; |
143 | // menuTimer = new QTimer( this ,"menu timer"), | 143 | // menuTimer = new QTimer( this ,"menu timer"), |
144 | // connect( menuTimer, SIGNAL( timeout() ), SLOT( addSelected() ) ); | 144 | // connect( menuTimer, SIGNAL( timeout() ), SLOT( addSelected() ) ); |
145 | 145 | ||
146 | setBackgroundMode( PaletteButton ); | 146 | setBackgroundMode( PaletteButton ); |
147 | 147 | ||
148 | setCaption( tr("OpiePlayer") ); | 148 | setCaption( tr("OpiePlayer") ); |
149 | setIcon( Resource::loadPixmap( "opieplayer/MPEGPlayer" ) ); | 149 | setIcon( Resource::loadPixmap( "opieplayer/MPEGPlayer" ) ); |
150 | 150 | ||
151 | setToolBarsMovable( FALSE ); | 151 | setToolBarsMovable( FALSE ); |
152 | 152 | ||
153 | // Create Toolbar | 153 | // Create Toolbar |
@@ -406,146 +406,158 @@ void PlayListWidget::writeConfig( Config& cfg ) const { | |||
406 | } | 406 | } |
407 | while ( d->selectedFiles->next() ); | 407 | while ( d->selectedFiles->next() ); |
408 | cfg.writeEntry("NumberOfFiles", noOfFiles ); | 408 | cfg.writeEntry("NumberOfFiles", noOfFiles ); |
409 | } | 409 | } |
410 | 410 | ||
411 | 411 | ||
412 | void PlayListWidget::addToSelection( const DocLnk& lnk ) { | 412 | void PlayListWidget::addToSelection( const DocLnk& lnk ) { |
413 | d->setDocumentUsed = false; | 413 | d->setDocumentUsed = false; |
414 | if ( mediaPlayerState->playlist() ) { | 414 | if ( mediaPlayerState->playlist() ) { |
415 | if(QFileInfo(lnk.file()).exists() || lnk.file().left(4) == "http" ) | 415 | if(QFileInfo(lnk.file()).exists() || lnk.file().left(4) == "http" ) |
416 | d->selectedFiles->addToSelection( lnk ); | 416 | d->selectedFiles->addToSelection( lnk ); |
417 | } | 417 | } |
418 | else | 418 | else |
419 | mediaPlayerState->setPlaying( true); | 419 | mediaPlayerState->setPlaying( true); |
420 | } | 420 | } |
421 | 421 | ||
422 | 422 | ||
423 | void PlayListWidget::clearList() { | 423 | void PlayListWidget::clearList() { |
424 | while ( first() ) | 424 | while ( first() ) |
425 | d->selectedFiles->removeSelected(); | 425 | d->selectedFiles->removeSelected(); |
426 | } | 426 | } |
427 | 427 | ||
428 | 428 | ||
429 | void PlayListWidget::addAllToList() { | 429 | void PlayListWidget::addAllToList() { |
430 | DocLnkSet filesAll; | 430 | DocLnkSet filesAll; |
431 | Global::findDocuments(&filesAll, "video/*;audio/*"); | 431 | Global::findDocuments(&filesAll, "video/*;audio/*"); |
432 | QListIterator<DocLnk> Adit( filesAll.children() ); | 432 | QListIterator<DocLnk> Adit( filesAll.children() ); |
433 | for ( ; Adit.current(); ++Adit ) | 433 | for ( ; Adit.current(); ++Adit ) |
434 | if(QFileInfo(Adit.current()->file()).exists()) | 434 | if(QFileInfo(Adit.current()->file()).exists()) |
435 | d->selectedFiles->addToSelection( **Adit ); | 435 | d->selectedFiles->addToSelection( **Adit ); |
436 | tabWidget->setCurrentPage(0); | 436 | tabWidget->setCurrentPage(0); |
437 | 437 | ||
438 | writeCurrentM3u(); | 438 | writeCurrentM3u(); |
439 | d->selectedFiles->first(); | 439 | d->selectedFiles->first(); |
440 | } | 440 | } |
441 | 441 | ||
442 | 442 | ||
443 | void PlayListWidget::addAllMusicToList() { | 443 | void PlayListWidget::addAllMusicToList() { |
444 | QListIterator<DocLnk> dit( files.children() ); | 444 | QListIterator<DocLnk> dit( files.children() ); |
445 | for ( ; dit.current(); ++dit ) | 445 | for ( ; dit.current(); ++dit ) |
446 | if(QFileInfo(dit.current()->file()).exists()) | 446 | if(QFileInfo(dit.current()->file()).exists()) |
447 | d->selectedFiles->addToSelection( **dit ); | 447 | d->selectedFiles->addToSelection( **dit ); |
448 | tabWidget->setCurrentPage(0); | 448 | tabWidget->setCurrentPage(0); |
449 | 449 | ||
450 | writeCurrentM3u(); | 450 | writeCurrentM3u(); |
451 | d->selectedFiles->first(); | 451 | d->selectedFiles->first(); |
452 | } | 452 | } |
453 | 453 | ||
454 | 454 | ||
455 | void PlayListWidget::addAllVideoToList() { | 455 | void PlayListWidget::addAllVideoToList() { |
456 | QListIterator<DocLnk> dit( vFiles.children() ); | 456 | QListIterator<DocLnk> dit( vFiles.children() ); |
457 | for ( ; dit.current(); ++dit ) | 457 | for ( ; dit.current(); ++dit ) |
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 | tabWidget->setCurrentPage(0); | 460 | tabWidget->setCurrentPage(0); |
461 | 461 | ||
462 | writeCurrentM3u(); | 462 | writeCurrentM3u(); |
463 | d->selectedFiles->first(); | 463 | d->selectedFiles->first(); |
464 | } | 464 | } |
465 | 465 | ||
466 | 466 | ||
467 | void PlayListWidget::setDocument(const QString& fileref) { | 467 | void PlayListWidget::setDocument(const QString& fileref) { |
468 | qDebug(fileref); | 468 | qDebug(fileref); |
469 | fromSetDocument = TRUE; | 469 | fromSetDocument = TRUE; |
470 | if ( fileref.isNull() ) { | 470 | QFileInfo fileInfo(fileref); |
471 | QMessageBox::critical( 0, tr( "Invalid File" ), tr( "There was a problem in getting the file." ) ); | 471 | if ( !fileInfo.exists() ) { |
472 | QMessageBox::critical( 0, tr( "Invalid File" ), | ||
473 | tr( "There was a problem in getting the file." ) ); | ||
472 | return; | 474 | return; |
473 | } | 475 | } |
474 | // qDebug("setDocument "+fileref); | 476 | // qDebug("setDocument "+fileref); |
475 | if(fileref.find("m3u",0,TRUE) != -1) { //is m3u | 477 | QString extension = fileInfo.extension(false); |
478 | if( extension.find( "m3u", 0, false) != -1) { //is m3u | ||
476 | readm3u( fileref); | 479 | readm3u( fileref); |
477 | } | 480 | } |
478 | else if(fileref.find("pls",0,TRUE) != -1) { //is pls | 481 | else if( extension.find( "pls", 0, false) != -1 ) { //is pls |
479 | readPls( fileref); | 482 | readPls( fileref); |
480 | } | 483 | } |
481 | else if(fileref.find("playlist",0,TRUE) != -1) {//is playlist | 484 | else if( fileref.find("playlist",0,TRUE) != -1) {//is playlist |
482 | clearList(); | 485 | clearList(); |
483 | loadList(DocLnk(fileref)); | 486 | DocLnk lnk; |
487 | lnk.setName( fileInfo.baseName() ); //sets name | ||
488 | lnk.setFile( fileref ); //sets file name | ||
489 | //addToSelection( lnk ); | ||
490 | |||
491 | loadList( lnk); | ||
484 | d->selectedFiles->first(); | 492 | d->selectedFiles->first(); |
485 | } else { | 493 | } else { |
486 | clearList(); | 494 | clearList(); |
487 | addToSelection( DocLnk( fileref ) ); | 495 | DocLnk lnk; |
496 | lnk.setName( fileInfo.baseName() ); //sets name | ||
497 | lnk.setFile( fileref ); //sets file name | ||
498 | addToSelection( lnk ); | ||
499 | // addToSelection( DocLnk( fileref ) ); | ||
488 | d->setDocumentUsed = TRUE; | 500 | d->setDocumentUsed = TRUE; |
489 | mediaPlayerState->setPlaying( FALSE ); | 501 | mediaPlayerState->setPlaying( FALSE ); |
490 | qApp->processEvents(); | 502 | qApp->processEvents(); |
491 | mediaPlayerState->setPlaying( TRUE ); | 503 | mediaPlayerState->setPlaying( TRUE ); |
492 | qApp->processEvents(); | 504 | qApp->processEvents(); |
493 | setCaption(tr("OpiePlayer")); | 505 | setCaption(tr("OpiePlayer")); |
494 | } | 506 | } |
495 | } | 507 | } |
496 | 508 | ||
497 | 509 | ||
498 | void PlayListWidget::setActiveWindow() { | 510 | void PlayListWidget::setActiveWindow() { |
499 | qDebug("SETTING active window"); | 511 | qDebug("SETTING active window"); |
500 | 512 | ||
501 | // When we get raised we need to ensure that it switches views | 513 | // When we get raised we need to ensure that it switches views |
502 | char origView = mediaPlayerState->view(); | 514 | char origView = mediaPlayerState->view(); |
503 | mediaPlayerState->setView( 'l' ); // invalidate | 515 | mediaPlayerState->setView( 'l' ); // invalidate |
504 | mediaPlayerState->setView( origView ); // now switch back | 516 | mediaPlayerState->setView( origView ); // now switch back |
505 | } | 517 | } |
506 | 518 | ||
507 | 519 | ||
508 | void PlayListWidget::useSelectedDocument() { | 520 | void PlayListWidget::useSelectedDocument() { |
509 | d->setDocumentUsed = FALSE; | 521 | d->setDocumentUsed = FALSE; |
510 | } | 522 | } |
511 | 523 | ||
512 | 524 | ||
513 | const DocLnk *PlayListWidget::current() { // this is fugly | 525 | const DocLnk *PlayListWidget::current() { // this is fugly |
514 | 526 | ||
515 | // if( fromSetDocument) { | 527 | // if( fromSetDocument) { |
516 | // qDebug("from setDoc"); | 528 | // qDebug("from setDoc"); |
517 | // DocLnkSet files; | 529 | // DocLnkSet files; |
518 | // Global::findDocuments(&files, "video/*;audio/*"); | 530 | // Global::findDocuments(&files, "video/*;audio/*"); |
519 | // QListIterator<DocLnk> dit( files.children() ); | 531 | // QListIterator<DocLnk> dit( files.children() ); |
520 | // for ( ; dit.current(); ++dit ) { | 532 | // for ( ; dit.current(); ++dit ) { |
521 | // if(dit.current()->linkFile() == setDocFileRef) { | 533 | // if(dit.current()->linkFile() == setDocFileRef) { |
522 | // qDebug(setDocFileRef); | 534 | // qDebug(setDocFileRef); |
523 | // return dit; | 535 | // return dit; |
524 | // } | 536 | // } |
525 | // } | 537 | // } |
526 | // } else | 538 | // } else |
527 | 539 | ||
528 | qDebug("current"); | 540 | qDebug("current"); |
529 | 541 | ||
530 | switch (tabWidget->currentPageIndex()) { | 542 | switch (tabWidget->currentPageIndex()) { |
531 | case 0: //playlist | 543 | case 0: //playlist |
532 | { | 544 | { |
533 | qDebug("playlist"); | 545 | qDebug("playlist"); |
534 | if ( mediaPlayerState->playlist() ) { | 546 | if ( mediaPlayerState->playlist() ) { |
535 | return d->selectedFiles->current(); | 547 | return d->selectedFiles->current(); |
536 | } | 548 | } |
537 | else if ( d->setDocumentUsed && d->current ) { | 549 | else if ( d->setDocumentUsed && d->current ) { |
538 | return d->current; | 550 | return d->current; |
539 | } else { | 551 | } else { |
540 | return &(d->files->selectedDocument()); | 552 | return &(d->files->selectedDocument()); |
541 | } | 553 | } |
542 | } | 554 | } |
543 | break; | 555 | break; |
544 | case 1://audio | 556 | case 1://audio |
545 | { | 557 | { |
546 | qDebug("audioView"); | 558 | qDebug("audioView"); |
547 | QListIterator<DocLnk> dit( files.children() ); | 559 | QListIterator<DocLnk> dit( files.children() ); |
548 | for ( ; dit.current(); ++dit ) { | 560 | for ( ; dit.current(); ++dit ) { |
549 | if( dit.current()->name() == audioView->currentItem()->text(0) && !insanityBool) { | 561 | if( dit.current()->name() == audioView->currentItem()->text(0) && !insanityBool) { |
550 | qDebug("here"); | 562 | qDebug("here"); |
551 | insanityBool=TRUE; | 563 | insanityBool=TRUE; |
@@ -1130,137 +1142,138 @@ void PlayListWidget::readPls( const QString &filename ) { | |||
1130 | 1142 | ||
1131 | if( name.left( 4 ) == "http" ) { | 1143 | if( name.left( 4 ) == "http" ) { |
1132 | name = s.right( s.length() - 7); | 1144 | name = s.right( s.length() - 7); |
1133 | } else { | 1145 | } else { |
1134 | name = s; | 1146 | name = s; |
1135 | } | 1147 | } |
1136 | 1148 | ||
1137 | name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 ); | 1149 | name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 ); |
1138 | 1150 | ||
1139 | lnk.setName( name ); | 1151 | lnk.setName( name ); |
1140 | if( s.at( s.length() - 4) == '.') {// if this is probably a file | 1152 | if( s.at( s.length() - 4) == '.') {// if this is probably a file |
1141 | lnk.setFile( s ); | 1153 | lnk.setFile( s ); |
1142 | } else { //if its a url | 1154 | } else { //if its a url |
1143 | if( name.right( 1 ).find( '/' ) == -1) { | 1155 | if( name.right( 1 ).find( '/' ) == -1) { |
1144 | s += "/"; | 1156 | s += "/"; |
1145 | } | 1157 | } |
1146 | lnk.setFile( s ); | 1158 | lnk.setFile( s ); |
1147 | } | 1159 | } |
1148 | lnk.setType( "audio/x-mpegurl" ); | 1160 | lnk.setType( "audio/x-mpegurl" ); |
1149 | 1161 | ||
1150 | lnk.writeLink(); | 1162 | lnk.writeLink(); |
1151 | d->selectedFiles->addToSelection( lnk ); | 1163 | d->selectedFiles->addToSelection( lnk ); |
1152 | } | 1164 | } |
1153 | 1165 | ||
1154 | m3uList->close(); | 1166 | m3uList->close(); |
1155 | if(m3uList) delete m3uList; | 1167 | if(m3uList) delete m3uList; |
1156 | } | 1168 | } |
1157 | 1169 | ||
1158 | /* | 1170 | /* |
1159 | writes current playlist to current m3u file */ | 1171 | writes current playlist to current m3u file */ |
1160 | void PlayListWidget::writeCurrentM3u() { | 1172 | void PlayListWidget::writeCurrentM3u() { |
1161 | qDebug("writing to current m3u"); | 1173 | qDebug("writing to current m3u"); |
1162 | Config cfg( "OpiePlayer" ); | 1174 | Config cfg( "OpiePlayer" ); |
1163 | cfg.setGroup("PlayList"); | 1175 | cfg.setGroup("PlayList"); |
1164 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); | 1176 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); |
1165 | Om3u *m3uList; | 1177 | Om3u *m3uList; |
1166 | m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate ); | 1178 | m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate ); |
1167 | 1179 | ||
1168 | if( d->selectedFiles->first()) { | 1180 | if( d->selectedFiles->first()) { |
1169 | do { | 1181 | do { |
1170 | qDebug( "writeCurrentM3u " +d->selectedFiles->current()->file()); | 1182 | qDebug( "writeCurrentM3u " +d->selectedFiles->current()->file()); |
1171 | m3uList->add( d->selectedFiles->current()->file() ); | 1183 | m3uList->add( d->selectedFiles->current()->file() ); |
1172 | } | 1184 | } |
1173 | while ( d->selectedFiles->next() ); | 1185 | while ( d->selectedFiles->next() ); |
1174 | qDebug( "<<<<<<<<<<<<>>>>>>>>>>>>>>>>>" ); | 1186 | qDebug( "<<<<<<<<<<<<>>>>>>>>>>>>>>>>>" ); |
1175 | m3uList->write(); | 1187 | m3uList->write(); |
1176 | m3uList->close(); | 1188 | m3uList->close(); |
1177 | 1189 | ||
1178 | if(m3uList) delete m3uList; | 1190 | if(m3uList) delete m3uList; |
1179 | } | 1191 | } |
1180 | } | 1192 | } |
1181 | 1193 | ||
1182 | /* | 1194 | /* |
1183 | writes current playlist to m3u file */ | 1195 | writes current playlist to m3u file */ |
1184 | void PlayListWidget::writem3u() { | 1196 | void PlayListWidget::writem3u() { |
1185 | InputDialog *fileDlg; | 1197 | InputDialog *fileDlg; |
1186 | fileDlg = new InputDialog( this, tr( "Save m3u Playlist " ), TRUE, 0); | 1198 | fileDlg = new InputDialog( this, tr( "Save m3u Playlist " ), TRUE, 0); |
1187 | fileDlg->exec(); | 1199 | fileDlg->exec(); |
1188 | QString name, filename, list; | 1200 | QString name, filename, list; |
1189 | Om3u *m3uList; | 1201 | Om3u *m3uList; |
1190 | 1202 | ||
1191 | if( fileDlg->result() == 1 ) { | 1203 | if( fileDlg->result() == 1 ) { |
1192 | name = fileDlg->text(); | 1204 | name = fileDlg->text(); |
1193 | // qDebug( filename ); | 1205 | // qDebug( filename ); |
1194 | 1206 | if( name.find("/",0,true) != -1) {// assume they specify a file path | |
1195 | if( name.left( 1) != "/" ) { | 1207 | filename = name; |
1196 | filename = QPEApplication::documentDir() + "/" + name; | 1208 | name = name.right(name.length()- name.findRev("/",-1,true) - 1 ); |
1197 | } | ||
1198 | |||
1199 | if( name.right( 3 ) != "m3u" ) { | ||
1200 | filename = QPEApplication::documentDir() + "/" +name+".m3u"; | ||
1201 | } | 1209 | } |
1210 | else //otherwise dump it somewhere noticable | ||
1211 | filename = QPEApplication::documentDir() + "/" + name; | ||
1202 | 1212 | ||
1213 | if( filename.right( 3 ) != "m3u" ) //needs filename extension | ||
1214 | filename += ".m3u"; | ||
1215 | |||
1203 | if( d->selectedFiles->first()) { | 1216 | if( d->selectedFiles->first()) { |
1204 | m3uList = new Om3u(filename, IO_ReadWrite); | 1217 | m3uList = new Om3u(filename, IO_ReadWrite); |
1205 | 1218 | ||
1206 | do { | 1219 | do { |
1207 | m3uList->add( d->selectedFiles->current()->file()); | 1220 | m3uList->add( d->selectedFiles->current()->file()); |
1208 | } | 1221 | } |
1209 | while ( d->selectedFiles->next() ); | 1222 | while ( d->selectedFiles->next() ); |
1210 | // qDebug( list ); | 1223 | // qDebug( list ); |
1211 | m3uList->write(); | 1224 | m3uList->write(); |
1212 | m3uList->close(); | 1225 | m3uList->close(); |
1213 | if(m3uList) delete m3uList; | 1226 | if(m3uList) delete m3uList; |
1214 | 1227 | ||
1215 | if(fileDlg) delete fileDlg; | 1228 | if(fileDlg) delete fileDlg; |
1216 | 1229 | ||
1217 | DocLnk lnk; | 1230 | DocLnk lnk; |
1218 | lnk.setFile( filename); | 1231 | lnk.setFile( filename); |
1219 | lnk.setIcon("opieplayer2/playlist2"); | 1232 | lnk.setIcon("opieplayer2/playlist2"); |
1220 | lnk.setName( name); //sets file name | 1233 | lnk.setName( name); //sets file name |
1221 | 1234 | ||
1222 | // qDebug(filename); | 1235 | // qDebug(filename); |
1223 | Config config( "OpiePlayer" ); | 1236 | Config config( "OpiePlayer" ); |
1224 | config.setGroup( "PlayList" ); | 1237 | config.setGroup( "PlayList" ); |
1225 | 1238 | ||
1226 | config.writeEntry("CurrentPlaylist",filename); | 1239 | config.writeEntry("CurrentPlaylist",filename); |
1227 | currentPlayList=filename; | 1240 | currentPlayList=filename; |
1228 | 1241 | ||
1229 | if(!lnk.writeLink()) { | 1242 | if(!lnk.writeLink()) { |
1230 | qDebug("Writing doclink did not work"); | 1243 | qDebug("Writing doclink did not work"); |
1231 | } | 1244 | } |
1232 | 1245 | ||
1233 | setCaption(tr("OpiePlayer: ") + name); | 1246 | setCaption(tr("OpiePlayer: ") + name); |
1234 | } | 1247 | } |
1235 | } | 1248 | } |
1236 | } | 1249 | } |
1237 | 1250 | ||
1238 | 1251 | ||
1239 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e) | 1252 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e) |
1240 | { | 1253 | { |
1241 | switch ( e->key() ) { | 1254 | switch ( e->key() ) { |
1242 | ////////////////////////////// Zaurus keys | 1255 | ////////////////////////////// Zaurus keys |
1243 | case Key_F9: //activity | 1256 | case Key_F9: //activity |
1244 | // if(audioUI->isHidden()) | 1257 | // if(audioUI->isHidden()) |
1245 | // audioUI->showMaximized(); | 1258 | // audioUI->showMaximized(); |
1246 | break; | 1259 | break; |
1247 | case Key_F10: //contacts | 1260 | case Key_F10: //contacts |
1248 | // if( videoUI->isHidden()) | 1261 | // if( videoUI->isHidden()) |
1249 | // videoUI->showMaximized(); | 1262 | // videoUI->showMaximized(); |
1250 | break; | 1263 | break; |
1251 | case Key_F11: //menu | 1264 | case Key_F11: //menu |
1252 | break; | 1265 | break; |
1253 | case Key_F12: //home | 1266 | case Key_F12: //home |
1254 | // doBlank(); | 1267 | // doBlank(); |
1255 | break; | 1268 | break; |
1256 | case Key_F13: //mail | 1269 | case Key_F13: //mail |
1257 | // doUnblank(); | 1270 | // doUnblank(); |
1258 | break; | 1271 | break; |
1259 | case Key_Q: //add to playlist | 1272 | case Key_Q: //add to playlist |
1260 | qDebug("Add"); | 1273 | qDebug("Add"); |
1261 | addSelected(); | 1274 | addSelected(); |
1262 | break; | 1275 | break; |
1263 | case Key_R: //remove from playlist | 1276 | case Key_R: //remove from playlist |
1264 | removeSelected(); | 1277 | removeSelected(); |
1265 | break; | 1278 | break; |
1266 | // case Key_P: //play | 1279 | // case Key_P: //play |