author | llornkcor <llornkcor> | 2002-08-16 02:46:12 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-08-16 02:46:12 (UTC) |
commit | 40527ffb82b83ad521ed766f11b47636db055ffe (patch) (unidiff) | |
tree | d94fb1f21fa57b9dfbe2aa45beab05de024c97a3 | |
parent | f25db7780ff234b2770ac13d8c02887b79a57a26 (diff) | |
download | opie-40527ffb82b83ad521ed766f11b47636db055ffe.zip opie-40527ffb82b83ad521ed766f11b47636db055ffe.tar.gz opie-40527ffb82b83ad521ed766f11b47636db055ffe.tar.bz2 |
check for local file existing before adding to playlist
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.cpp | 44 |
1 files changed, 26 insertions, 18 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp index e33998f..612fd45 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp | |||
@@ -1,1285 +1,1293 @@ | |||
1 | 1 | ||
2 | #define QTOPIA_INTERNAL_FSLP | 2 | #define QTOPIA_INTERNAL_FSLP |
3 | #include <qpe/qcopenvelope_qws.h> | 3 | #include <qpe/qcopenvelope_qws.h> |
4 | 4 | ||
5 | #include <qpe/qpemenubar.h> | 5 | #include <qpe/qpemenubar.h> |
6 | #include <qpe/qpetoolbar.h> | 6 | #include <qpe/qpetoolbar.h> |
7 | #include <qpe/fileselector.h> | 7 | #include <qpe/fileselector.h> |
8 | #include <qpe/qpeapplication.h> | 8 | #include <qpe/qpeapplication.h> |
9 | #include <qpe/lnkproperties.h> | 9 | #include <qpe/lnkproperties.h> |
10 | #include <qpe/storage.h> | 10 | #include <qpe/storage.h> |
11 | 11 | ||
12 | #include <qpe/applnk.h> | 12 | #include <qpe/applnk.h> |
13 | #include <qpopupmenu.h> | 13 | #include <qpopupmenu.h> |
14 | #include <qpe/config.h> | 14 | #include <qpe/config.h> |
15 | #include <qpe/global.h> | 15 | #include <qpe/global.h> |
16 | #include <qpe/resource.h> | 16 | #include <qpe/resource.h> |
17 | #include <qaction.h> | 17 | #include <qaction.h> |
18 | #include <qcursor.h> | 18 | #include <qcursor.h> |
19 | #include <qimage.h> | 19 | #include <qimage.h> |
20 | #include <qfile.h> | 20 | #include <qfile.h> |
21 | #include <qdir.h> | 21 | #include <qdir.h> |
22 | #include <qlayout.h> | 22 | #include <qlayout.h> |
23 | #include <qlabel.h> | 23 | #include <qlabel.h> |
24 | #include <qlist.h> | 24 | #include <qlist.h> |
25 | #include <qlistbox.h> | 25 | #include <qlistbox.h> |
26 | #include <qmainwindow.h> | 26 | #include <qmainwindow.h> |
27 | #include <qmessagebox.h> | 27 | #include <qmessagebox.h> |
28 | #include <qtoolbutton.h> | 28 | #include <qtoolbutton.h> |
29 | #include <qtabwidget.h> | 29 | #include <qtabwidget.h> |
30 | #include <qlistview.h> | 30 | #include <qlistview.h> |
31 | #include <qpoint.h> | 31 | #include <qpoint.h> |
32 | #include <qlineedit.h> | 32 | #include <qlineedit.h> |
33 | #include <qpushbutton.h> | 33 | #include <qpushbutton.h> |
34 | #include <qregexp.h> | 34 | #include <qregexp.h> |
35 | #include <qtextstream.h> | 35 | #include <qtextstream.h> |
36 | 36 | ||
37 | 37 | ||
38 | #include "playlistselection.h" | 38 | #include "playlistselection.h" |
39 | #include "playlistwidget.h" | 39 | #include "playlistwidget.h" |
40 | #include "mediaplayerstate.h" | 40 | #include "mediaplayerstate.h" |
41 | 41 | ||
42 | #include "inputDialog.h" | 42 | #include "inputDialog.h" |
43 | 43 | ||
44 | #include <stdlib.h> | 44 | #include <stdlib.h> |
45 | #include "audiowidget.h" | 45 | #include "audiowidget.h" |
46 | #include "videowidget.h" | 46 | #include "videowidget.h" |
47 | 47 | ||
48 | #include <unistd.h> | 48 | #include <unistd.h> |
49 | #include <sys/file.h> | 49 | #include <sys/file.h> |
50 | #include <sys/ioctl.h> | 50 | #include <sys/ioctl.h> |
51 | #include <sys/soundcard.h> | 51 | #include <sys/soundcard.h> |
52 | 52 | ||
53 | // for setBacklight() | 53 | // for setBacklight() |
54 | #include <linux/fb.h> | 54 | #include <linux/fb.h> |
55 | #include <sys/types.h> | 55 | #include <sys/types.h> |
56 | #include <sys/stat.h> | 56 | #include <sys/stat.h> |
57 | #include <stdlib.h> | 57 | #include <stdlib.h> |
58 | 58 | ||
59 | #define BUTTONS_ON_TOOLBAR | 59 | #define BUTTONS_ON_TOOLBAR |
60 | #define SIDE_BUTTONS | 60 | #define SIDE_BUTTONS |
61 | #define CAN_SAVE_LOAD_PLAYLISTS | 61 | #define CAN_SAVE_LOAD_PLAYLISTS |
62 | 62 | ||
63 | extern MediaPlayerState *mediaPlayerState; | 63 | extern MediaPlayerState *mediaPlayerState; |
64 | 64 | ||
65 | 65 | ||
66 | class PlayListWidgetPrivate { | 66 | class PlayListWidgetPrivate { |
67 | public: | 67 | public: |
68 | QToolButton *tbPlay, *tbFull, *tbLoop, *tbScale, *tbShuffle, *tbAddToList, *tbRemoveFromList, *tbMoveUp, *tbMoveDown, *tbRemove; | 68 | QToolButton *tbPlay, *tbFull, *tbLoop, *tbScale, *tbShuffle, *tbAddToList, *tbRemoveFromList, *tbMoveUp, *tbMoveDown, *tbRemove; |
69 | QFrame *playListFrame; | 69 | QFrame *playListFrame; |
70 | FileSelector *files; | 70 | FileSelector *files; |
71 | PlayListSelection *selectedFiles; | 71 | PlayListSelection *selectedFiles; |
72 | bool setDocumentUsed; | 72 | bool setDocumentUsed; |
73 | DocLnk *current; | 73 | DocLnk *current; |
74 | }; | 74 | }; |
75 | 75 | ||
76 | 76 | ||
77 | class ToolButton : public QToolButton { | 77 | class ToolButton : public QToolButton { |
78 | public: | 78 | public: |
79 | ToolButton( QWidget *parent, const char *name, const QString& icon, QObject *handler, const QString& slot, bool t = FALSE ) | 79 | ToolButton( QWidget *parent, const char *name, const QString& icon, QObject *handler, const QString& slot, bool t = FALSE ) |
80 | : QToolButton( parent, name ) { | 80 | : QToolButton( parent, name ) { |
81 | setTextLabel( name ); | 81 | setTextLabel( name ); |
82 | setPixmap( Resource::loadPixmap( icon ) ); | 82 | setPixmap( Resource::loadPixmap( icon ) ); |
83 | setAutoRaise( TRUE ); | 83 | setAutoRaise( TRUE ); |
84 | setFocusPolicy( QWidget::NoFocus ); | 84 | setFocusPolicy( QWidget::NoFocus ); |
85 | setToggleButton( t ); | 85 | setToggleButton( t ); |
86 | connect( this, t ? SIGNAL( toggled(bool) ) : SIGNAL( clicked() ), handler, slot ); | 86 | connect( this, t ? SIGNAL( toggled(bool) ) : SIGNAL( clicked() ), handler, slot ); |
87 | QPEMenuToolFocusManager::manager()->addWidget( this ); | 87 | QPEMenuToolFocusManager::manager()->addWidget( this ); |
88 | } | 88 | } |
89 | }; | 89 | }; |
90 | 90 | ||
91 | 91 | ||
92 | class MenuItem : public QAction { | 92 | class MenuItem : public QAction { |
93 | public: | 93 | public: |
94 | MenuItem( QWidget *parent, const QString& text, QObject *handler, const QString& slot ) | 94 | MenuItem( QWidget *parent, const QString& text, QObject *handler, const QString& slot ) |
95 | : QAction( text, QString::null, 0, 0 ) { | 95 | : QAction( text, QString::null, 0, 0 ) { |
96 | connect( this, SIGNAL( activated() ), handler, slot ); | 96 | connect( this, SIGNAL( activated() ), handler, slot ); |
97 | addTo( parent ); | 97 | addTo( parent ); |
98 | } | 98 | } |
99 | }; | 99 | }; |
100 | 100 | ||
101 | 101 | ||
102 | PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | 102 | PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) |
103 | : QMainWindow( parent, name, fl ) { | 103 | : QMainWindow( parent, name, fl ) { |
104 | 104 | ||
105 | d = new PlayListWidgetPrivate; | 105 | d = new PlayListWidgetPrivate; |
106 | d->setDocumentUsed = FALSE; | 106 | d->setDocumentUsed = FALSE; |
107 | d->current = NULL; | 107 | d->current = NULL; |
108 | fromSetDocument = FALSE; | 108 | fromSetDocument = FALSE; |
109 | insanityBool=FALSE; | 109 | insanityBool=FALSE; |
110 | audioScan = FALSE; | 110 | audioScan = FALSE; |
111 | videoScan = FALSE; | 111 | videoScan = FALSE; |
112 | 112 | ||
113 | setBackgroundMode( PaletteButton ); | 113 | setBackgroundMode( PaletteButton ); |
114 | 114 | ||
115 | setCaption( tr("OpiePlayer") ); | 115 | setCaption( tr("OpiePlayer") ); |
116 | setIcon( Resource::loadPixmap( "opieplayer2/MPEGPlayer" ) ); | 116 | setIcon( Resource::loadPixmap( "opieplayer2/MPEGPlayer" ) ); |
117 | 117 | ||
118 | setToolBarsMovable( FALSE ); | 118 | setToolBarsMovable( FALSE ); |
119 | 119 | ||
120 | // Create Toolbar | 120 | // Create Toolbar |
121 | QPEToolBar *toolbar = new QPEToolBar( this ); | 121 | QPEToolBar *toolbar = new QPEToolBar( this ); |
122 | toolbar->setHorizontalStretchable( TRUE ); | 122 | toolbar->setHorizontalStretchable( TRUE ); |
123 | 123 | ||
124 | // Create Menubar | 124 | // Create Menubar |
125 | QPEMenuBar *menu = new QPEMenuBar( toolbar ); | 125 | QPEMenuBar *menu = new QPEMenuBar( toolbar ); |
126 | menu->setMargin( 0 ); | 126 | menu->setMargin( 0 ); |
127 | 127 | ||
128 | QPEToolBar *bar = new QPEToolBar( this ); | 128 | QPEToolBar *bar = new QPEToolBar( this ); |
129 | bar->setLabel( tr( "Play Operations" ) ); | 129 | bar->setLabel( tr( "Play Operations" ) ); |
130 | 130 | ||
131 | tbDeletePlaylist = new QPushButton( Resource::loadIconSet("trash"),"",bar,"close"); | 131 | tbDeletePlaylist = new QPushButton( Resource::loadIconSet("trash"),"",bar,"close"); |
132 | tbDeletePlaylist->setFlat(TRUE); | 132 | tbDeletePlaylist->setFlat(TRUE); |
133 | tbDeletePlaylist->setFixedSize(20,20); | 133 | tbDeletePlaylist->setFixedSize(20,20); |
134 | 134 | ||
135 | d->tbAddToList = new ToolButton( bar, tr( "Add to Playlist" ), "opieplayer2/add_to_playlist", | 135 | d->tbAddToList = new ToolButton( bar, tr( "Add to Playlist" ), "opieplayer2/add_to_playlist", |
136 | this , SLOT(addSelected()) ); | 136 | this , SLOT(addSelected()) ); |
137 | d->tbRemoveFromList = new ToolButton( bar, tr( "Remove from Playlist" ), "opieplayer2/remove_from_playlist", | 137 | d->tbRemoveFromList = new ToolButton( bar, tr( "Remove from Playlist" ), "opieplayer2/remove_from_playlist", |
138 | this , SLOT(removeSelected()) ); | 138 | this , SLOT(removeSelected()) ); |
139 | d->tbPlay = new ToolButton( bar, tr( "Play" ), "opieplayer2/play", | 139 | d->tbPlay = new ToolButton( bar, tr( "Play" ), "opieplayer2/play", |
140 | this , SLOT( btnPlay(bool) ), TRUE ); | 140 | this , SLOT( btnPlay(bool) ), TRUE ); |
141 | d->tbShuffle = new ToolButton( bar, tr( "Randomize" ),"opieplayer2/shuffle", | 141 | d->tbShuffle = new ToolButton( bar, tr( "Randomize" ),"opieplayer2/shuffle", |
142 | mediaPlayerState, SLOT(setShuffled(bool)), TRUE ); | 142 | mediaPlayerState, SLOT(setShuffled(bool)), TRUE ); |
143 | d->tbLoop = new ToolButton( bar, tr( "Loop" ),"opieplayer2/loop", | 143 | d->tbLoop = new ToolButton( bar, tr( "Loop" ),"opieplayer2/loop", |
144 | mediaPlayerState, SLOT(setLooping(bool)), TRUE ); | 144 | mediaPlayerState, SLOT(setLooping(bool)), TRUE ); |
145 | tbDeletePlaylist->hide(); | 145 | tbDeletePlaylist->hide(); |
146 | 146 | ||
147 | QPopupMenu *pmPlayList = new QPopupMenu( this ); | 147 | QPopupMenu *pmPlayList = new QPopupMenu( this ); |
148 | menu->insertItem( tr( "File" ), pmPlayList ); | 148 | menu->insertItem( tr( "File" ), pmPlayList ); |
149 | new MenuItem( pmPlayList, tr( "Clear List" ), this, SLOT( clearList() ) ); | 149 | new MenuItem( pmPlayList, tr( "Clear List" ), this, SLOT( clearList() ) ); |
150 | new MenuItem( pmPlayList, tr( "Add all audio files" ), this, SLOT( addAllMusicToList() ) ); | 150 | new MenuItem( pmPlayList, tr( "Add all audio files" ), this, SLOT( addAllMusicToList() ) ); |
151 | new MenuItem( pmPlayList, tr( "Add all video files" ), this, SLOT( addAllVideoToList() ) ); | 151 | new MenuItem( pmPlayList, tr( "Add all video files" ), this, SLOT( addAllVideoToList() ) ); |
152 | new MenuItem( pmPlayList, tr( "Add all files" ), this, SLOT( addAllToList() ) ); | 152 | new MenuItem( pmPlayList, tr( "Add all files" ), this, SLOT( addAllToList() ) ); |
153 | pmPlayList->insertSeparator(-1); | 153 | pmPlayList->insertSeparator(-1); |
154 | new MenuItem( pmPlayList, tr( "Save PlayList" ), this, SLOT( saveList() ) ); | 154 | new MenuItem( pmPlayList, tr( "Save PlayList" ), this, SLOT( saveList() ) ); |
155 | new MenuItem( pmPlayList, tr( "Export playlist to m3u" ), this, SLOT(writem3u() ) ); | 155 | new MenuItem( pmPlayList, tr( "Export playlist to m3u" ), this, SLOT(writem3u() ) ); |
156 | pmPlayList->insertSeparator(-1); | 156 | pmPlayList->insertSeparator(-1); |
157 | new MenuItem( pmPlayList, tr( "Open File or URL" ), this,SLOT( openFile() ) ); | 157 | new MenuItem( pmPlayList, tr( "Open File or URL" ), this,SLOT( openFile() ) ); |
158 | pmPlayList->insertSeparator(-1); | 158 | pmPlayList->insertSeparator(-1); |
159 | new MenuItem( pmPlayList, tr( "Rescan for Audio Files" ), this,SLOT( scanForAudio() ) ); | 159 | new MenuItem( pmPlayList, tr( "Rescan for Audio Files" ), this,SLOT( scanForAudio() ) ); |
160 | new MenuItem( pmPlayList, tr( "Rescan for Video Files" ), this,SLOT( scanForVideo() ) ); | 160 | new MenuItem( pmPlayList, tr( "Rescan for Video Files" ), this,SLOT( scanForVideo() ) ); |
161 | 161 | ||
162 | 162 | ||
163 | pmView = new QPopupMenu( this ); | 163 | pmView = new QPopupMenu( this ); |
164 | menu->insertItem( tr( "View" ), pmView ); | 164 | menu->insertItem( tr( "View" ), pmView ); |
165 | pmView->isCheckable(); | 165 | pmView->isCheckable(); |
166 | 166 | ||
167 | pmView->insertItem( Resource::loadPixmap("fullscreen") , tr( "Full Screen"), mediaPlayerState, SLOT( toggleFullscreen() ) ); | 167 | pmView->insertItem( Resource::loadPixmap("fullscreen") , tr( "Full Screen"), mediaPlayerState, SLOT( toggleFullscreen() ) ); |
168 | 168 | ||
169 | Config cfg( "OpiePlayer" ); | 169 | Config cfg( "OpiePlayer" ); |
170 | bool b= cfg.readBoolEntry("FullScreen", 0); | 170 | bool b= cfg.readBoolEntry("FullScreen", 0); |
171 | mediaPlayerState->setFullscreen( b ); | 171 | mediaPlayerState->setFullscreen( b ); |
172 | pmView->setItemChecked( -16, b ); | 172 | pmView->setItemChecked( -16, b ); |
173 | 173 | ||
174 | // pmView->insertItem( Resource::loadPixmap("opieplayer/scale") , tr( "Scale"), mediaPlayerState, SLOT(toggleScaled() ) ); | 174 | // pmView->insertItem( Resource::loadPixmap("opieplayer/scale") , tr( "Scale"), mediaPlayerState, SLOT(toggleScaled() ) ); |
175 | 175 | ||
176 | pmView->insertSeparator(-1); | 176 | pmView->insertSeparator(-1); |
177 | 177 | ||
178 | skinsMenu = new QPopupMenu( this ); | 178 | skinsMenu = new QPopupMenu( this ); |
179 | pmView->insertItem( tr( "Skins" ), skinsMenu ); | 179 | pmView->insertItem( tr( "Skins" ), skinsMenu ); |
180 | skinsMenu->isCheckable(); | 180 | skinsMenu->isCheckable(); |
181 | populateSkinsMenu(); | 181 | populateSkinsMenu(); |
182 | 182 | ||
183 | QVBox *vbox5 = new QVBox( this ); vbox5->setBackgroundMode( PaletteButton ); | 183 | QVBox *vbox5 = new QVBox( this ); vbox5->setBackgroundMode( PaletteButton ); |
184 | QVBox *vbox4 = new QVBox( vbox5 ); vbox4->setBackgroundMode( PaletteButton ); | 184 | QVBox *vbox4 = new QVBox( vbox5 ); vbox4->setBackgroundMode( PaletteButton ); |
185 | 185 | ||
186 | QHBox *hbox6 = new QHBox( vbox4 ); hbox6->setBackgroundMode( PaletteButton ); | 186 | QHBox *hbox6 = new QHBox( vbox4 ); hbox6->setBackgroundMode( PaletteButton ); |
187 | 187 | ||
188 | tabWidget = new QTabWidget( hbox6, "tabWidget" ); | 188 | tabWidget = new QTabWidget( hbox6, "tabWidget" ); |
189 | // tabWidget->setTabShape(QTabWidget::Triangular); | 189 | // tabWidget->setTabShape(QTabWidget::Triangular); |
190 | 190 | ||
191 | QWidget *pTab; | 191 | QWidget *pTab; |
192 | pTab = new QWidget( tabWidget, "pTab" ); | 192 | pTab = new QWidget( tabWidget, "pTab" ); |
193 | tabWidget->insertTab( pTab,"Playlist"); | 193 | tabWidget->insertTab( pTab,"Playlist"); |
194 | 194 | ||
195 | 195 | ||
196 | // Add the playlist area | 196 | // Add the playlist area |
197 | 197 | ||
198 | QVBox *vbox3 = new QVBox( pTab ); vbox3->setBackgroundMode( PaletteButton ); | 198 | QVBox *vbox3 = new QVBox( pTab ); vbox3->setBackgroundMode( PaletteButton ); |
199 | d->playListFrame = vbox3; | 199 | d->playListFrame = vbox3; |
200 | d->playListFrame ->setMinimumSize(235,260); | 200 | d->playListFrame ->setMinimumSize(235,260); |
201 | 201 | ||
202 | QHBox *hbox2 = new QHBox( vbox3 ); hbox2->setBackgroundMode( PaletteButton ); | 202 | QHBox *hbox2 = new QHBox( vbox3 ); hbox2->setBackgroundMode( PaletteButton ); |
203 | 203 | ||
204 | d->selectedFiles = new PlayListSelection( hbox2); | 204 | d->selectedFiles = new PlayListSelection( hbox2); |
205 | QVBox *vbox1 = new QVBox( hbox2 ); vbox1->setBackgroundMode( PaletteButton ); | 205 | QVBox *vbox1 = new QVBox( hbox2 ); vbox1->setBackgroundMode( PaletteButton ); |
206 | 206 | ||
207 | QPEApplication::setStylusOperation( d->selectedFiles->viewport(),QPEApplication::RightOnHold); | 207 | QPEApplication::setStylusOperation( d->selectedFiles->viewport(),QPEApplication::RightOnHold); |
208 | 208 | ||
209 | QVBox *stretch1 = new QVBox( vbox1 ); stretch1->setBackgroundMode( PaletteButton ); // add stretch | 209 | QVBox *stretch1 = new QVBox( vbox1 ); stretch1->setBackgroundMode( PaletteButton ); // add stretch |
210 | new ToolButton( vbox1, tr( "Move Up" ), "opieplayer2/up", d->selectedFiles, SLOT(moveSelectedUp()) ); | 210 | new ToolButton( vbox1, tr( "Move Up" ), "opieplayer2/up", d->selectedFiles, SLOT(moveSelectedUp()) ); |
211 | new ToolButton( vbox1, tr( "Remove" ), "opieplayer2/cut", d->selectedFiles, SLOT(removeSelected()) ); | 211 | new ToolButton( vbox1, tr( "Remove" ), "opieplayer2/cut", d->selectedFiles, SLOT(removeSelected()) ); |
212 | new ToolButton( vbox1, tr( "Move Down" ), "opieplayer2/down", d->selectedFiles, SLOT(moveSelectedDown()) ); | 212 | new ToolButton( vbox1, tr( "Move Down" ), "opieplayer2/down", d->selectedFiles, SLOT(moveSelectedDown()) ); |
213 | QVBox *stretch2 = new QVBox( vbox1 ); stretch2->setBackgroundMode( PaletteButton ); // add stretch | 213 | QVBox *stretch2 = new QVBox( vbox1 ); stretch2->setBackgroundMode( PaletteButton ); // add stretch |
214 | 214 | ||
215 | QWidget *aTab; | 215 | QWidget *aTab; |
216 | aTab = new QWidget( tabWidget, "aTab" ); | 216 | aTab = new QWidget( tabWidget, "aTab" ); |
217 | audioView = new QListView( aTab, "Audioview" ); | 217 | audioView = new QListView( aTab, "Audioview" ); |
218 | audioView->setMinimumSize(233,260); | 218 | audioView->setMinimumSize(233,260); |
219 | audioView->addColumn( tr("Title"),140); | 219 | audioView->addColumn( tr("Title"),140); |
220 | audioView->addColumn(tr("Size"), -1); | 220 | audioView->addColumn(tr("Size"), -1); |
221 | audioView->addColumn(tr("Media"),-1); | 221 | audioView->addColumn(tr("Media"),-1); |
222 | audioView->setColumnAlignment(1, Qt::AlignRight); | 222 | audioView->setColumnAlignment(1, Qt::AlignRight); |
223 | audioView->setColumnAlignment(2, Qt::AlignRight); | 223 | audioView->setColumnAlignment(2, Qt::AlignRight); |
224 | audioView->setAllColumnsShowFocus(TRUE); | 224 | audioView->setAllColumnsShowFocus(TRUE); |
225 | 225 | ||
226 | audioView->setMultiSelection( TRUE ); | 226 | audioView->setMultiSelection( TRUE ); |
227 | audioView->setSelectionMode( QListView::Extended); | 227 | audioView->setSelectionMode( QListView::Extended); |
228 | 228 | ||
229 | tabWidget->insertTab(aTab,tr("Audio")); | 229 | tabWidget->insertTab(aTab,tr("Audio")); |
230 | 230 | ||
231 | QPEApplication::setStylusOperation( audioView->viewport(),QPEApplication::RightOnHold); | 231 | QPEApplication::setStylusOperation( audioView->viewport(),QPEApplication::RightOnHold); |
232 | 232 | ||
233 | QWidget *vTab; | 233 | QWidget *vTab; |
234 | vTab = new QWidget( tabWidget, "vTab" ); | 234 | vTab = new QWidget( tabWidget, "vTab" ); |
235 | videoView = new QListView( vTab, "Videoview" ); | 235 | videoView = new QListView( vTab, "Videoview" ); |
236 | videoView->setMinimumSize(233,260); | 236 | videoView->setMinimumSize(233,260); |
237 | 237 | ||
238 | videoView->addColumn(tr("Title"),140); | 238 | videoView->addColumn(tr("Title"),140); |
239 | videoView->addColumn(tr("Size"),-1); | 239 | videoView->addColumn(tr("Size"),-1); |
240 | videoView->addColumn(tr("Media"),-1); | 240 | videoView->addColumn(tr("Media"),-1); |
241 | videoView->setColumnAlignment(1, Qt::AlignRight); | 241 | videoView->setColumnAlignment(1, Qt::AlignRight); |
242 | videoView->setColumnAlignment(2, Qt::AlignRight); | 242 | videoView->setColumnAlignment(2, Qt::AlignRight); |
243 | videoView->setAllColumnsShowFocus(TRUE); | 243 | videoView->setAllColumnsShowFocus(TRUE); |
244 | videoView->setMultiSelection( TRUE ); | 244 | videoView->setMultiSelection( TRUE ); |
245 | videoView->setSelectionMode( QListView::Extended); | 245 | videoView->setSelectionMode( QListView::Extended); |
246 | 246 | ||
247 | QPEApplication::setStylusOperation( videoView->viewport(),QPEApplication::RightOnHold); | 247 | QPEApplication::setStylusOperation( videoView->viewport(),QPEApplication::RightOnHold); |
248 | 248 | ||
249 | tabWidget->insertTab( vTab,tr("Video")); | 249 | tabWidget->insertTab( vTab,tr("Video")); |
250 | 250 | ||
251 | //playlists list | 251 | //playlists list |
252 | QWidget *LTab; | 252 | QWidget *LTab; |
253 | LTab = new QWidget( tabWidget, "LTab" ); | 253 | LTab = new QWidget( tabWidget, "LTab" ); |
254 | playLists = new FileSelector( "playlist/plain", LTab, "fileselector" , FALSE, FALSE); //buggy | 254 | playLists = new FileSelector( "playlist/plain", LTab, "fileselector" , FALSE, FALSE); //buggy |
255 | playLists->setMinimumSize(233,260); | 255 | playLists->setMinimumSize(233,260); |
256 | tabWidget->insertTab(LTab,tr("Lists")); | 256 | tabWidget->insertTab(LTab,tr("Lists")); |
257 | 257 | ||
258 | connect(tbDeletePlaylist,(SIGNAL(released())),SLOT( deletePlaylist())); | 258 | connect(tbDeletePlaylist,(SIGNAL(released())),SLOT( deletePlaylist())); |
259 | 259 | ||
260 | connect( pmView, SIGNAL( activated(int)), this, SLOT( pmViewActivated(int) ) ); | 260 | connect( pmView, SIGNAL( activated(int)), this, SLOT( pmViewActivated(int) ) ); |
261 | 261 | ||
262 | connect( skinsMenu, SIGNAL( activated(int)), this, SLOT(skinsMenuActivated(int) ) ); | 262 | connect( skinsMenu, SIGNAL( activated(int)), this, SLOT(skinsMenuActivated(int) ) ); |
263 | 263 | ||
264 | // connect( scaleButton, SIGNAL(activated()), mediaPlayerState, SLOT(toggleScaled() ) ); | 264 | // connect( scaleButton, SIGNAL(activated()), mediaPlayerState, SLOT(toggleScaled() ) ); |
265 | 265 | ||
266 | connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), | 266 | connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), |
267 | this,SLOT( playlistViewPressed(int, QListViewItem *, const QPoint&, int)) ); | 267 | this,SLOT( playlistViewPressed(int, QListViewItem *, const QPoint&, int)) ); |
268 | connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), | 268 | connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), |
269 | this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); | 269 | this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); |
270 | connect( audioView, SIGNAL( returnPressed( QListViewItem *)), | 270 | connect( audioView, SIGNAL( returnPressed( QListViewItem *)), |
271 | this,SLOT( playIt( QListViewItem *)) ); | 271 | this,SLOT( playIt( QListViewItem *)) ); |
272 | connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); | 272 | connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); |
273 | connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), | 273 | connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), |
274 | this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); | 274 | this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); |
275 | connect( videoView, SIGNAL( returnPressed( QListViewItem *)), | 275 | connect( videoView, SIGNAL( returnPressed( QListViewItem *)), |
276 | this,SLOT( playIt( QListViewItem *)) ); | 276 | this,SLOT( playIt( QListViewItem *)) ); |
277 | connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); | 277 | connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); |
278 | connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( loadList( const DocLnk & ) ) ); | 278 | connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( loadList( const DocLnk & ) ) ); |
279 | connect( tabWidget, SIGNAL (currentChanged(QWidget*)),this,SLOT(tabChanged(QWidget*))); | 279 | connect( tabWidget, SIGNAL (currentChanged(QWidget*)),this,SLOT(tabChanged(QWidget*))); |
280 | connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), d->tbPlay, SLOT( setOn( bool ) ) ); | 280 | connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), d->tbPlay, SLOT( setOn( bool ) ) ); |
281 | connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), d->tbLoop, SLOT( setOn( bool ) ) ); | 281 | connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), d->tbLoop, SLOT( setOn( bool ) ) ); |
282 | connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), d->tbShuffle, SLOT( setOn( bool ) ) ); | 282 | connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), d->tbShuffle, SLOT( setOn( bool ) ) ); |
283 | connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), this, SLOT( setPlaylist( bool ) ) ); | 283 | connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), this, SLOT( setPlaylist( bool ) ) ); |
284 | connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( playIt( QListViewItem *) ) ); | 284 | connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( playIt( QListViewItem *) ) ); |
285 | 285 | ||
286 | setCentralWidget( vbox5 ); | 286 | setCentralWidget( vbox5 ); |
287 | 287 | ||
288 | readConfig( cfg ); | 288 | readConfig( cfg ); |
289 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); | 289 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); |
290 | loadList(DocLnk( currentPlaylist)); | 290 | loadList(DocLnk( currentPlaylist)); |
291 | setCaption(tr("OpiePlayer: ")+ currentPlaylist ); | 291 | setCaption(tr("OpiePlayer: ")+ currentPlaylist ); |
292 | 292 | ||
293 | initializeStates(); | 293 | initializeStates(); |
294 | } | 294 | } |
295 | 295 | ||
296 | 296 | ||
297 | PlayListWidget::~PlayListWidget() { | 297 | PlayListWidget::~PlayListWidget() { |
298 | Config cfg( "OpiePlayer" ); | 298 | Config cfg( "OpiePlayer" ); |
299 | writeConfig( cfg ); | 299 | writeConfig( cfg ); |
300 | 300 | ||
301 | if ( d->current ) { | 301 | if ( d->current ) { |
302 | delete d->current; | 302 | delete d->current; |
303 | } | 303 | } |
304 | delete d; | 304 | delete d; |
305 | } | 305 | } |
306 | 306 | ||
307 | 307 | ||
308 | void PlayListWidget::initializeStates() { | 308 | void PlayListWidget::initializeStates() { |
309 | 309 | ||
310 | d->tbPlay->setOn( mediaPlayerState->playing() ); | 310 | d->tbPlay->setOn( mediaPlayerState->playing() ); |
311 | d->tbLoop->setOn( mediaPlayerState->looping() ); | 311 | d->tbLoop->setOn( mediaPlayerState->looping() ); |
312 | d->tbShuffle->setOn( mediaPlayerState->shuffled() ); | 312 | d->tbShuffle->setOn( mediaPlayerState->shuffled() ); |
313 | setPlaylist( true); | 313 | setPlaylist( true); |
314 | } | 314 | } |
315 | 315 | ||
316 | 316 | ||
317 | void PlayListWidget::readConfig( Config& cfg ) { | 317 | void PlayListWidget::readConfig( Config& cfg ) { |
318 | cfg.setGroup("PlayList"); | 318 | cfg.setGroup("PlayList"); |
319 | QString currentString = cfg.readEntry("current", "" ); | 319 | QString currentString = cfg.readEntry("current", "" ); |
320 | int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); | 320 | int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); |
321 | for ( int i = 0; i < noOfFiles; i++ ) { | 321 | for ( int i = 0; i < noOfFiles; i++ ) { |
322 | QString entryName; | 322 | QString entryName; |
323 | entryName.sprintf( "File%i", i + 1 ); | 323 | entryName.sprintf( "File%i", i + 1 ); |
324 | QString linkFile = cfg.readEntry( entryName ); | 324 | QString linkFile = cfg.readEntry( entryName ); |
325 | DocLnk lnk( linkFile ); | 325 | if(QFileInfo( linkFile).exists() ) { |
326 | if ( lnk.isValid() ) { | 326 | DocLnk lnk( linkFile ); |
327 | d->selectedFiles->addToSelection( lnk ); | 327 | if ( QFileInfo( lnk.file()).exists() || linkFile.find("http",0,TRUE) != -1) { |
328 | d->selectedFiles->addToSelection( lnk ); | ||
329 | } | ||
328 | } | 330 | } |
329 | } | 331 | } |
330 | d->selectedFiles->setSelectedItem( currentString); | 332 | d->selectedFiles->setSelectedItem( currentString); |
331 | } | 333 | } |
332 | 334 | ||
333 | 335 | ||
334 | void PlayListWidget::writeConfig( Config& cfg ) const { | 336 | void PlayListWidget::writeConfig( Config& cfg ) const { |
335 | 337 | ||
336 | d->selectedFiles->writeCurrent( cfg); | 338 | d->selectedFiles->writeCurrent( cfg); |
337 | cfg.setGroup("PlayList"); | 339 | cfg.setGroup("PlayList"); |
338 | int noOfFiles = 0; | 340 | int noOfFiles = 0; |
339 | d->selectedFiles->first(); | 341 | d->selectedFiles->first(); |
340 | do { | 342 | do { |
341 | const DocLnk *lnk = d->selectedFiles->current(); | 343 | const DocLnk *lnk = d->selectedFiles->current(); |
342 | if ( lnk ) { | 344 | if ( lnk ) { |
343 | QString entryName; | 345 | QString entryName; |
344 | entryName.sprintf( "File%i", noOfFiles + 1 ); | 346 | entryName.sprintf( "File%i", noOfFiles + 1 ); |
345 | cfg.writeEntry( entryName, lnk->linkFile() ); | 347 | cfg.writeEntry( entryName, lnk->linkFile() ); |
346 | // if this link does exist, add it so we have the file | 348 | // if this link does exist, add it so we have the file |
347 | // next time... | 349 | // next time... |
348 | if ( !QFile::exists( lnk->linkFile() ) ) { | 350 | if ( !QFile::exists( lnk->linkFile() ) ) { |
349 | // the way writing lnks doesn't really check for out | 351 | // the way writing lnks doesn't really check for out |
350 | // of disk space, but check it anyway. | 352 | // of disk space, but check it anyway. |
351 | if ( !lnk->writeLink() ) { | 353 | if ( !lnk->writeLink() ) { |
352 | QMessageBox::critical( 0, tr("Out of space"), | 354 | QMessageBox::critical( 0, tr("Out of space"), |
353 | tr( "There was a problem saving " | 355 | tr( "There was a problem saving " |
354 | "the playlist.\n" | 356 | "the playlist.\n" |
355 | "Your playlist " | 357 | "Your playlist " |
356 | "may be missing some entries\n" | 358 | "may be missing some entries\n" |
357 | "the next time you start it." ) | 359 | "the next time you start it." ) |
358 | ); | 360 | ); |
359 | } | 361 | } |
360 | } | 362 | } |
361 | noOfFiles++; | 363 | noOfFiles++; |
362 | } | 364 | } |
363 | } | 365 | } |
364 | while ( d->selectedFiles->next() ); | 366 | while ( d->selectedFiles->next() ); |
365 | cfg.writeEntry("NumberOfFiles", noOfFiles ); | 367 | cfg.writeEntry("NumberOfFiles", noOfFiles ); |
366 | } | 368 | } |
367 | 369 | ||
368 | 370 | ||
369 | void PlayListWidget::addToSelection( const DocLnk& lnk ) { | 371 | void PlayListWidget::addToSelection( const DocLnk& lnk ) { |
370 | d->setDocumentUsed = FALSE; | 372 | d->setDocumentUsed = FALSE; |
371 | if ( mediaPlayerState->playlist() ) { | 373 | if ( mediaPlayerState->playlist() ) { |
372 | if(QFileInfo(lnk.file()).exists() || lnk.file().left(4) == "http" ) | 374 | if(QFileInfo(lnk.file()).exists() || lnk.file().left(4) == "http" ) |
373 | d->selectedFiles->addToSelection( lnk ); | 375 | d->selectedFiles->addToSelection( lnk ); |
374 | } | 376 | } |
375 | else | 377 | else |
376 | mediaPlayerState->setPlaying( TRUE ); | 378 | mediaPlayerState->setPlaying( TRUE ); |
377 | } | 379 | } |
378 | 380 | ||
379 | 381 | ||
380 | void PlayListWidget::clearList() { | 382 | void PlayListWidget::clearList() { |
381 | while ( first() ) { | 383 | while ( first() ) { |
382 | d->selectedFiles->removeSelected(); | 384 | d->selectedFiles->removeSelected(); |
383 | } | 385 | } |
384 | } | 386 | } |
385 | 387 | ||
386 | 388 | ||
387 | void PlayListWidget::addAllToList() { | 389 | void PlayListWidget::addAllToList() { |
388 | DocLnkSet filesAll; | 390 | DocLnkSet filesAll; |
389 | Global::findDocuments(&filesAll, "video/*;audio/*"); | 391 | Global::findDocuments(&filesAll, "video/*;audio/*"); |
390 | QListIterator<DocLnk> Adit( filesAll.children() ); | 392 | QListIterator<DocLnk> Adit( filesAll.children() ); |
391 | for ( ; Adit.current(); ++Adit ) { | 393 | for ( ; Adit.current(); ++Adit ) { |
392 | if(QFileInfo(Adit.current()->file()).exists()) { | 394 | if(QFileInfo(Adit.current()->file()).exists()) { |
393 | d->selectedFiles->addToSelection( **Adit ); | 395 | d->selectedFiles->addToSelection( **Adit ); |
394 | } | 396 | } |
395 | } | 397 | } |
396 | } | 398 | } |
397 | 399 | ||
398 | 400 | ||
399 | void PlayListWidget::addAllMusicToList() { | 401 | void PlayListWidget::addAllMusicToList() { |
400 | QListIterator<DocLnk> dit( files.children() ); | 402 | QListIterator<DocLnk> dit( files.children() ); |
401 | for ( ; dit.current(); ++dit ) { | 403 | for ( ; dit.current(); ++dit ) { |
402 | if(QFileInfo(dit.current()->file()).exists()) { | 404 | if(QFileInfo(dit.current()->file()).exists()) { |
403 | d->selectedFiles->addToSelection( **dit ); | 405 | d->selectedFiles->addToSelection( **dit ); |
404 | } | 406 | } |
405 | } | 407 | } |
406 | } | 408 | } |
407 | 409 | ||
408 | 410 | ||
409 | void PlayListWidget::addAllVideoToList() { | 411 | void PlayListWidget::addAllVideoToList() { |
410 | QListIterator<DocLnk> dit( vFiles.children() ); | 412 | QListIterator<DocLnk> dit( vFiles.children() ); |
411 | for ( ; dit.current(); ++dit ) | 413 | for ( ; dit.current(); ++dit ) |
412 | if(QFileInfo( dit.current()->file()).exists()) | 414 | if(QFileInfo( dit.current()->file()).exists()) |
413 | d->selectedFiles->addToSelection( **dit ); | 415 | d->selectedFiles->addToSelection( **dit ); |
414 | } | 416 | } |
415 | 417 | ||
416 | 418 | ||
417 | void PlayListWidget::setDocument(const QString& fileref) { | 419 | void PlayListWidget::setDocument(const QString& fileref) { |
418 | qDebug(fileref); | 420 | qDebug(fileref); |
419 | fromSetDocument = TRUE; | 421 | fromSetDocument = TRUE; |
420 | if ( fileref.isNull() ) { | 422 | if ( fileref.isNull() ) { |
421 | QMessageBox::critical( 0, tr( "Invalid File" ), tr( "There was a problem in getting the file." ) ); | 423 | QMessageBox::critical( 0, tr( "Invalid File" ), tr( "There was a problem in getting the file." ) ); |
422 | return; | 424 | return; |
423 | } | 425 | } |
424 | 426 | ||
425 | if(fileref.find("m3u",0,TRUE) != -1) { //is m3u | 427 | if(fileref.find("m3u",0,TRUE) != -1) { //is m3u |
426 | readm3u( fileref); | 428 | readm3u( fileref); |
427 | } else if(fileref.find("pls",0,TRUE) != -1) { //is pls | 429 | } else if(fileref.find("pls",0,TRUE) != -1) { //is pls |
428 | readPls( fileref); | 430 | readPls( fileref); |
429 | } else if(fileref.find("playlist",0,TRUE) != -1) {//is playlist | 431 | } else if(fileref.find("playlist",0,TRUE) != -1) {//is playlist |
430 | clearList(); | 432 | clearList(); |
431 | loadList(DocLnk(fileref)); | 433 | loadList(DocLnk(fileref)); |
432 | d->selectedFiles->first(); | 434 | d->selectedFiles->first(); |
433 | } else { | 435 | } else { |
434 | clearList(); | 436 | clearList(); |
435 | addToSelection( DocLnk( fileref ) ); | 437 | addToSelection( DocLnk( fileref ) ); |
436 | d->setDocumentUsed = TRUE; | 438 | d->setDocumentUsed = TRUE; |
437 | mediaPlayerState->setPlaying( FALSE ); | 439 | mediaPlayerState->setPlaying( FALSE ); |
438 | qApp->processEvents(); | 440 | qApp->processEvents(); |
439 | mediaPlayerState->setPlaying( TRUE ); | 441 | mediaPlayerState->setPlaying( TRUE ); |
440 | qApp->processEvents(); | 442 | qApp->processEvents(); |
441 | setCaption(tr("OpiePlayer")); | 443 | setCaption(tr("OpiePlayer")); |
442 | } | 444 | } |
443 | } | 445 | } |
444 | 446 | ||
445 | 447 | ||
446 | void PlayListWidget::setActiveWindow() { | 448 | void PlayListWidget::setActiveWindow() { |
447 | qDebug("SETTING active window"); | 449 | qDebug("SETTING active window"); |
448 | // When we get raised we need to ensure that it switches views | 450 | // When we get raised we need to ensure that it switches views |
449 | char origView = mediaPlayerState->view(); | 451 | char origView = mediaPlayerState->view(); |
450 | mediaPlayerState->setView( 'l' ); // invalidate | 452 | mediaPlayerState->setView( 'l' ); // invalidate |
451 | mediaPlayerState->setView( origView ); // now switch back | 453 | mediaPlayerState->setView( origView ); // now switch back |
452 | } | 454 | } |
453 | 455 | ||
454 | 456 | ||
455 | void PlayListWidget::useSelectedDocument() { | 457 | void PlayListWidget::useSelectedDocument() { |
456 | d->setDocumentUsed = FALSE; | 458 | d->setDocumentUsed = FALSE; |
457 | } | 459 | } |
458 | 460 | ||
459 | 461 | ||
460 | const DocLnk *PlayListWidget::current() { // this is fugly | 462 | const DocLnk *PlayListWidget::current() { // this is fugly |
461 | 463 | ||
462 | switch (tabWidget->currentPageIndex()) { | 464 | switch (tabWidget->currentPageIndex()) { |
463 | case 0: //playlist | 465 | case 0: //playlist |
464 | { | 466 | { |
465 | qDebug("playlist"); | 467 | qDebug("playlist"); |
466 | if ( mediaPlayerState->playlist() ) { | 468 | if ( mediaPlayerState->playlist() ) { |
467 | return d->selectedFiles->current(); | 469 | return d->selectedFiles->current(); |
468 | } else if ( d->setDocumentUsed && d->current ) { | 470 | } else if ( d->setDocumentUsed && d->current ) { |
469 | return d->current; | 471 | return d->current; |
470 | } else { | 472 | } else { |
471 | return d->files->selected(); | 473 | return d->files->selected(); |
472 | } | 474 | } |
473 | } | 475 | } |
474 | break; | 476 | break; |
475 | case 1://audio | 477 | case 1://audio |
476 | { | 478 | { |
477 | qDebug("audioView"); | 479 | qDebug("audioView"); |
478 | QListIterator<DocLnk> dit( files.children() ); | 480 | QListIterator<DocLnk> dit( files.children() ); |
479 | for ( ; dit.current(); ++dit ) { | 481 | for ( ; dit.current(); ++dit ) { |
480 | if( dit.current()->name() == audioView->currentItem()->text(0) && !insanityBool) { | 482 | if( dit.current()->name() == audioView->currentItem()->text(0) && !insanityBool) { |
481 | qDebug("here"); | 483 | qDebug("here"); |
482 | insanityBool=TRUE; | 484 | insanityBool=TRUE; |
483 | return dit; | 485 | return dit; |
484 | } | 486 | } |
485 | } | 487 | } |
486 | } | 488 | } |
487 | break; | 489 | break; |
488 | case 2: // video | 490 | case 2: // video |
489 | { | 491 | { |
490 | qDebug("videoView"); | 492 | qDebug("videoView"); |
491 | QListIterator<DocLnk> Vdit( vFiles.children() ); | 493 | QListIterator<DocLnk> Vdit( vFiles.children() ); |
492 | for ( ; Vdit.current(); ++Vdit ) { | 494 | for ( ; Vdit.current(); ++Vdit ) { |
493 | if( Vdit.current()->name() == videoView->currentItem()->text(0) && !insanityBool) { | 495 | if( Vdit.current()->name() == videoView->currentItem()->text(0) && !insanityBool) { |
494 | insanityBool=TRUE; | 496 | insanityBool=TRUE; |
495 | return Vdit; | 497 | return Vdit; |
496 | } | 498 | } |
497 | } | 499 | } |
498 | } | 500 | } |
499 | break; | 501 | break; |
500 | }; | 502 | }; |
501 | return 0; | 503 | return 0; |
502 | } | 504 | } |
503 | 505 | ||
504 | bool PlayListWidget::prev() { | 506 | bool PlayListWidget::prev() { |
505 | if ( mediaPlayerState->playlist() ) { | 507 | if ( mediaPlayerState->playlist() ) { |
506 | if ( mediaPlayerState->shuffled() ) { | 508 | if ( mediaPlayerState->shuffled() ) { |
507 | const DocLnk *cur = current(); | 509 | const DocLnk *cur = current(); |
508 | int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0)); | 510 | int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0)); |
509 | for ( int i = 0; i < j; i++ ) { | 511 | for ( int i = 0; i < j; i++ ) { |
510 | if ( !d->selectedFiles->next() ) | 512 | if ( !d->selectedFiles->next() ) |
511 | d->selectedFiles->first(); | 513 | d->selectedFiles->first(); |
512 | } | 514 | } |
513 | if ( cur == current() ) | 515 | if ( cur == current() ) |
514 | if ( !d->selectedFiles->next() ) | 516 | if ( !d->selectedFiles->next() ) |
515 | d->selectedFiles->first(); | 517 | d->selectedFiles->first(); |
516 | return TRUE; | 518 | return TRUE; |
517 | } else { | 519 | } else { |
518 | if ( !d->selectedFiles->prev() ) { | 520 | if ( !d->selectedFiles->prev() ) { |
519 | if ( mediaPlayerState->looping() ) { | 521 | if ( mediaPlayerState->looping() ) { |
520 | return d->selectedFiles->last(); | 522 | return d->selectedFiles->last(); |
521 | } else { | 523 | } else { |
522 | return FALSE; | 524 | return FALSE; |
523 | } | 525 | } |
524 | } | 526 | } |
525 | return TRUE; | 527 | return TRUE; |
526 | } | 528 | } |
527 | } else { | 529 | } else { |
528 | return mediaPlayerState->looping(); | 530 | return mediaPlayerState->looping(); |
529 | } | 531 | } |
530 | } | 532 | } |
531 | 533 | ||
532 | 534 | ||
533 | bool PlayListWidget::next() { | 535 | bool PlayListWidget::next() { |
534 | if ( mediaPlayerState->playlist() ) { | 536 | if ( mediaPlayerState->playlist() ) { |
535 | if ( mediaPlayerState->shuffled() ) { | 537 | if ( mediaPlayerState->shuffled() ) { |
536 | return prev(); | 538 | return prev(); |
537 | } else { | 539 | } else { |
538 | if ( !d->selectedFiles->next() ) { | 540 | if ( !d->selectedFiles->next() ) { |
539 | if ( mediaPlayerState->looping() ) { | 541 | if ( mediaPlayerState->looping() ) { |
540 | return d->selectedFiles->first(); | 542 | return d->selectedFiles->first(); |
541 | } else { | 543 | } else { |
542 | return FALSE; | 544 | return FALSE; |
543 | } | 545 | } |
544 | } | 546 | } |
545 | return TRUE; | 547 | return TRUE; |
546 | } | 548 | } |
547 | } else { | 549 | } else { |
548 | return mediaPlayerState->looping(); | 550 | return mediaPlayerState->looping(); |
549 | } | 551 | } |
550 | } | 552 | } |
551 | 553 | ||
552 | 554 | ||
553 | bool PlayListWidget::first() { | 555 | bool PlayListWidget::first() { |
554 | if ( mediaPlayerState->playlist() ) | 556 | if ( mediaPlayerState->playlist() ) |
555 | return d->selectedFiles->first(); | 557 | return d->selectedFiles->first(); |
556 | else | 558 | else |
557 | return mediaPlayerState->looping(); | 559 | return mediaPlayerState->looping(); |
558 | } | 560 | } |
559 | 561 | ||
560 | 562 | ||
561 | bool PlayListWidget::last() { | 563 | bool PlayListWidget::last() { |
562 | if ( mediaPlayerState->playlist() ) | 564 | if ( mediaPlayerState->playlist() ) |
563 | return d->selectedFiles->last(); | 565 | return d->selectedFiles->last(); |
564 | else | 566 | else |
565 | return mediaPlayerState->looping(); | 567 | return mediaPlayerState->looping(); |
566 | } | 568 | } |
567 | 569 | ||
568 | 570 | ||
569 | void PlayListWidget::saveList() { | 571 | void PlayListWidget::saveList() { |
570 | 572 | ||
571 | QString filename; | 573 | QString filename; |
572 | InputDialog *fileDlg; | 574 | InputDialog *fileDlg; |
573 | fileDlg = new InputDialog(this,tr("Save Playlist"),TRUE, 0); | 575 | fileDlg = new InputDialog(this,tr("Save Playlist"),TRUE, 0); |
574 | fileDlg->exec(); | 576 | fileDlg->exec(); |
575 | if( fileDlg->result() == 1 ) { | 577 | if( fileDlg->result() == 1 ) { |
576 | if ( d->current ) | 578 | if ( d->current ) |
577 | delete d->current; | 579 | delete d->current; |
578 | filename = fileDlg->LineEdit1->text();//+".playlist"; | 580 | filename = fileDlg->LineEdit1->text();//+".playlist"; |
579 | // qDebug("saving playlist "+filename+".playlist"); | 581 | // qDebug("saving playlist "+filename+".playlist"); |
580 | Config cfg( filename +".playlist"); | 582 | Config cfg( filename +".playlist"); |
581 | writeConfig( cfg ); | 583 | writeConfig( cfg ); |
582 | 584 | ||
583 | DocLnk lnk; | 585 | DocLnk lnk; |
584 | lnk.setFile(QDir::homeDirPath()+"/Settings/"+filename+".playlist.conf"); //sets File property | 586 | lnk.setFile(QDir::homeDirPath()+"/Settings/"+filename+".playlist.conf"); //sets File property |
585 | lnk.setType("playlist/plain");// hey is this a REGISTERED mime type?!?!? ;D | 587 | lnk.setType("playlist/plain");// hey is this a REGISTERED mime type?!?!? ;D |
586 | lnk.setIcon("opieplayer2/playlist2"); | 588 | lnk.setIcon("opieplayer2/playlist2"); |
587 | lnk.setName( filename); //sets file name | 589 | lnk.setName( filename); //sets file name |
588 | // qDebug(filename); | 590 | // qDebug(filename); |
589 | if(!lnk.writeLink()) { | 591 | if(!lnk.writeLink()) { |
590 | qDebug("Writing doclink did not work"); | 592 | qDebug("Writing doclink did not work"); |
591 | } | 593 | } |
592 | } | 594 | } |
593 | Config config( "OpiePlayer" ); | 595 | Config config( "OpiePlayer" ); |
594 | config.writeEntry("CurrentPlaylist",filename); | 596 | config.writeEntry("CurrentPlaylist",filename); |
595 | setCaption(tr("OpiePlayer: ")+filename); | 597 | setCaption(tr("OpiePlayer: ")+filename); |
596 | d->selectedFiles->first(); | 598 | d->selectedFiles->first(); |
597 | if(fileDlg) { | 599 | if(fileDlg) { |
598 | delete fileDlg; | 600 | delete fileDlg; |
599 | } | 601 | } |
600 | } | 602 | } |
601 | 603 | ||
602 | void PlayListWidget::loadList( const DocLnk & lnk) { | 604 | void PlayListWidget::loadList( const DocLnk & lnk) { |
603 | QString name= lnk.name(); | 605 | QString name= lnk.name(); |
604 | // qDebug("currentList is "+name); | 606 | // qDebug("currentList is "+name); |
605 | if( name.length()>1) { | 607 | if( name.length()>1) { |
606 | setCaption("OpiePlayer: "+name); | 608 | setCaption("OpiePlayer: "+name); |
607 | // qDebug("load list "+ name+".playlist"); | 609 | // qDebug("load list "+ name+".playlist"); |
608 | clearList(); | 610 | clearList(); |
609 | Config cfg( name+".playlist"); | 611 | Config cfg( name+".playlist"); |
610 | readConfig(cfg); | 612 | readConfig(cfg); |
611 | 613 | ||
612 | tabWidget->setCurrentPage(0); | 614 | tabWidget->setCurrentPage(0); |
613 | 615 | ||
614 | Config config( "OpiePlayer" ); | 616 | Config config( "OpiePlayer" ); |
615 | config.writeEntry("CurrentPlaylist", name); | 617 | config.writeEntry("CurrentPlaylist", name); |
616 | // d->selectedFiles->first(); | 618 | // d->selectedFiles->first(); |
617 | } | 619 | } |
618 | 620 | ||
619 | } | 621 | } |
620 | 622 | ||
621 | void PlayListWidget::setPlaylist( bool shown ) { | 623 | void PlayListWidget::setPlaylist( bool shown ) { |
622 | if ( shown ) { | 624 | if ( shown ) { |
623 | d->playListFrame->show(); | 625 | d->playListFrame->show(); |
624 | } else { | 626 | } else { |
625 | d->playListFrame->hide(); | 627 | d->playListFrame->hide(); |
626 | } | 628 | } |
627 | } | 629 | } |
628 | 630 | ||
629 | void PlayListWidget::setView( char view ) { | 631 | void PlayListWidget::setView( char view ) { |
630 | if ( view == 'l' ) | 632 | if ( view == 'l' ) |
631 | showMaximized(); | 633 | showMaximized(); |
632 | else | 634 | else |
633 | hide(); | 635 | hide(); |
634 | } | 636 | } |
635 | 637 | ||
636 | void PlayListWidget::addSelected() { | 638 | void PlayListWidget::addSelected() { |
637 | 639 | ||
638 | Config cfg( "OpiePlayer" ); | 640 | Config cfg( "OpiePlayer" ); |
639 | cfg.setGroup("PlayList"); | 641 | cfg.setGroup("PlayList"); |
640 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); | 642 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); |
641 | // int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); | 643 | // int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); |
642 | 644 | ||
643 | switch (tabWidget->currentPageIndex()) { | 645 | switch (tabWidget->currentPageIndex()) { |
644 | case 0: //playlist | 646 | case 0: //playlist |
645 | break; | 647 | break; |
646 | case 1: { //audio | 648 | case 1: { //audio |
647 | QListViewItemIterator it( audioView ); | 649 | QListViewItemIterator it( audioView ); |
648 | // iterate through all items of the listview | 650 | // iterate through all items of the listview |
649 | for ( ; it.current(); ++it ) { | 651 | for ( ; it.current(); ++it ) { |
650 | if ( it.current()->isSelected() ) { | 652 | if ( it.current()->isSelected() ) { |
651 | QListIterator<DocLnk> dit( files.children() ); | 653 | QListIterator<DocLnk> dit( files.children() ); |
652 | for ( ; dit.current(); ++dit ) { | 654 | for ( ; dit.current(); ++dit ) { |
653 | if( dit.current()->name() == it.current()->text(0) ) { | 655 | if( dit.current()->name() == it.current()->text(0) ) { |
654 | d->selectedFiles->addToSelection( **dit ); | 656 | if(QFileInfo( dit.current()->file()).exists()) |
657 | d->selectedFiles->addToSelection( **dit ); | ||
655 | } | 658 | } |
656 | } | 659 | } |
657 | audioView->setSelected( it.current(),FALSE); | 660 | audioView->setSelected( it.current(),FALSE); |
658 | } | 661 | } |
659 | } | 662 | } |
660 | tabWidget->setCurrentPage(0); | 663 | tabWidget->setCurrentPage(0); |
661 | } | 664 | } |
662 | break; | 665 | break; |
663 | case 2: { // video | 666 | case 2: { // video |
664 | QListViewItemIterator it( videoView ); | 667 | QListViewItemIterator it( videoView ); |
665 | // iterate through all items of the listview | 668 | // iterate through all items of the listview |
666 | for ( ; it.current(); ++it ) { | 669 | for ( ; it.current(); ++it ) { |
667 | if ( it.current()->isSelected() ) { | 670 | if ( it.current()->isSelected() ) { |
668 | QListIterator<DocLnk> dit( vFiles.children() ); | 671 | QListIterator<DocLnk> dit( vFiles.children() ); |
669 | for ( ; dit.current(); ++dit ) { | 672 | for ( ; dit.current(); ++dit ) { |
670 | if( dit.current()->name() == it.current()->text(0) ) { | 673 | if( dit.current()->name() == it.current()->text(0) ) { |
671 | d->selectedFiles->addToSelection( **dit ); | 674 | if(QFileInfo( dit.current()->file()).exists()) |
675 | d->selectedFiles->addToSelection( **dit ); | ||
672 | } | 676 | } |
673 | } | 677 | } |
674 | videoView->setSelected( it.current(),FALSE); | 678 | videoView->setSelected( it.current(),FALSE); |
675 | } | 679 | } |
676 | } | 680 | } |
677 | tabWidget->setCurrentPage(0); | 681 | tabWidget->setCurrentPage(0); |
678 | } | 682 | } |
679 | break; | 683 | break; |
680 | }; | 684 | }; |
681 | } | 685 | } |
682 | 686 | ||
683 | void PlayListWidget::removeSelected() { | 687 | void PlayListWidget::removeSelected() { |
684 | d->selectedFiles->removeSelected( ); | 688 | d->selectedFiles->removeSelected( ); |
685 | } | 689 | } |
686 | 690 | ||
687 | void PlayListWidget::playIt( QListViewItem *it) { | 691 | void PlayListWidget::playIt( QListViewItem *it) { |
688 | // if(it==NULL) return; | 692 | // if(it==NULL) return; |
689 | qDebug("playIt"); | 693 | qDebug("playIt"); |
690 | mediaPlayerState->setPlaying(FALSE); | 694 | mediaPlayerState->setPlaying(FALSE); |
691 | mediaPlayerState->setPlaying(TRUE); | 695 | mediaPlayerState->setPlaying(TRUE); |
692 | d->selectedFiles->unSelect(); | 696 | d->selectedFiles->unSelect(); |
693 | } | 697 | } |
694 | 698 | ||
695 | void PlayListWidget::addToSelection( QListViewItem *it) { | 699 | void PlayListWidget::addToSelection( QListViewItem *it) { |
696 | d->setDocumentUsed = FALSE; | 700 | d->setDocumentUsed = FALSE; |
697 | 701 | ||
698 | if(it) { | 702 | if(it) { |
699 | switch (tabWidget->currentPageIndex()) { | 703 | switch (tabWidget->currentPageIndex()) { |
700 | case 1: { | 704 | case 1: { |
701 | QListIterator<DocLnk> dit( files.children() ); | 705 | QListIterator<DocLnk> dit( files.children() ); |
702 | for ( ; dit.current(); ++dit ) { | 706 | for ( ; dit.current(); ++dit ) { |
703 | if( dit.current()->name() == it->text(0)) { | 707 | if( dit.current()->name() == it->text(0)) { |
704 | d->selectedFiles->addToSelection( **dit ); | 708 | if(QFileInfo( dit.current()->file()).exists()) |
709 | d->selectedFiles->addToSelection( **dit ); | ||
705 | } | 710 | } |
706 | } | 711 | } |
707 | } | 712 | } |
708 | break; | 713 | break; |
709 | case 2: { | 714 | case 2: { |
710 | QListIterator<DocLnk> dit( vFiles.children() ); | 715 | QListIterator<DocLnk> dit( vFiles.children() ); |
711 | for ( ; dit.current(); ++dit ) { | 716 | for ( ; dit.current(); ++dit ) { |
712 | if( dit.current()->name() == it->text(0)) { | 717 | if( dit.current()->name() == it->text(0)) { |
713 | d->selectedFiles->addToSelection( **dit ); | 718 | if(QFileInfo( dit.current()->file()).exists()) |
719 | d->selectedFiles->addToSelection( **dit ); | ||
714 | } | 720 | } |
715 | } | 721 | } |
716 | } | 722 | } |
717 | break; | 723 | break; |
718 | case 0: | 724 | case 0: |
719 | break; | 725 | break; |
720 | }; | 726 | }; |
721 | tabWidget->setCurrentPage(0); | 727 | tabWidget->setCurrentPage(0); |
722 | } | 728 | } |
723 | } | 729 | } |
724 | 730 | ||
725 | void PlayListWidget::tabChanged(QWidget *) { | 731 | void PlayListWidget::tabChanged(QWidget *) { |
726 | 732 | ||
727 | switch ( tabWidget->currentPageIndex()) { | 733 | switch ( tabWidget->currentPageIndex()) { |
728 | case 0: | 734 | case 0: |
729 | { | 735 | { |
730 | if( !tbDeletePlaylist->isHidden()) | 736 | if( !tbDeletePlaylist->isHidden()) |
731 | tbDeletePlaylist->hide(); | 737 | tbDeletePlaylist->hide(); |
732 | d->tbRemoveFromList->setEnabled(TRUE); | 738 | d->tbRemoveFromList->setEnabled(TRUE); |
733 | d->tbAddToList->setEnabled(FALSE); | 739 | d->tbAddToList->setEnabled(FALSE); |
734 | } | 740 | } |
735 | break; | 741 | break; |
736 | case 1: | 742 | case 1: |
737 | { | 743 | { |
738 | audioView->clear(); | 744 | audioView->clear(); |
739 | populateAudioView(); | 745 | populateAudioView(); |
740 | 746 | ||
741 | if( !tbDeletePlaylist->isHidden()) | 747 | if( !tbDeletePlaylist->isHidden()) |
742 | tbDeletePlaylist->hide(); | 748 | tbDeletePlaylist->hide(); |
743 | d->tbRemoveFromList->setEnabled(FALSE); | 749 | d->tbRemoveFromList->setEnabled(FALSE); |
744 | d->tbAddToList->setEnabled(TRUE); | 750 | d->tbAddToList->setEnabled(TRUE); |
745 | } | 751 | } |
746 | break; | 752 | break; |
747 | case 2: | 753 | case 2: |
748 | { | 754 | { |
749 | videoView->clear(); | 755 | videoView->clear(); |
750 | populateVideoView(); | 756 | populateVideoView(); |
751 | if( !tbDeletePlaylist->isHidden()) | 757 | if( !tbDeletePlaylist->isHidden()) |
752 | tbDeletePlaylist->hide(); | 758 | tbDeletePlaylist->hide(); |
753 | d->tbRemoveFromList->setEnabled(FALSE); | 759 | d->tbRemoveFromList->setEnabled(FALSE); |
754 | d->tbAddToList->setEnabled(TRUE); | 760 | d->tbAddToList->setEnabled(TRUE); |
755 | } | 761 | } |
756 | break; | 762 | break; |
757 | case 3: | 763 | case 3: |
758 | { | 764 | { |
759 | if( tbDeletePlaylist->isHidden()) | 765 | if( tbDeletePlaylist->isHidden()) |
760 | tbDeletePlaylist->show(); | 766 | tbDeletePlaylist->show(); |
761 | playLists->reread(); | 767 | playLists->reread(); |
762 | } | 768 | } |
763 | break; | 769 | break; |
764 | }; | 770 | }; |
765 | } | 771 | } |
766 | 772 | ||
767 | void PlayListWidget::btnPlay(bool b) { | 773 | void PlayListWidget::btnPlay(bool b) { |
768 | 774 | ||
769 | // mediaPlayerState->setPlaying(b); | 775 | // mediaPlayerState->setPlaying(b); |
770 | switch ( tabWidget->currentPageIndex()) { | 776 | switch ( tabWidget->currentPageIndex()) { |
771 | case 0: | 777 | case 0: |
772 | { | 778 | { |
773 | mediaPlayerState->setPlaying(b); | 779 | mediaPlayerState->setPlaying(b); |
774 | } | 780 | } |
775 | break; | 781 | break; |
776 | case 1: | 782 | case 1: |
777 | { | 783 | { |
778 | addToSelection( audioView->currentItem() ); | 784 | addToSelection( audioView->currentItem() ); |
779 | mediaPlayerState->setPlaying(b); | 785 | mediaPlayerState->setPlaying(b); |
780 | d->selectedFiles->removeSelected( ); | 786 | d->selectedFiles->removeSelected( ); |
781 | tabWidget->setCurrentPage(1); | 787 | tabWidget->setCurrentPage(1); |
782 | d->selectedFiles->unSelect(); | 788 | d->selectedFiles->unSelect(); |
783 | insanityBool=FALSE; | 789 | insanityBool=FALSE; |
784 | }// audioView->clearSelection(); | 790 | }// audioView->clearSelection(); |
785 | break; | 791 | break; |
786 | case 2: | 792 | case 2: |
787 | { | 793 | { |
788 | addToSelection( videoView->currentItem() ); | 794 | addToSelection( videoView->currentItem() ); |
789 | mediaPlayerState->setPlaying(b); | 795 | mediaPlayerState->setPlaying(b); |
790 | qApp->processEvents(); | 796 | qApp->processEvents(); |
791 | d->selectedFiles->removeSelected( ); | 797 | d->selectedFiles->removeSelected( ); |
792 | tabWidget->setCurrentPage(2); | 798 | tabWidget->setCurrentPage(2); |
793 | d->selectedFiles->unSelect(); | 799 | d->selectedFiles->unSelect(); |
794 | insanityBool=FALSE; | 800 | insanityBool=FALSE; |
795 | }// videoView->clearSelection(); | 801 | }// videoView->clearSelection(); |
796 | break; | 802 | break; |
797 | }; | 803 | }; |
798 | 804 | ||
799 | } | 805 | } |
800 | 806 | ||
801 | void PlayListWidget::deletePlaylist() { | 807 | void PlayListWidget::deletePlaylist() { |
802 | switch( QMessageBox::information( this, (tr("Remove Playlist?")), | 808 | switch( QMessageBox::information( this, (tr("Remove Playlist?")), |
803 | (tr("You really want to delete\nthis playlist?")), | 809 | (tr("You really want to delete\nthis playlist?")), |
804 | (tr("Yes")), (tr("No")), 0 )){ | 810 | (tr("Yes")), (tr("No")), 0 )){ |
805 | case 0: // Yes clicked, | 811 | case 0: // Yes clicked, |
806 | QFile().remove(playLists->selected()->file()); | 812 | QFile().remove(playLists->selected()->file()); |
807 | QFile().remove(playLists->selected()->linkFile()); | 813 | QFile().remove(playLists->selected()->linkFile()); |
808 | playLists->reread(); | 814 | playLists->reread(); |
809 | break; | 815 | break; |
810 | case 1: // Cancel | 816 | case 1: // Cancel |
811 | break; | 817 | break; |
812 | }; | 818 | }; |
813 | } | 819 | } |
814 | 820 | ||
815 | void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , int) { | 821 | void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , int) { |
816 | switch (mouse) { | 822 | switch (mouse) { |
817 | case 1: | 823 | case 1: |
818 | break; | 824 | break; |
819 | case 2:{ | 825 | case 2:{ |
820 | QPopupMenu m; | 826 | QPopupMenu m; |
821 | m.insertItem( tr( "Play" ), this, SLOT( playSelected() )); | 827 | m.insertItem( tr( "Play" ), this, SLOT( playSelected() )); |
822 | m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() )); | 828 | m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() )); |
823 | m.insertSeparator(); | 829 | m.insertSeparator(); |
824 | m.insertItem( tr( "Properties" ), this, SLOT( listDelete() )); | 830 | m.insertItem( tr( "Properties" ), this, SLOT( listDelete() )); |
825 | m.exec( QCursor::pos() ); | 831 | m.exec( QCursor::pos() ); |
826 | } | 832 | } |
827 | break; | 833 | break; |
828 | }; | 834 | }; |
829 | } | 835 | } |
830 | 836 | ||
831 | void PlayListWidget::playSelected() { | 837 | void PlayListWidget::playSelected() { |
832 | btnPlay( TRUE); | 838 | btnPlay( TRUE); |
833 | } | 839 | } |
834 | 840 | ||
835 | void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *, const QPoint& , int ) { | 841 | void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *, const QPoint& , int ) { |
836 | switch (mouse) { | 842 | switch (mouse) { |
837 | case 1: | 843 | case 1: |
838 | 844 | ||
839 | break; | 845 | break; |
840 | case 2: | 846 | case 2: |
841 | { | 847 | { |
842 | QPopupMenu m; | 848 | QPopupMenu m; |
843 | m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() )); | 849 | m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() )); |
844 | m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() )); | 850 | m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() )); |
845 | m.exec( QCursor::pos() ); | 851 | m.exec( QCursor::pos() ); |
846 | } | 852 | } |
847 | break; | 853 | break; |
848 | }; | 854 | }; |
849 | } | 855 | } |
850 | 856 | ||
851 | void PlayListWidget::listDelete() { | 857 | void PlayListWidget::listDelete() { |
852 | Config cfg( "OpiePlayer" ); | 858 | Config cfg( "OpiePlayer" ); |
853 | cfg.setGroup("PlayList"); | 859 | cfg.setGroup("PlayList"); |
854 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); | 860 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); |
855 | QString file; | 861 | QString file; |
856 | // int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); | 862 | // int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); |
857 | switch ( tabWidget->currentPageIndex()) { | 863 | switch ( tabWidget->currentPageIndex()) { |
858 | case 0: | 864 | case 0: |
859 | break; | 865 | break; |
860 | case 1: | 866 | case 1: |
861 | { | 867 | { |
862 | file = audioView->currentItem()->text(0); | 868 | file = audioView->currentItem()->text(0); |
863 | QListIterator<DocLnk> Pdit( files.children() ); | 869 | QListIterator<DocLnk> Pdit( files.children() ); |
864 | for ( ; Pdit.current(); ++Pdit ) { | 870 | for ( ; Pdit.current(); ++Pdit ) { |
865 | if( Pdit.current()->name() == file) { | 871 | if( Pdit.current()->name() == file) { |
866 | LnkProperties prop( Pdit.current() ); | 872 | LnkProperties prop( Pdit.current() ); |
867 | prop.showMaximized(); | 873 | prop.showMaximized(); |
868 | prop.exec(); | 874 | prop.exec(); |
869 | } | 875 | } |
870 | } | 876 | } |
871 | populateAudioView(); | 877 | populateAudioView(); |
872 | } | 878 | } |
873 | break; | 879 | break; |
874 | case 2: | 880 | case 2: |
875 | { | 881 | { |
876 | 882 | ||
877 | } | 883 | } |
878 | break; | 884 | break; |
879 | }; | 885 | }; |
880 | } | 886 | } |
881 | 887 | ||
882 | void PlayListWidget::scanForAudio() { | 888 | void PlayListWidget::scanForAudio() { |
883 | qDebug("scan for audio"); | 889 | qDebug("scan for audio"); |
884 | files.detachChildren(); | 890 | files.detachChildren(); |
885 | QListIterator<DocLnk> sdit( files.children() ); | 891 | QListIterator<DocLnk> sdit( files.children() ); |
886 | for ( ; sdit.current(); ++sdit ) { | 892 | for ( ; sdit.current(); ++sdit ) { |
887 | delete sdit.current(); | 893 | delete sdit.current(); |
888 | } | 894 | } |
889 | Global::findDocuments(&files, "audio/*"); | 895 | Global::findDocuments(&files, "audio/*"); |
890 | audioScan = TRUE; | 896 | audioScan = TRUE; |
891 | } | 897 | } |
892 | void PlayListWidget::scanForVideo() { | 898 | void PlayListWidget::scanForVideo() { |
893 | qDebug("scan for video"); | 899 | qDebug("scan for video"); |
894 | vFiles.detachChildren(); | 900 | vFiles.detachChildren(); |
895 | QListIterator<DocLnk> sdit( vFiles.children() ); | 901 | QListIterator<DocLnk> sdit( vFiles.children() ); |
896 | for ( ; sdit.current(); ++sdit ) { | 902 | for ( ; sdit.current(); ++sdit ) { |
897 | delete sdit.current(); | 903 | delete sdit.current(); |
898 | } | 904 | } |
899 | Global::findDocuments(&vFiles, "video/*"); | 905 | Global::findDocuments(&vFiles, "video/*"); |
900 | videoScan = TRUE; | 906 | videoScan = TRUE; |
901 | } | 907 | } |
902 | 908 | ||
903 | void PlayListWidget::populateAudioView() { | 909 | void PlayListWidget::populateAudioView() { |
904 | 910 | ||
905 | audioView->clear(); | 911 | audioView->clear(); |
906 | StorageInfo storageInfo; | 912 | StorageInfo storageInfo; |
907 | const QList<FileSystem> &fs = storageInfo.fileSystems(); | 913 | const QList<FileSystem> &fs = storageInfo.fileSystems(); |
908 | if(!audioScan) scanForAudio(); | 914 | if(!audioScan) scanForAudio(); |
909 | 915 | ||
910 | QListIterator<DocLnk> dit( files.children() ); | 916 | QListIterator<DocLnk> dit( files.children() ); |
911 | QListIterator<FileSystem> it ( fs ); | 917 | QListIterator<FileSystem> it ( fs ); |
912 | 918 | ||
913 | QString storage; | 919 | QString storage; |
914 | for ( ; dit.current(); ++dit ) { | 920 | for ( ; dit.current(); ++dit ) { |
915 | for( ; it.current(); ++it ){ | 921 | for( ; it.current(); ++it ){ |
916 | const QString name = (*it)->name(); | 922 | const QString name = (*it)->name(); |
917 | const QString path = (*it)->path(); | 923 | const QString path = (*it)->path(); |
918 | if(dit.current()->file().find(path) != -1 ) storage=name; | 924 | if(dit.current()->file().find(path) != -1 ) storage=name; |
919 | } | 925 | } |
920 | 926 | ||
921 | QListViewItem * newItem; | 927 | QListViewItem * newItem; |
922 | if ( QFile( dit.current()->file()).exists() ) { | 928 | if ( QFile( dit.current()->file()).exists() ) { |
923 | // qDebug(dit.current()->name()); | 929 | // qDebug(dit.current()->name()); |
924 | newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), | 930 | newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), |
925 | QString::number( QFile( dit.current()->file()).size() ), storage); | 931 | QString::number( QFile( dit.current()->file()).size() ), storage); |
926 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/musicfile" )); | 932 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/musicfile" )); |
927 | } | 933 | } |
928 | } | 934 | } |
929 | 935 | ||
930 | } | 936 | } |
931 | 937 | ||
932 | void PlayListWidget::populateVideoView() { | 938 | void PlayListWidget::populateVideoView() { |
933 | videoView->clear(); | 939 | videoView->clear(); |
934 | StorageInfo storageInfo; | 940 | StorageInfo storageInfo; |
935 | const QList<FileSystem> &fs = storageInfo.fileSystems(); | 941 | const QList<FileSystem> &fs = storageInfo.fileSystems(); |
936 | 942 | ||
937 | if(!videoScan ) scanForVideo(); | 943 | if(!videoScan ) scanForVideo(); |
938 | 944 | ||
939 | QListIterator<DocLnk> Vdit( vFiles.children() ); | 945 | QListIterator<DocLnk> Vdit( vFiles.children() ); |
940 | QListIterator<FileSystem> it ( fs ); | 946 | QListIterator<FileSystem> it ( fs ); |
941 | videoView->clear(); | 947 | videoView->clear(); |
942 | QString storage; | 948 | QString storage; |
943 | for ( ; Vdit.current(); ++Vdit ) { | 949 | for ( ; Vdit.current(); ++Vdit ) { |
944 | for( ; it.current(); ++it ){ | 950 | for( ; it.current(); ++it ){ |
945 | const QString name = (*it)->name(); | 951 | const QString name = (*it)->name(); |
946 | const QString path = (*it)->path(); | 952 | const QString path = (*it)->path(); |
947 | if( Vdit.current()->file().find(path) != -1 ) storage=name; | 953 | if( Vdit.current()->file().find(path) != -1 ) storage=name; |
948 | } | 954 | } |
949 | 955 | ||
950 | QListViewItem * newItem; | 956 | QListViewItem * newItem; |
951 | if ( QFile( Vdit.current()->file()).exists() ) { | 957 | if ( QFile( Vdit.current()->file()).exists() ) { |
952 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), | 958 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), |
953 | QString::number( QFile( Vdit.current()->file()).size() ), storage); | 959 | QString::number( QFile( Vdit.current()->file()).size() ), storage); |
954 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" )); | 960 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" )); |
955 | } | 961 | } |
956 | } | 962 | } |
957 | } | 963 | } |
958 | 964 | ||
959 | void PlayListWidget::openFile() { | 965 | void PlayListWidget::openFile() { |
960 | QString filename, name; | 966 | QString filename, name; |
961 | InputDialog *fileDlg; | 967 | InputDialog *fileDlg; |
962 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); | 968 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); |
963 | fileDlg->exec(); | 969 | fileDlg->exec(); |
964 | if( fileDlg->result() == 1 ) { | 970 | if( fileDlg->result() == 1 ) { |
965 | filename = fileDlg->LineEdit1->text(); | 971 | filename = fileDlg->LineEdit1->text(); |
966 | 972 | ||
967 | qDebug("Selected filename is "+filename); | 973 | qDebug("Selected filename is "+filename); |
968 | if(filename.right(3) == "m3u") { | 974 | if(filename.right(3) == "m3u") { |
969 | readm3u( filename ); | 975 | readm3u( filename ); |
970 | } else if(filename.right(3) == "pls") { | 976 | } else if(filename.right(3) == "pls") { |
971 | readPls( filename ); | 977 | readPls( filename ); |
972 | } else { | 978 | } else { |
973 | DocLnk lnk; | 979 | DocLnk lnk; |
974 | 980 | ||
975 | lnk.setName(filename); //sets file name | 981 | lnk.setName(filename); //sets file name |
976 | lnk.setFile(filename); //sets File property | 982 | lnk.setFile(filename); //sets File property |
977 | lnk.setType("audio/x-mpegurl"); | 983 | lnk.setType("audio/x-mpegurl"); |
978 | lnk.setExec("opieplayer"); | 984 | lnk.setExec("opieplayer"); |
979 | lnk.setIcon("opieplayer2/MPEGPlayer"); | 985 | lnk.setIcon("opieplayer2/MPEGPlayer"); |
980 | 986 | ||
981 | if(!lnk.writeLink()) { | 987 | if(!lnk.writeLink()) { |
982 | qDebug("Writing doclink did not work"); | 988 | qDebug("Writing doclink did not work"); |
983 | } | 989 | } |
984 | d->selectedFiles->addToSelection( lnk); | 990 | d->selectedFiles->addToSelection( lnk); |
985 | } | 991 | } |
986 | } | 992 | } |
987 | if(fileDlg) { | 993 | if(fileDlg) { |
988 | delete fileDlg; | 994 | delete fileDlg; |
989 | } | 995 | } |
990 | } | 996 | } |
991 | 997 | ||
992 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e) | 998 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e) |
993 | { | 999 | { |
994 | switch ( e->key() ) { | 1000 | switch ( e->key() ) { |
995 | ////////////////////////////// Zaurus keys | 1001 | ////////////////////////////// Zaurus keys |
996 | case Key_F9: //activity | 1002 | case Key_F9: //activity |
997 | // if(audioUI->isHidden()) | 1003 | // if(audioUI->isHidden()) |
998 | // audioUI->showMaximized(); | 1004 | // audioUI->showMaximized(); |
999 | break; | 1005 | break; |
1000 | case Key_F10: //contacts | 1006 | case Key_F10: //contacts |
1001 | // if( videoUI->isHidden()) | 1007 | // if( videoUI->isHidden()) |
1002 | // videoUI->showMaximized(); | 1008 | // videoUI->showMaximized(); |
1003 | break; | 1009 | break; |
1004 | case Key_F11: //menu | 1010 | case Key_F11: //menu |
1005 | break; | 1011 | break; |
1006 | case Key_F12: //home | 1012 | case Key_F12: //home |
1007 | // doBlank(); | 1013 | // doBlank(); |
1008 | break; | 1014 | break; |
1009 | case Key_F13: //mail | 1015 | case Key_F13: //mail |
1010 | // doUnblank(); | 1016 | // doUnblank(); |
1011 | break; | 1017 | break; |
1012 | case Key_Q: //add to playlist | 1018 | case Key_Q: //add to playlist |
1013 | qDebug("Add"); | 1019 | qDebug("Add"); |
1014 | addSelected(); | 1020 | addSelected(); |
1015 | break; | 1021 | break; |
1016 | case Key_R: //remove from playlist | 1022 | case Key_R: //remove from playlist |
1017 | removeSelected(); | 1023 | removeSelected(); |
1018 | break; | 1024 | break; |
1019 | // case Key_P: //play | 1025 | // case Key_P: //play |
1020 | // qDebug("Play"); | 1026 | // qDebug("Play"); |
1021 | // playSelected(); | 1027 | // playSelected(); |
1022 | // break; | 1028 | // break; |
1023 | case Key_Space: | 1029 | case Key_Space: |
1024 | qDebug("Play"); | 1030 | qDebug("Play"); |
1025 | // playSelected(); puh | 1031 | // playSelected(); puh |
1026 | break; | 1032 | break; |
1027 | case Key_1: | 1033 | case Key_1: |
1028 | tabWidget->setCurrentPage(0); | 1034 | tabWidget->setCurrentPage(0); |
1029 | break; | 1035 | break; |
1030 | case Key_2: | 1036 | case Key_2: |
1031 | tabWidget->setCurrentPage(1); | 1037 | tabWidget->setCurrentPage(1); |
1032 | break; | 1038 | break; |
1033 | case Key_3: | 1039 | case Key_3: |
1034 | tabWidget->setCurrentPage(2); | 1040 | tabWidget->setCurrentPage(2); |
1035 | break; | 1041 | break; |
1036 | case Key_4: | 1042 | case Key_4: |
1037 | tabWidget->setCurrentPage(3); | 1043 | tabWidget->setCurrentPage(3); |
1038 | break; | 1044 | break; |
1039 | case Key_Down: | 1045 | case Key_Down: |
1040 | if ( !d->selectedFiles->next() ) | 1046 | if ( !d->selectedFiles->next() ) |
1041 | d->selectedFiles->first(); | 1047 | d->selectedFiles->first(); |
1042 | 1048 | ||
1043 | break; | 1049 | break; |
1044 | case Key_Up: | 1050 | case Key_Up: |
1045 | if ( !d->selectedFiles->prev() ) | 1051 | if ( !d->selectedFiles->prev() ) |
1046 | // d->selectedFiles->last(); | 1052 | // d->selectedFiles->last(); |
1047 | 1053 | ||
1048 | break; | 1054 | break; |
1049 | 1055 | ||
1050 | } | 1056 | } |
1051 | } | 1057 | } |
1052 | 1058 | ||
1053 | void PlayListWidget::keyPressEvent( QKeyEvent *) | 1059 | void PlayListWidget::keyPressEvent( QKeyEvent *) |
1054 | { | 1060 | { |
1055 | // qDebug("Key press"); | 1061 | // qDebug("Key press"); |
1056 | // switch ( e->key() ) { | 1062 | // switch ( e->key() ) { |
1057 | // ////////////////////////////// Zaurus keys | 1063 | // ////////////////////////////// Zaurus keys |
1058 | // case Key_A: //add to playlist | 1064 | // case Key_A: //add to playlist |
1059 | // qDebug("Add"); | 1065 | // qDebug("Add"); |
1060 | // addSelected(); | 1066 | // addSelected(); |
1061 | // break; | 1067 | // break; |
1062 | // case Key_R: //remove from playlist | 1068 | // case Key_R: //remove from playlist |
1063 | // removeSelected(); | 1069 | // removeSelected(); |
1064 | // break; | 1070 | // break; |
1065 | // case Key_P: //play | 1071 | // case Key_P: //play |
1066 | // qDebug("Play"); | 1072 | // qDebug("Play"); |
1067 | // playSelected(); | 1073 | // playSelected(); |
1068 | // break; | 1074 | // break; |
1069 | // case Key_Space: | 1075 | // case Key_Space: |
1070 | // qDebug("Play"); | 1076 | // qDebug("Play"); |
1071 | // playSelected(); | 1077 | // playSelected(); |
1072 | // break; | 1078 | // break; |
1073 | // } | 1079 | // } |
1074 | } | 1080 | } |
1075 | 1081 | ||
1076 | void PlayListWidget::doBlank() { | 1082 | void PlayListWidget::doBlank() { |
1077 | qDebug("do blanking"); | 1083 | qDebug("do blanking"); |
1078 | fd=open("/dev/fb0",O_RDWR); | 1084 | fd=open("/dev/fb0",O_RDWR); |
1079 | if (fd != -1) { | 1085 | if (fd != -1) { |
1080 | ioctl(fd,FBIOBLANK,1); | 1086 | ioctl(fd,FBIOBLANK,1); |
1081 | // close(fd); | 1087 | // close(fd); |
1082 | } | 1088 | } |
1083 | } | 1089 | } |
1084 | 1090 | ||
1085 | void PlayListWidget::doUnblank() { | 1091 | void PlayListWidget::doUnblank() { |
1086 | // this crashes opieplayer with a segfault | 1092 | // this crashes opieplayer with a segfault |
1087 | // int fd; | 1093 | // int fd; |
1088 | // fd=open("/dev/fb0",O_RDWR); | 1094 | // fd=open("/dev/fb0",O_RDWR); |
1089 | qDebug("do unblanking"); | 1095 | qDebug("do unblanking"); |
1090 | if (fd != -1) { | 1096 | if (fd != -1) { |
1091 | ioctl(fd,FBIOBLANK,0); | 1097 | ioctl(fd,FBIOBLANK,0); |
1092 | close(fd); | 1098 | close(fd); |
1093 | } | 1099 | } |
1094 | QCopEnvelope h("QPE/System", "setBacklight(int)"); | 1100 | QCopEnvelope h("QPE/System", "setBacklight(int)"); |
1095 | h <<-3;// v[1]; // -3 Force on | 1101 | h <<-3;// v[1]; // -3 Force on |
1096 | } | 1102 | } |
1097 | 1103 | ||
1098 | void PlayListWidget::readm3u(const QString &filename) { | 1104 | void PlayListWidget::readm3u(const QString &filename) { |
1099 | 1105 | ||
1100 | qDebug("m3u filename is "+filename); | 1106 | qDebug("m3u filename is "+filename); |
1101 | QFile f(filename); | 1107 | QFile f(filename); |
1102 | 1108 | ||
1103 | if(f.open(IO_ReadOnly)) { | 1109 | if(f.open(IO_ReadOnly)) { |
1104 | QTextStream t(&f); | 1110 | QTextStream t(&f); |
1105 | QString s;//, first, second; | 1111 | QString s;//, first, second; |
1106 | int i=0; | 1112 | int i=0; |
1107 | while ( !t.atEnd()) { | 1113 | while ( !t.atEnd()) { |
1108 | s=t.readLine(); | 1114 | s=t.readLine(); |
1109 | 1115 | ||
1110 | if(s.find("#",0,TRUE) == -1) { | 1116 | if(s.find("#",0,TRUE) == -1) { |
1111 | if(s.find(" ",0,TRUE) == -1) { // not sure if this is neede since cf uses vfat | 1117 | if(s.find(" ",0,TRUE) == -1) { // not sure if this is neede since cf uses vfat |
1112 | if(s.left(2) == "E:" || s.left(2) == "P:") { | 1118 | if(s.left(2) == "E:" || s.left(2) == "P:") { |
1113 | s=s.right(s.length()-2); | 1119 | s=s.right(s.length()-2); |
1114 | DocLnk lnk( s ); | 1120 | if(QFile(s).exists()) { |
1115 | QFileInfo f(s); | 1121 | DocLnk lnk( s ); |
1116 | QString name = f.baseName(); | 1122 | QFileInfo f(s); |
1117 | name = name.right( name.length()-name.findRev( "\\",-1,TRUE ) -1 ); | 1123 | QString name = f.baseName(); |
1118 | lnk.setName( name ); | 1124 | name = name.right( name.length()-name.findRev( "\\",-1,TRUE ) -1 ); |
1119 | s=s.replace( QRegExp("\\"),"/"); | 1125 | lnk.setName( name ); |
1120 | lnk.setFile( s ); | 1126 | s=s.replace( QRegExp("\\"),"/"); |
1121 | lnk.writeLink(); | 1127 | lnk.setFile( s ); |
1122 | qDebug("add "+name); | 1128 | lnk.writeLink(); |
1123 | d->selectedFiles->addToSelection( lnk); | 1129 | qDebug("add "+name); |
1130 | d->selectedFiles->addToSelection( lnk); | ||
1131 | } | ||
1124 | } else { // is url | 1132 | } else { // is url |
1125 | s.replace(QRegExp("%20")," "); | 1133 | s.replace(QRegExp("%20")," "); |
1126 | DocLnk lnk( s ); | 1134 | DocLnk lnk( s ); |
1127 | QString name; | 1135 | QString name; |
1128 | if(name.left(4)=="http") { | 1136 | if(name.left(4)=="http") { |
1129 | name = s.right( s.length() - 7); | 1137 | name = s.right( s.length() - 7); |
1130 | } else { | 1138 | } else { |
1131 | name = s; | 1139 | name = s; |
1132 | } | 1140 | } |
1133 | lnk.setName(name); | 1141 | lnk.setName(name); |
1134 | if(s.at(s.length()-4) == '.') { | 1142 | if(s.at(s.length()-4) == '.') { |
1135 | lnk.setFile( s); | 1143 | lnk.setFile( s); |
1136 | } else { | 1144 | } else { |
1137 | lnk.setFile( s+"/"); | 1145 | lnk.setFile( s+"/"); |
1138 | } | 1146 | } |
1139 | lnk.setType("audio/x-mpegurl"); | 1147 | lnk.setType("audio/x-mpegurl"); |
1140 | lnk.writeLink(); | 1148 | lnk.writeLink(); |
1141 | d->selectedFiles->addToSelection( lnk); | 1149 | d->selectedFiles->addToSelection( lnk); |
1142 | } | 1150 | } |
1143 | i++; | 1151 | i++; |
1144 | } | 1152 | } |
1145 | } | 1153 | } |
1146 | } | 1154 | } |
1147 | } | 1155 | } |
1148 | f.close(); | 1156 | f.close(); |
1149 | } | 1157 | } |
1150 | 1158 | ||
1151 | void PlayListWidget::writem3u() { | 1159 | void PlayListWidget::writem3u() { |
1152 | 1160 | ||
1153 | InputDialog *fileDlg; | 1161 | InputDialog *fileDlg; |
1154 | fileDlg = new InputDialog(this,tr("Save m3u Playlist "),TRUE, 0); | 1162 | fileDlg = new InputDialog(this,tr("Save m3u Playlist "),TRUE, 0); |
1155 | fileDlg->exec(); | 1163 | fileDlg->exec(); |
1156 | QString filename,list; | 1164 | QString filename,list; |
1157 | if( fileDlg->result() == 1 ) { | 1165 | if( fileDlg->result() == 1 ) { |
1158 | filename = fileDlg->LineEdit1->text(); | 1166 | filename = fileDlg->LineEdit1->text(); |
1159 | qDebug(filename); | 1167 | qDebug(filename); |
1160 | int noOfFiles = 0; | 1168 | int noOfFiles = 0; |
1161 | d->selectedFiles->first(); | 1169 | d->selectedFiles->first(); |
1162 | do { | 1170 | do { |
1163 | // we dont check for existance because of url's | 1171 | // we dont check for existance because of url's |
1164 | // qDebug(d->selectedFiles->current()->file()); | 1172 | // qDebug(d->selectedFiles->current()->file()); |
1165 | list += d->selectedFiles->current()->file()+"\n"; | 1173 | list += d->selectedFiles->current()->file()+"\n"; |
1166 | noOfFiles++; | 1174 | noOfFiles++; |
1167 | } | 1175 | } |
1168 | while ( d->selectedFiles->next() ); | 1176 | while ( d->selectedFiles->next() ); |
1169 | qDebug(list); | 1177 | qDebug(list); |
1170 | if(filename.left(1) != "/") | 1178 | if(filename.left(1) != "/") |
1171 | filename=QPEApplication::documentDir()+"/"+filename; | 1179 | filename=QPEApplication::documentDir()+"/"+filename; |
1172 | if(filename.right(3) != "m3u") | 1180 | if(filename.right(3) != "m3u") |
1173 | filename=filename+".m3u"; | 1181 | filename=filename+".m3u"; |
1174 | 1182 | ||
1175 | QFile f(filename); | 1183 | QFile f(filename); |
1176 | f.open(IO_WriteOnly); | 1184 | f.open(IO_WriteOnly); |
1177 | f.writeBlock(list, list.length()); | 1185 | f.writeBlock(list, list.length()); |
1178 | f.close(); | 1186 | f.close(); |
1179 | } | 1187 | } |
1180 | if(fileDlg) delete fileDlg; | 1188 | if(fileDlg) delete fileDlg; |
1181 | } | 1189 | } |
1182 | 1190 | ||
1183 | void PlayListWidget::readPls(const QString &filename) { | 1191 | void PlayListWidget::readPls(const QString &filename) { |
1184 | 1192 | ||
1185 | qDebug("pls filename is "+filename); | 1193 | qDebug("pls filename is "+filename); |
1186 | QFile f(filename); | 1194 | QFile f(filename); |
1187 | 1195 | ||
1188 | if(f.open(IO_ReadOnly)) { | 1196 | if(f.open(IO_ReadOnly)) { |
1189 | QTextStream t(&f); | 1197 | QTextStream t(&f); |
1190 | QString s;//, first, second; | 1198 | QString s;//, first, second; |
1191 | int i=0; | 1199 | int i=0; |
1192 | while ( !t.atEnd()) { | 1200 | while ( !t.atEnd()) { |
1193 | s=t.readLine(); | 1201 | s=t.readLine(); |
1194 | if(s.left(4) == "File") { | 1202 | if(s.left(4) == "File") { |
1195 | s=s.right(s.length() - 6); | 1203 | s=s.right(s.length() - 6); |
1196 | s.replace(QRegExp("%20")," "); | 1204 | s.replace(QRegExp("%20")," "); |
1197 | qDebug("adding "+s+" to playlist"); | 1205 | qDebug("adding "+s+" to playlist"); |
1198 | // numberofentries=2 | 1206 | // numberofentries=2 |
1199 | // File1=http | 1207 | // File1=http |
1200 | // Title | 1208 | // Title |
1201 | // Length | 1209 | // Length |
1202 | // Version | 1210 | // Version |
1203 | // File2=http | 1211 | // File2=http |
1204 | s=s.replace( QRegExp("\\"),"/"); | 1212 | s=s.replace( QRegExp("\\"),"/"); |
1205 | DocLnk lnk( s ); | 1213 | DocLnk lnk( s ); |
1206 | QFileInfo f(s); | 1214 | QFileInfo f(s); |
1207 | QString name = f.baseName(); | 1215 | QString name = f.baseName(); |
1208 | if(name.left(4)=="http") | 1216 | if(name.left(4)=="http") |
1209 | name = s.right( s.length() - 7); | 1217 | name = s.right( s.length() - 7); |
1210 | else | 1218 | else |
1211 | name=s; | 1219 | name=s; |
1212 | name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); | 1220 | name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); |
1213 | lnk.setName( name); | 1221 | lnk.setName( name); |
1214 | if(s.at(s.length()-4) == '.') // if this is probably a file | 1222 | if(s.at(s.length()-4) == '.') // if this is probably a file |
1215 | lnk.setFile( s); | 1223 | lnk.setFile( s); |
1216 | else { //if its a url | 1224 | else { //if its a url |
1217 | if( name.right(1).find('/') == -1) | 1225 | if( name.right(1).find('/') == -1) |
1218 | s+="/"; | 1226 | s+="/"; |
1219 | lnk.setFile( s); | 1227 | lnk.setFile( s); |
1220 | } | 1228 | } |
1221 | lnk.setType("audio/x-mpegurl"); | 1229 | lnk.setType("audio/x-mpegurl"); |
1222 | 1230 | ||
1223 | qDebug("DocLnk add "+name); | 1231 | qDebug("DocLnk add "+name); |
1224 | d->selectedFiles->addToSelection( lnk); | 1232 | d->selectedFiles->addToSelection( lnk); |
1225 | } | 1233 | } |
1226 | } | 1234 | } |
1227 | i++; | 1235 | i++; |
1228 | } | 1236 | } |
1229 | } | 1237 | } |
1230 | 1238 | ||
1231 | void PlayListWidget::pmViewActivated(int index) { | 1239 | void PlayListWidget::pmViewActivated(int index) { |
1232 | qDebug("%d", index); | 1240 | qDebug("%d", index); |
1233 | switch(index) { | 1241 | switch(index) { |
1234 | case -16: | 1242 | case -16: |
1235 | { | 1243 | { |
1236 | 1244 | ||
1237 | mediaPlayerState->toggleFullscreen(); | 1245 | mediaPlayerState->toggleFullscreen(); |
1238 | bool b=mediaPlayerState->fullscreen(); | 1246 | bool b=mediaPlayerState->fullscreen(); |
1239 | pmView->setItemChecked( index,b); | 1247 | pmView->setItemChecked( index,b); |
1240 | Config cfg( "OpiePlayer" ); | 1248 | Config cfg( "OpiePlayer" ); |
1241 | cfg.writeEntry("FullScreen", b); | 1249 | cfg.writeEntry("FullScreen", b); |
1242 | 1250 | ||
1243 | } | 1251 | } |
1244 | break; | 1252 | break; |
1245 | }; | 1253 | }; |
1246 | } | 1254 | } |
1247 | 1255 | ||
1248 | void PlayListWidget::populateSkinsMenu() { | 1256 | void PlayListWidget::populateSkinsMenu() { |
1249 | int item=0; | 1257 | int item=0; |
1250 | defaultSkinIndex=0; | 1258 | defaultSkinIndex=0; |
1251 | QString skinName; | 1259 | QString skinName; |
1252 | Config cfg( "OpiePlayer" ); | 1260 | Config cfg( "OpiePlayer" ); |
1253 | cfg.setGroup("Options"); | 1261 | cfg.setGroup("Options"); |
1254 | QString skin = cfg.readEntry("Skin","default"); | 1262 | QString skin = cfg.readEntry("Skin","default"); |
1255 | 1263 | ||
1256 | QDir skinsDir(QPEApplication::qpeDir()+"/pics/opieplayer2/skins"); | 1264 | QDir skinsDir(QPEApplication::qpeDir()+"/pics/opieplayer2/skins"); |
1257 | skinsDir.setFilter( QDir::Dirs); | 1265 | skinsDir.setFilter( QDir::Dirs); |
1258 | skinsDir.setSorting(QDir::Name); | 1266 | skinsDir.setSorting(QDir::Name); |
1259 | const QFileInfoList *skinslist = skinsDir.entryInfoList(); | 1267 | const QFileInfoList *skinslist = skinsDir.entryInfoList(); |
1260 | QFileInfoListIterator it( *skinslist ); | 1268 | QFileInfoListIterator it( *skinslist ); |
1261 | QFileInfo *fi; | 1269 | QFileInfo *fi; |
1262 | while ( (fi=it.current()) ) { | 1270 | while ( (fi=it.current()) ) { |
1263 | skinName = fi->fileName(); | 1271 | skinName = fi->fileName(); |
1264 | qDebug( fi->fileName()); | 1272 | qDebug( fi->fileName()); |
1265 | if( skinName != "." && skinName != ".." && skinName !="CVS") | 1273 | if( skinName != "." && skinName != ".." && skinName !="CVS") |
1266 | item = skinsMenu->insertItem( fi->fileName()); | 1274 | item = skinsMenu->insertItem( fi->fileName()); |
1267 | if( skinName == "default") | 1275 | if( skinName == "default") |
1268 | defaultSkinIndex = item; | 1276 | defaultSkinIndex = item; |
1269 | if( skinName == skin) | 1277 | if( skinName == skin) |
1270 | skinsMenu->setItemChecked( item, TRUE); | 1278 | skinsMenu->setItemChecked( item, TRUE); |
1271 | 1279 | ||
1272 | ++it; | 1280 | ++it; |
1273 | } | 1281 | } |
1274 | } | 1282 | } |
1275 | 1283 | ||
1276 | void PlayListWidget::skinsMenuActivated(int item) { | 1284 | void PlayListWidget::skinsMenuActivated(int item) { |
1277 | for(int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i--) { | 1285 | for(int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i--) { |
1278 | skinsMenu->setItemChecked( i, FALSE); | 1286 | skinsMenu->setItemChecked( i, FALSE); |
1279 | } | 1287 | } |
1280 | skinsMenu->setItemChecked( item, TRUE); | 1288 | skinsMenu->setItemChecked( item, TRUE); |
1281 | 1289 | ||
1282 | Config cfg( "OpiePlayer" ); | 1290 | Config cfg( "OpiePlayer" ); |
1283 | cfg.setGroup("Options"); | 1291 | cfg.setGroup("Options"); |
1284 | cfg.writeEntry("Skin", skinsMenu->text( item)); | 1292 | cfg.writeEntry("Skin", skinsMenu->text( item)); |
1285 | } | 1293 | } |