summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/playlistwidget.cpp
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/playlistwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/playlistwidget.cpp21
1 files changed, 14 insertions, 7 deletions
diff --git a/core/multimedia/opieplayer/playlistwidget.cpp b/core/multimedia/opieplayer/playlistwidget.cpp
index c28548c..8b25a4c 100644
--- a/core/multimedia/opieplayer/playlistwidget.cpp
+++ b/core/multimedia/opieplayer/playlistwidget.cpp
@@ -62,48 +62,55 @@
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
82extern AudioWidget *audioUI; 82extern AudioWidget *audioUI;
83extern VideoWidget *videoUI; 83extern VideoWidget *videoUI;
84extern MediaPlayerState *mediaPlayerState; 84extern MediaPlayerState *mediaPlayerState;
85 85
86static inline QString fullBaseName ( const QFileInfo &fi )
87{
88 QString str = fi. fileName ( );
89 return str. left ( str. findRev ( '.' ));
90}
91
92
86QString audioMimes ="audio/mpeg;audio/x-wav;audio/x-ogg"; 93QString audioMimes ="audio/mpeg;audio/x-wav;audio/x-ogg";
87// class myFileSelector { 94// class myFileSelector {
88 95
89// }; 96// };
90class PlayListWidgetPrivate { 97class PlayListWidgetPrivate {
91public: 98public:
92 QToolButton *tbPlay, *tbFull, *tbLoop, *tbScale, *tbShuffle, *tbAddToList, *tbRemoveFromList, *tbMoveUp, *tbMoveDown, *tbRemove; 99 QToolButton *tbPlay, *tbFull, *tbLoop, *tbScale, *tbShuffle, *tbAddToList, *tbRemoveFromList, *tbMoveUp, *tbMoveDown, *tbRemove;
93 QFrame *playListFrame; 100 QFrame *playListFrame;
94 FileSelector *files; 101 FileSelector *files;
95 PlayListSelection *selectedFiles; 102 PlayListSelection *selectedFiles;
96 bool setDocumentUsed; 103 bool setDocumentUsed;
97 DocLnk *current; 104 DocLnk *current;
98}; 105};
99 106
100 107
101class ToolButton : public QToolButton { 108class ToolButton : public QToolButton {
102public: 109public:
103 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 )
104 : QToolButton( parent, name ) { 111 : QToolButton( parent, name ) {
105 setTextLabel( name ); 112 setTextLabel( name );
106 setPixmap( Resource::loadPixmap( icon ) ); 113 setPixmap( Resource::loadPixmap( icon ) );
107 setAutoRaise( TRUE ); 114 setAutoRaise( TRUE );
108 setFocusPolicy( QWidget::NoFocus ); 115 setFocusPolicy( QWidget::NoFocus );
109 setToggleButton( t ); 116 setToggleButton( t );
@@ -303,49 +310,49 @@ PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl )
303 connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), 310 connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)),
304 this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); 311 this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) );
305 connect( videoView, SIGNAL( returnPressed( QListViewItem *)), 312 connect( videoView, SIGNAL( returnPressed( QListViewItem *)),
306 this,SLOT( playIt( QListViewItem *)) ); 313 this,SLOT( playIt( QListViewItem *)) );
307 connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); 314 connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) );
308 315
309 connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( loadList( const DocLnk & ) ) ); 316 connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( loadList( const DocLnk & ) ) );
310 317
311 318
312 connect( tabWidget, SIGNAL (currentChanged(QWidget*)),this,SLOT(tabChanged(QWidget*))); 319 connect( tabWidget, SIGNAL (currentChanged(QWidget*)),this,SLOT(tabChanged(QWidget*)));
313 320
314// connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), d->tbPlay, SLOT( setOn( bool ) ) ); 321// connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), d->tbPlay, SLOT( setOn( bool ) ) );
315 connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), d->tbLoop, SLOT( setOn( bool ) ) ); 322 connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), d->tbLoop, SLOT( setOn( bool ) ) );
316 connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), d->tbShuffle, SLOT( setOn( bool ) ) ); 323 connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), d->tbShuffle, SLOT( setOn( bool ) ) );
317 connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), this, SLOT( setPlaylist( bool ) ) ); 324 connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), this, SLOT( setPlaylist( bool ) ) );
318 325
319 connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( playIt( QListViewItem *) ) ); 326 connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( playIt( QListViewItem *) ) );
320 327
321 setCentralWidget( vbox5 ); 328 setCentralWidget( vbox5 );
322 329
323 Config cfg( "OpiePlayer" ); 330 Config cfg( "OpiePlayer" );
324 readConfig( cfg ); 331 readConfig( cfg );
325 QString currentPlaylist = cfg.readEntry("CurrentPlaylist","default"); 332 QString currentPlaylist = cfg.readEntry("CurrentPlaylist","default");
326 loadList(DocLnk( currentPlaylist)); 333 loadList(DocLnk( currentPlaylist));
327 setCaption(tr("OpiePlayer: ")+ QFileInfo(currentPlaylist).baseName()); 334 setCaption(tr("OpiePlayer: ")+ fullBaseName ( QFileInfo(currentPlaylist)));
328 335
329 initializeStates(); 336 initializeStates();
330} 337}
331 338
332 339
333PlayListWidget::~PlayListWidget() { 340PlayListWidget::~PlayListWidget() {
334 Config cfg( "OpiePlayer" ); 341 Config cfg( "OpiePlayer" );
335 writeConfig( cfg ); 342 writeConfig( cfg );
336 343
337 if ( d->current ) 344 if ( d->current )
338 delete d->current; 345 delete d->current;
339 delete d; 346 delete d;
340} 347}
341 348
342 349
343void PlayListWidget::initializeStates() { 350void PlayListWidget::initializeStates() {
344 351
345 d->tbPlay->setOn( mediaPlayerState->playing() ); 352 d->tbPlay->setOn( mediaPlayerState->playing() );
346 d->tbLoop->setOn( mediaPlayerState->looping() ); 353 d->tbLoop->setOn( mediaPlayerState->looping() );
347 d->tbShuffle->setOn( mediaPlayerState->shuffled() ); 354 d->tbShuffle->setOn( mediaPlayerState->shuffled() );
348 setPlaylist( true); 355 setPlaylist( true);
349} 356}
350 357
351 358
@@ -660,84 +667,84 @@ void PlayListWidget::setView( char view ) {
660} 667}
661 668
662void PlayListWidget::addSelected() { 669void PlayListWidget::addSelected() {
663 qDebug("addSelected"); 670 qDebug("addSelected");
664 DocLnk lnk; 671 DocLnk lnk;
665 QString filename; 672 QString filename;
666 switch (tabWidget->currentPageIndex()) { 673 switch (tabWidget->currentPageIndex()) {
667 674
668 case 0: //playlist 675 case 0: //playlist
669 return; 676 return;
670 break; 677 break;
671 case 1: { //audio 678 case 1: { //audio
672 filename=audioView->currentItem()->text(3); 679 filename=audioView->currentItem()->text(3);
673 // d->selectedFiles->next(); 680 // d->selectedFiles->next();
674 } 681 }
675 break; 682 break;
676 683
677 case 2: { // video 684 case 2: { // video
678 filename=videoView->currentItem()->text(3); 685 filename=videoView->currentItem()->text(3);
679 // tabWidget->setCurrentPage(0); 686 // tabWidget->setCurrentPage(0);
680 687
681 } 688 }
682 break; 689 break;
683 }; 690 };
684 lnk.setName( QFileInfo(filename).baseName() ); //sets name 691 lnk.setName( fullBaseName ( QFileInfo(filename))); //sets name
685 lnk.setFile( filename ); //sets file name 692 lnk.setFile( filename ); //sets file name
686 d->selectedFiles->addToSelection( lnk); 693 d->selectedFiles->addToSelection( lnk);
687 tabWidget->setCurrentPage(0); 694 tabWidget->setCurrentPage(0);
688 writeCurrentM3u(); 695 writeCurrentM3u();
689 696
690} 697}
691 698
692void PlayListWidget::removeSelected() { 699void PlayListWidget::removeSelected() {
693 d->selectedFiles->removeSelected( ); 700 d->selectedFiles->removeSelected( );
694} 701}
695 702
696void PlayListWidget::playIt( QListViewItem *) { 703void PlayListWidget::playIt( QListViewItem *) {
697// d->setDocumentUsed = FALSE; 704// d->setDocumentUsed = FALSE;
698// mediaPlayerState->curPosition =0; 705// mediaPlayerState->curPosition =0;
699 qDebug("playIt"); 706 qDebug("playIt");
700 mediaPlayerState->setPlaying(FALSE); 707 mediaPlayerState->setPlaying(FALSE);
701 mediaPlayerState->setPlaying(TRUE); 708 mediaPlayerState->setPlaying(TRUE);
702 d->selectedFiles->unSelect(); 709 d->selectedFiles->unSelect();
703} 710}
704 711
705void PlayListWidget::addToSelection( QListViewItem *it) { 712void PlayListWidget::addToSelection( QListViewItem *it) {
706 d->setDocumentUsed = FALSE; 713 d->setDocumentUsed = FALSE;
707 714
708 if(it) { 715 if(it) {
709 switch ( tabWidget->currentPageIndex()) { 716 switch ( tabWidget->currentPageIndex()) {
710 case 0: //playlist 717 case 0: //playlist
711 return; 718 return;
712 break; 719 break;
713 }; 720 };
714 // case 1: { 721 // case 1: {
715 DocLnk lnk; 722 DocLnk lnk;
716 QString filename; 723 QString filename;
717 724
718 filename=it->text(3); 725 filename=it->text(3);
719 lnk.setName( QFileInfo(filename).baseName() ); //sets name 726 lnk.setName( fullBaseName ( QFileInfo(filename)) ); //sets name
720 lnk.setFile( filename ); //sets file name 727 lnk.setFile( filename ); //sets file name
721 d->selectedFiles->addToSelection( lnk); 728 d->selectedFiles->addToSelection( lnk);
722 729
723 writeCurrentM3u(); 730 writeCurrentM3u();
724 tabWidget->setCurrentPage(0); 731 tabWidget->setCurrentPage(0);
725 732
726 } 733 }
727} 734}
728 735
729void PlayListWidget::tabChanged(QWidget *) { 736void PlayListWidget::tabChanged(QWidget *) {
730 737
731 switch ( tabWidget->currentPageIndex()) { 738 switch ( tabWidget->currentPageIndex()) {
732 case 0: 739 case 0:
733 { 740 {
734 if( !tbDeletePlaylist->isHidden()) 741 if( !tbDeletePlaylist->isHidden())
735 tbDeletePlaylist->hide(); 742 tbDeletePlaylist->hide();
736 d->tbRemoveFromList->setEnabled(TRUE); 743 d->tbRemoveFromList->setEnabled(TRUE);
737 d->tbAddToList->setEnabled(FALSE); 744 d->tbAddToList->setEnabled(FALSE);
738 } 745 }
739 break; 746 break;
740 case 1: 747 case 1:
741 { 748 {
742 audioView->clear(); 749 audioView->clear();
743 populateAudioView(); 750 populateAudioView();
@@ -1017,130 +1024,130 @@ void PlayListWidget::openFile() {
1017 QString m3uFile, m3uFilePath; 1024 QString m3uFile, m3uFilePath;
1018 if(filename.find(":",8,TRUE) != -1) { //found a port 1025 if(filename.find(":",8,TRUE) != -1) { //found a port
1019 m3uFile = filename.left( filename.find( ":",8,TRUE)); 1026 m3uFile = filename.left( filename.find( ":",8,TRUE));
1020 m3uFile = m3uFile.right( 7); 1027 m3uFile = m3uFile.right( 7);
1021 } else if(filename.left(4) == "http"){ 1028 } else if(filename.left(4) == "http"){
1022 m3uFile=filename; 1029 m3uFile=filename;
1023 m3uFile = m3uFile.right( m3uFile.length() - 7); 1030 m3uFile = m3uFile.right( m3uFile.length() - 7);
1024 } else{ 1031 } else{
1025 m3uFile=filename; 1032 m3uFile=filename;
1026 } 1033 }
1027 1034
1028// qDebug("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"+ m3uFile); 1035// qDebug("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"+ m3uFile);
1029 lnk.setName( filename ); //sets name 1036 lnk.setName( filename ); //sets name
1030 lnk.setFile( filename ); //sets file name 1037 lnk.setFile( filename ); //sets file name
1031 lnk.setIcon("opieplayer2/musicfile"); 1038 lnk.setIcon("opieplayer2/musicfile");
1032 d->selectedFiles->addToSelection( lnk ); 1039 d->selectedFiles->addToSelection( lnk );
1033 writeCurrentM3u(); 1040 writeCurrentM3u();
1034 } 1041 }
1035 else if( filename.right( 3) == "m3u" ) { 1042 else if( filename.right( 3) == "m3u" ) {
1036 readm3u( filename ); 1043 readm3u( filename );
1037 1044
1038 } else if( filename.right(3) == "pls" ) { 1045 } else if( filename.right(3) == "pls" ) {
1039 readPls( filename ); 1046 readPls( filename );
1040 } else { 1047 } else {
1041 lnk.setName( QFileInfo(filename).baseName() ); //sets name 1048 lnk.setName( fullBaseName ( QFileInfo(filename)) ); //sets name
1042 lnk.setFile( filename ); //sets file name 1049 lnk.setFile( filename ); //sets file name
1043 d->selectedFiles->addToSelection( lnk); 1050 d->selectedFiles->addToSelection( lnk);
1044 writeCurrentM3u(); 1051 writeCurrentM3u();
1045 } 1052 }
1046 } 1053 }
1047 1054
1048 if( fileDlg ) { 1055 if( fileDlg ) {
1049 delete fileDlg; 1056 delete fileDlg;
1050 } 1057 }
1051} 1058}
1052 1059
1053 1060
1054/* 1061/*
1055reads m3u and shows files/urls to playlist widget */ 1062reads m3u and shows files/urls to playlist widget */
1056void PlayListWidget::readm3u( const QString &filename ) { 1063void PlayListWidget::readm3u( const QString &filename ) {
1057 qDebug( "read m3u filename " + filename ); 1064 qDebug( "read m3u filename " + filename );
1058 1065
1059 Om3u *m3uList; 1066 Om3u *m3uList;
1060 QString s, name; 1067 QString s, name;
1061 m3uList = new Om3u( filename, IO_ReadOnly ); 1068 m3uList = new Om3u( filename, IO_ReadOnly );
1062 m3uList->readM3u(); 1069 m3uList->readM3u();
1063 DocLnk lnk; 1070 DocLnk lnk;
1064 for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { 1071 for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) {
1065 s = *it; 1072 s = *it;
1066// qDebug("reading "+ s); 1073// qDebug("reading "+ s);
1067 if(s.left(4)=="http") { 1074 if(s.left(4)=="http") {
1068 lnk.setName( s ); //sets file name 1075 lnk.setName( s ); //sets file name
1069 lnk.setIcon("opieplayer2/musicfile"); 1076 lnk.setIcon("opieplayer2/musicfile");
1070 if(s.right(4) != '.' || s.right(5) != '.') 1077 if(s.right(4) != '.' || s.right(5) != '.')
1071 lnk.setFile( s+"/"); //if url with no extension 1078 lnk.setFile( s+"/"); //if url with no extension
1072 else 1079 else
1073 lnk.setFile( s ); //sets file name 1080 lnk.setFile( s ); //sets file name
1074 1081
1075 } else { 1082 } else {
1076 // if( QFileInfo( s ).exists() ) { 1083 // if( QFileInfo( s ).exists() ) {
1077 lnk.setName( QFileInfo(s).baseName()); 1084 lnk.setName( fullBaseName ( QFileInfo(s)));
1078 // if(s.right(4) == '.') {//if regular file 1085 // if(s.right(4) == '.') {//if regular file
1079 if(s.left(1) != "/") { 1086 if(s.left(1) != "/") {
1080 // qDebug("set link "+QFileInfo(filename).dirPath()+"/"+s); 1087 // qDebug("set link "+QFileInfo(filename).dirPath()+"/"+s);
1081 lnk.setFile( QFileInfo(filename).dirPath()+"/"+s); 1088 lnk.setFile( QFileInfo(filename).dirPath()+"/"+s);
1082 lnk.setIcon("SoundPlayer"); 1089 lnk.setIcon("SoundPlayer");
1083 } else { 1090 } else {
1084 // qDebug("set link2 "+s); 1091 // qDebug("set link2 "+s);
1085 lnk.setFile( s); 1092 lnk.setFile( s);
1086 lnk.setIcon("SoundPlayer"); 1093 lnk.setIcon("SoundPlayer");
1087 } 1094 }
1088 } 1095 }
1089 d->selectedFiles->addToSelection( lnk ); 1096 d->selectedFiles->addToSelection( lnk );
1090 } 1097 }
1091 Config config( "OpiePlayer" ); 1098 Config config( "OpiePlayer" );
1092 config.setGroup( "PlayList" ); 1099 config.setGroup( "PlayList" );
1093 1100
1094 config.writeEntry("CurrentPlaylist",filename); 1101 config.writeEntry("CurrentPlaylist",filename);
1095 config.write(); 1102 config.write();
1096 currentPlayList=filename; 1103 currentPlayList=filename;
1097 1104
1098// m3uList->write(); 1105// m3uList->write();
1099 m3uList->close(); 1106 m3uList->close();
1100 if(m3uList) delete m3uList; 1107 if(m3uList) delete m3uList;
1101 1108
1102 d->selectedFiles->setSelectedItem( s); 1109 d->selectedFiles->setSelectedItem( s);
1103 setCaption(tr("OpiePlayer: ")+ QFileInfo(filename).baseName()); 1110 setCaption(tr("OpiePlayer: ")+ fullBaseName ( QFileInfo(filename)));
1104 1111
1105} 1112}
1106 1113
1107/* 1114/*
1108reads pls and adds files/urls to playlist */ 1115reads pls and adds files/urls to playlist */
1109void PlayListWidget::readPls( const QString &filename ) { 1116void PlayListWidget::readPls( const QString &filename ) {
1110 1117
1111 qDebug( "pls filename is " + filename ); 1118 qDebug( "pls filename is " + filename );
1112 Om3u *m3uList; 1119 Om3u *m3uList;
1113 QString s, name; 1120 QString s, name;
1114 m3uList = new Om3u( filename, IO_ReadOnly ); 1121 m3uList = new Om3u( filename, IO_ReadOnly );
1115 m3uList->readPls(); 1122 m3uList->readPls();
1116 1123
1117 for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { 1124 for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) {
1118 s = *it; 1125 s = *it;
1119 // s.replace( QRegExp( "%20" )," " ); 1126 // s.replace( QRegExp( "%20" )," " );
1120 DocLnk lnk( s ); 1127 DocLnk lnk( s );
1121 QFileInfo f( s ); 1128 QFileInfo f( s );
1122 QString name = f.baseName(); 1129 QString name = fullBaseName ( f);
1123 1130
1124 if( name.left( 4 ) == "http" ) { 1131 if( name.left( 4 ) == "http" ) {
1125 name = s.right( s.length() - 7); 1132 name = s.right( s.length() - 7);
1126 } else { 1133 } else {
1127 name = s; 1134 name = s;
1128 } 1135 }
1129 1136
1130 name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 ); 1137 name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 );
1131 1138
1132 lnk.setName( name ); 1139 lnk.setName( name );
1133 if( s.at( s.length() - 4) == '.') {// if this is probably a file 1140 if( s.at( s.length() - 4) == '.') {// if this is probably a file
1134 lnk.setFile( s ); 1141 lnk.setFile( s );
1135 } else { //if its a url 1142 } else { //if its a url
1136 if( name.right( 1 ).find( '/' ) == -1) { 1143 if( name.right( 1 ).find( '/' ) == -1) {
1137 s += "/"; 1144 s += "/";
1138 } 1145 }
1139 lnk.setFile( s ); 1146 lnk.setFile( s );
1140 } 1147 }
1141 lnk.setType( "audio/x-mpegurl" ); 1148 lnk.setType( "audio/x-mpegurl" );
1142 1149
1143 lnk.writeLink(); 1150 lnk.writeLink();
1144 d->selectedFiles->addToSelection( lnk ); 1151 d->selectedFiles->addToSelection( lnk );
1145 } 1152 }
1146 1153