-rw-r--r-- | core/multimedia/opieplayer/playlistwidget.cpp | 479 | ||||
-rw-r--r-- | core/multimedia/opieplayer/playlistwidget.h | 2 |
2 files changed, 256 insertions, 225 deletions
diff --git a/core/multimedia/opieplayer/playlistwidget.cpp b/core/multimedia/opieplayer/playlistwidget.cpp index eeaed33..ae25fe3 100644 --- a/core/multimedia/opieplayer/playlistwidget.cpp +++ b/core/multimedia/opieplayer/playlistwidget.cpp | |||
@@ -95,40 +95,40 @@ public: | |||
95 | bool setDocumentUsed; | 95 | bool setDocumentUsed; |
96 | DocLnk *current; | 96 | DocLnk *current; |
97 | }; | 97 | }; |
98 | 98 | ||
99 | 99 | ||
100 | class ToolButton : public QToolButton { | 100 | class ToolButton : public QToolButton { |
101 | public: | 101 | public: |
102 | ToolButton( QWidget *parent, const char *name, const QString& icon, QObject *handler, const QString& slot, bool t = FALSE ) | 102 | ToolButton( QWidget *parent, const char *name, const QString& icon, QObject *handler, const QString& slot, bool t = FALSE ) |
103 | : QToolButton( parent, name ) { | 103 | : QToolButton( parent, name ) { |
104 | setTextLabel( name ); | 104 | setTextLabel( name ); |
105 | setPixmap( Resource::loadPixmap( icon ) ); | 105 | setPixmap( Resource::loadPixmap( icon ) ); |
106 | setAutoRaise( TRUE ); | 106 | setAutoRaise( TRUE ); |
107 | setFocusPolicy( QWidget::NoFocus ); | 107 | setFocusPolicy( QWidget::NoFocus ); |
108 | setToggleButton( t ); | 108 | setToggleButton( t ); |
109 | connect( this, t ? SIGNAL( toggled(bool) ) : SIGNAL( clicked() ), handler, slot ); | 109 | connect( this, t ? SIGNAL( toggled(bool) ) : SIGNAL( clicked() ), handler, slot ); |
110 | QPEMenuToolFocusManager::manager()->addWidget( this ); | 110 | QPEMenuToolFocusManager::manager()->addWidget( this ); |
111 | } | 111 | } |
112 | }; | 112 | }; |
113 | 113 | ||
114 | 114 | ||
115 | class MenuItem : public QAction { | 115 | class MenuItem : public QAction { |
116 | public: | 116 | public: |
117 | MenuItem( QWidget *parent, const QString& text, QObject *handler, const QString& slot ) | 117 | MenuItem( QWidget *parent, const QString& text, QObject *handler, const QString& slot ) |
118 | : QAction( text, QString::null, 0, 0 ) { | 118 | : QAction( text, QString::null, 0, 0 ) { |
119 | connect( this, SIGNAL( activated() ), handler, slot ); | 119 | connect( this, SIGNAL( activated() ), handler, slot ); |
120 | addTo( parent ); | 120 | addTo( parent ); |
121 | } | 121 | } |
122 | }; | 122 | }; |
123 | 123 | ||
124 | 124 | ||
125 | PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | 125 | PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) |
126 | : QMainWindow( parent, name, fl ) { | 126 | : QMainWindow( parent, name, fl ) { |
127 | 127 | ||
128 | d = new PlayListWidgetPrivate; | 128 | d = new PlayListWidgetPrivate; |
129 | d->setDocumentUsed = FALSE; | 129 | d->setDocumentUsed = FALSE; |
130 | d->current = NULL; | 130 | d->current = NULL; |
131 | fromSetDocument = FALSE; | 131 | fromSetDocument = FALSE; |
132 | insanityBool=FALSE; | 132 | insanityBool=FALSE; |
133 | audioScan = FALSE; | 133 | audioScan = FALSE; |
134 | videoScan = FALSE; | 134 | videoScan = FALSE; |
@@ -137,21 +137,21 @@ PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | |||
137 | 137 | ||
138 | setBackgroundMode( PaletteButton ); | 138 | setBackgroundMode( PaletteButton ); |
139 | 139 | ||
140 | setCaption( tr("OpiePlayer") ); | 140 | setCaption( tr("OpiePlayer") ); |
141 | setIcon( Resource::loadPixmap( "opieplayer/MPEGPlayer" ) ); | 141 | setIcon( Resource::loadPixmap( "opieplayer/MPEGPlayer" ) ); |
142 | 142 | ||
143 | setToolBarsMovable( FALSE ); | 143 | setToolBarsMovable( FALSE ); |
144 | 144 | ||
145 | // Create Toolbar | 145 | // Create Toolbar |
146 | QPEToolBar *toolbar = new QPEToolBar( this ); | 146 | QPEToolBar *toolbar = new QPEToolBar( this ); |
147 | toolbar->setHorizontalStretchable( TRUE ); | 147 | toolbar->setHorizontalStretchable( TRUE ); |
148 | 148 | ||
149 | // Create Menubar | 149 | // Create Menubar |
150 | QPEMenuBar *menu = new QPEMenuBar( toolbar ); | 150 | QPEMenuBar *menu = new QPEMenuBar( toolbar ); |
151 | menu->setMargin( 0 ); | 151 | menu->setMargin( 0 ); |
152 | 152 | ||
153 | QPEToolBar *bar = new QPEToolBar( this ); | 153 | QPEToolBar *bar = new QPEToolBar( this ); |
154 | bar->setLabel( tr( "Play Operations" ) ); | 154 | bar->setLabel( tr( "Play Operations" ) ); |
155 | // d->tbPlayCurList = new ToolButton( bar, tr( "play List" ), "opieplayer/play_current_list", | 155 | // d->tbPlayCurList = new ToolButton( bar, tr( "play List" ), "opieplayer/play_current_list", |
156 | // this , SLOT( addSelected()) ); | 156 | // this , SLOT( addSelected()) ); |
157 | tbDeletePlaylist = new QPushButton( Resource::loadIconSet("trash"),"",bar,"close"); | 157 | tbDeletePlaylist = new QPushButton( Resource::loadIconSet("trash"),"",bar,"close"); |
@@ -172,18 +172,19 @@ PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | |||
172 | tbDeletePlaylist->hide(); | 172 | tbDeletePlaylist->hide(); |
173 | 173 | ||
174 | QPopupMenu *pmPlayList = new QPopupMenu( this ); | 174 | QPopupMenu *pmPlayList = new QPopupMenu( this ); |
175 | menu->insertItem( tr( "File" ), pmPlayList ); | 175 | menu->insertItem( tr( "File" ), pmPlayList ); |
176 | new MenuItem( pmPlayList, tr( "Clear List" ), this, SLOT( clearList() ) ); | 176 | new MenuItem( pmPlayList, tr( "Clear List" ), this, SLOT( clearList() ) ); |
177 | new MenuItem( pmPlayList, tr( "Add all audio files" ), this, SLOT( addAllMusicToList() ) ); | 177 | new MenuItem( pmPlayList, tr( "Add all audio files" ), this, SLOT( addAllMusicToList() ) ); |
178 | new MenuItem( pmPlayList, tr( "Add all video files" ), this, SLOT( addAllVideoToList() ) ); | 178 | new MenuItem( pmPlayList, tr( "Add all video files" ), this, SLOT( addAllVideoToList() ) ); |
179 | new MenuItem( pmPlayList, tr( "Add all files" ), this, SLOT( addAllToList() ) ); | 179 | new MenuItem( pmPlayList, tr( "Add all files" ), this, SLOT( addAllToList() ) ); |
180 | // pmPlayList->insertSeparator(-1); | 180 | pmPlayList->insertSeparator(-1); |
181 | new MenuItem( pmPlayList, tr( "Save PlayList" ), this, SLOT( saveList() ) ); | 181 | new MenuItem( pmPlayList, tr( "Save PlayList" ), this, SLOT( saveList() ) ); |
182 | new MenuItem( pmPlayList, tr( "Export playlist to m3u" ), this, SLOT(writem3u() ) ); | ||
182 | pmPlayList->insertSeparator(-1); | 183 | pmPlayList->insertSeparator(-1); |
183 | new MenuItem( pmPlayList, tr( "Open File or URL" ), this,SLOT( openFile() ) ); | 184 | new MenuItem( pmPlayList, tr( "Open File or URL" ), this,SLOT( openFile() ) ); |
184 | pmPlayList->insertSeparator(-1); | 185 | pmPlayList->insertSeparator(-1); |
185 | new MenuItem( pmPlayList, tr( "Rescan for Audio Files" ), this,SLOT( scanForAudio() ) ); | 186 | new MenuItem( pmPlayList, tr( "Rescan for Audio Files" ), this,SLOT( scanForAudio() ) ); |
186 | new MenuItem( pmPlayList, tr( "Rescan for Video Files" ), this,SLOT( scanForVideo() ) ); | 187 | new MenuItem( pmPlayList, tr( "Rescan for Video Files" ), this,SLOT( scanForVideo() ) ); |
187 | 188 | ||
188 | QPopupMenu *pmView = new QPopupMenu( this ); | 189 | QPopupMenu *pmView = new QPopupMenu( this ); |
189 | menu->insertItem( tr( "View" ), pmView ); | 190 | menu->insertItem( tr( "View" ), pmView ); |
@@ -203,36 +204,36 @@ PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | |||
203 | 204 | ||
204 | QWidget *pTab; | 205 | QWidget *pTab; |
205 | pTab = new QWidget( tabWidget, "pTab" ); | 206 | pTab = new QWidget( tabWidget, "pTab" ); |
206 | // playlistView = new QListView( pTab, "playlistview" ); | 207 | // playlistView = new QListView( pTab, "playlistview" ); |
207 | // playlistView->setMinimumSize(236,260); | 208 | // playlistView->setMinimumSize(236,260); |
208 | tabWidget->insertTab( pTab,"Playlist"); | 209 | tabWidget->insertTab( pTab,"Playlist"); |
209 | 210 | ||
210 | 211 | ||
211 | // Add the playlist area | 212 | // Add the playlist area |
212 | 213 | ||
213 | QVBox *vbox3 = new QVBox( pTab ); vbox3->setBackgroundMode( PaletteButton ); | 214 | QVBox *vbox3 = new QVBox( pTab ); vbox3->setBackgroundMode( PaletteButton ); |
214 | d->playListFrame = vbox3; | 215 | d->playListFrame = vbox3; |
215 | d->playListFrame ->setMinimumSize(235,260); | 216 | d->playListFrame ->setMinimumSize(235,260); |
216 | 217 | ||
217 | QHBox *hbox2 = new QHBox( vbox3 ); hbox2->setBackgroundMode( PaletteButton ); | 218 | QHBox *hbox2 = new QHBox( vbox3 ); hbox2->setBackgroundMode( PaletteButton ); |
218 | 219 | ||
219 | d->selectedFiles = new PlayListSelection( hbox2); | 220 | d->selectedFiles = new PlayListSelection( hbox2); |
220 | QVBox *vbox1 = new QVBox( hbox2 ); vbox1->setBackgroundMode( PaletteButton ); | 221 | QVBox *vbox1 = new QVBox( hbox2 ); vbox1->setBackgroundMode( PaletteButton ); |
221 | 222 | ||
222 | QPEApplication::setStylusOperation( d->selectedFiles->viewport(),QPEApplication::RightOnHold); | 223 | QPEApplication::setStylusOperation( d->selectedFiles->viewport(),QPEApplication::RightOnHold); |
223 | 224 | ||
224 | 225 | ||
225 | 226 | ||
226 | QVBox *stretch1 = new QVBox( vbox1 ); stretch1->setBackgroundMode( PaletteButton ); // add stretch | 227 | QVBox *stretch1 = new QVBox( vbox1 ); stretch1->setBackgroundMode( PaletteButton ); // add stretch |
227 | new ToolButton( vbox1, tr( "Move Up" ), "opieplayer/up", d->selectedFiles, SLOT(moveSelectedUp()) ); | 228 | new ToolButton( vbox1, tr( "Move Up" ), "opieplayer/up", d->selectedFiles, SLOT(moveSelectedUp()) ); |
228 | new ToolButton( vbox1, tr( "Remove" ), "opieplayer/cut", d->selectedFiles, SLOT(removeSelected()) ); | 229 | new ToolButton( vbox1, tr( "Remove" ), "opieplayer/cut", d->selectedFiles, SLOT(removeSelected()) ); |
229 | new ToolButton( vbox1, tr( "Move Down" ), "opieplayer/down", d->selectedFiles, SLOT(moveSelectedDown()) ); | 230 | new ToolButton( vbox1, tr( "Move Down" ), "opieplayer/down", d->selectedFiles, SLOT(moveSelectedDown()) ); |
230 | QVBox *stretch2 = new QVBox( vbox1 ); stretch2->setBackgroundMode( PaletteButton ); // add stretch | 231 | QVBox *stretch2 = new QVBox( vbox1 ); stretch2->setBackgroundMode( PaletteButton ); // add stretch |
231 | 232 | ||
232 | QWidget *aTab; | 233 | QWidget *aTab; |
233 | aTab = new QWidget( tabWidget, "aTab" ); | 234 | aTab = new QWidget( tabWidget, "aTab" ); |
234 | audioView = new QListView( aTab, "Audioview" ); | 235 | audioView = new QListView( aTab, "Audioview" ); |
235 | audioView->setMinimumSize(233,260); | 236 | audioView->setMinimumSize(233,260); |
236 | audioView->addColumn( tr("Title"),140); | 237 | audioView->addColumn( tr("Title"),140); |
237 | audioView->addColumn(tr("Size"), -1); | 238 | audioView->addColumn(tr("Size"), -1); |
238 | audioView->addColumn(tr("Media"),-1); | 239 | audioView->addColumn(tr("Media"),-1); |
@@ -288,42 +289,42 @@ PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | |||
288 | 289 | ||
289 | // connect( audioView, SIGNAL( clicked( QListViewItem *) ), this, SLOT( fauxPlay( QListViewItem *) ) ); | 290 | // connect( audioView, SIGNAL( clicked( QListViewItem *) ), this, SLOT( fauxPlay( QListViewItem *) ) ); |
290 | // connect( videoView, SIGNAL( clicked( QListViewItem *) ), this, SLOT( fauxPlay( QListViewItem *) ) ); | 291 | // connect( videoView, SIGNAL( clicked( QListViewItem *) ), this, SLOT( fauxPlay( QListViewItem *) ) ); |
291 | 292 | ||
292 | connect(tbDeletePlaylist,(SIGNAL(released())),SLOT( deletePlaylist())); | 293 | connect(tbDeletePlaylist,(SIGNAL(released())),SLOT( deletePlaylist())); |
293 | connect( fullScreenButton, SIGNAL(activated()), mediaPlayerState, SLOT(toggleFullscreen()) ); | 294 | connect( fullScreenButton, SIGNAL(activated()), mediaPlayerState, SLOT(toggleFullscreen()) ); |
294 | connect( scaleButton, SIGNAL(activated()), mediaPlayerState, SLOT(toggleScaled()) ); | 295 | connect( scaleButton, SIGNAL(activated()), mediaPlayerState, SLOT(toggleScaled()) ); |
295 | connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), | 296 | connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), |
296 | this,SLOT( playlistViewPressed(int, QListViewItem *, const QPoint&, int)) ); | 297 | this,SLOT( playlistViewPressed(int, QListViewItem *, const QPoint&, int)) ); |
297 | 298 | ||
298 | connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), | 299 | connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), |
299 | this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); | 300 | this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); |
300 | 301 | ||
301 | connect( audioView, SIGNAL( returnPressed( QListViewItem *)), | 302 | connect( audioView, SIGNAL( returnPressed( QListViewItem *)), |
302 | this,SLOT( playIt( QListViewItem *)) ); | 303 | this,SLOT( playIt( QListViewItem *)) ); |
303 | connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); | 304 | connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); |
304 | 305 | ||
305 | connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), | 306 | connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), |
306 | this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); | 307 | this,SLOT( viewPressed(int, QListViewItem *, const QPoint&, int)) ); |
307 | connect( videoView, SIGNAL( returnPressed( QListViewItem *)), | 308 | connect( videoView, SIGNAL( returnPressed( QListViewItem *)), |
308 | this,SLOT( playIt( QListViewItem *)) ); | 309 | this,SLOT( playIt( QListViewItem *)) ); |
309 | connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); | 310 | connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( addToSelection( QListViewItem *) ) ); |
310 | 311 | ||
311 | connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( loadList( const DocLnk & ) ) ); | 312 | connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( loadList( const DocLnk & ) ) ); |
312 | 313 | ||
313 | 314 | ||
314 | connect( tabWidget, SIGNAL (currentChanged(QWidget*)),this,SLOT(tabChanged(QWidget*))); | 315 | connect( tabWidget, SIGNAL (currentChanged(QWidget*)),this,SLOT(tabChanged(QWidget*))); |
315 | 316 | ||
316 | connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), d->tbPlay, SLOT( setOn( bool ) ) ); | 317 | connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), d->tbPlay, SLOT( setOn( bool ) ) ); |
317 | connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), d->tbLoop, SLOT( setOn( bool ) ) ); | 318 | connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), d->tbLoop, SLOT( setOn( bool ) ) ); |
318 | connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), d->tbShuffle, SLOT( setOn( bool ) ) ); | 319 | connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), d->tbShuffle, SLOT( setOn( bool ) ) ); |
319 | connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), this, SLOT( setPlaylist( bool ) ) ); | 320 | connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), this, SLOT( setPlaylist( bool ) ) ); |
320 | 321 | ||
321 | connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( playIt( QListViewItem *) ) ); | 322 | connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), this, SLOT( playIt( QListViewItem *) ) ); |
322 | // connect( d->selectedFiles, SIGNAL( fileSelected( const DocLnk & ) ), this, SLOT( addToSelection( const DocLnk & ) ) ); | 323 | // connect( d->selectedFiles, SIGNAL( fileSelected( const DocLnk & ) ), this, SLOT( addToSelection( const DocLnk & ) ) ); |
323 | 324 | ||
324 | setCentralWidget( vbox5 ); | 325 | setCentralWidget( vbox5 ); |
325 | 326 | ||
326 | Config cfg( "OpiePlayer" ); | 327 | Config cfg( "OpiePlayer" ); |
327 | readConfig( cfg ); | 328 | readConfig( cfg ); |
328 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); | 329 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); |
329 | // qDebug("currentList is "+currentPlaylist); | 330 | // qDebug("currentList is "+currentPlaylist); |
@@ -335,31 +336,31 @@ PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | |||
335 | 336 | ||
336 | 337 | ||
337 | PlayListWidget::~PlayListWidget() { | 338 | PlayListWidget::~PlayListWidget() { |
338 | Config cfg( "OpiePlayer" ); | 339 | Config cfg( "OpiePlayer" ); |
339 | writeConfig( cfg ); | 340 | writeConfig( cfg ); |
340 | 341 | ||
341 | 342 | ||
342 | if ( d->current ) | 343 | if ( d->current ) |
343 | delete d->current; | 344 | delete d->current; |
344 | delete d; | 345 | delete d; |
345 | } | 346 | } |
346 | 347 | ||
347 | 348 | ||
348 | void PlayListWidget::initializeStates() { | 349 | void PlayListWidget::initializeStates() { |
349 | 350 | ||
350 | d->tbPlay->setOn( mediaPlayerState->playing() ); | 351 | d->tbPlay->setOn( mediaPlayerState->playing() ); |
351 | d->tbLoop->setOn( mediaPlayerState->looping() ); | 352 | d->tbLoop->setOn( mediaPlayerState->looping() ); |
352 | d->tbShuffle->setOn( mediaPlayerState->shuffled() ); | 353 | d->tbShuffle->setOn( mediaPlayerState->shuffled() ); |
353 | // d->tbFull->setOn( mediaPlayerState->fullscreen() ); | 354 | // d->tbFull->setOn( mediaPlayerState->fullscreen() ); |
354 | // d->tbScale->setOn( mediaPlayerState->scaled() ); | 355 | // d->tbScale->setOn( mediaPlayerState->scaled() ); |
355 | // d->tbScale->setEnabled( mediaPlayerState->fullscreen() ); | 356 | // d->tbScale->setEnabled( mediaPlayerState->fullscreen() ); |
356 | // setPlaylist( mediaPlayerState->playlist() ); | 357 | // setPlaylist( mediaPlayerState->playlist() ); |
357 | setPlaylist( true); | 358 | setPlaylist( true); |
358 | // d->selectedFiles->first(); | 359 | // d->selectedFiles->first(); |
359 | 360 | ||
360 | } | 361 | } |
361 | 362 | ||
362 | 363 | ||
363 | void PlayListWidget::readConfig( Config& cfg ) { | 364 | void PlayListWidget::readConfig( Config& cfg ) { |
364 | cfg.setGroup("PlayList"); | 365 | cfg.setGroup("PlayList"); |
365 | QString currentString = cfg.readEntry("current", "" ); | 366 | QString currentString = cfg.readEntry("current", "" ); |
@@ -368,17 +369,17 @@ void PlayListWidget::readConfig( Config& cfg ) { | |||
368 | QString entryName; | 369 | QString entryName; |
369 | entryName.sprintf( "File%i", i + 1 ); | 370 | entryName.sprintf( "File%i", i + 1 ); |
370 | QString linkFile = cfg.readEntry( entryName ); | 371 | QString linkFile = cfg.readEntry( entryName ); |
371 | DocLnk lnk( linkFile ); | 372 | DocLnk lnk( linkFile ); |
372 | if ( lnk.isValid() ) { | 373 | if ( lnk.isValid() ) { |
373 | d->selectedFiles->addToSelection( lnk ); | 374 | d->selectedFiles->addToSelection( lnk ); |
374 | } | 375 | } |
375 | } | 376 | } |
376 | d->selectedFiles->setSelectedItem( currentString); | 377 | d->selectedFiles->setSelectedItem( currentString); |
377 | // d->selectedFiles->setSelectedItem( (const QString &)currentString); | 378 | // d->selectedFiles->setSelectedItem( (const QString &)currentString); |
378 | } | 379 | } |
379 | 380 | ||
380 | 381 | ||
381 | void PlayListWidget::writeConfig( Config& cfg ) const { | 382 | void PlayListWidget::writeConfig( Config& cfg ) const { |
382 | 383 | ||
383 | d->selectedFiles->writeCurrent( cfg); | 384 | d->selectedFiles->writeCurrent( cfg); |
384 | cfg.setGroup("PlayList"); | 385 | cfg.setGroup("PlayList"); |
@@ -429,17 +430,17 @@ void PlayListWidget::addToSelection( const DocLnk& lnk ) { | |||
429 | else | 430 | else |
430 | mediaPlayerState->setPlaying( TRUE ); | 431 | mediaPlayerState->setPlaying( TRUE ); |
431 | } | 432 | } |
432 | } | 433 | } |
433 | 434 | ||
434 | 435 | ||
435 | void PlayListWidget::clearList() { | 436 | void PlayListWidget::clearList() { |
436 | while ( first() ) | 437 | while ( first() ) |
437 | d->selectedFiles->removeSelected(); | 438 | d->selectedFiles->removeSelected(); |
438 | } | 439 | } |
439 | 440 | ||
440 | 441 | ||
441 | void PlayListWidget::addAllToList() { | 442 | void PlayListWidget::addAllToList() { |
442 | DocLnkSet filesAll; | 443 | DocLnkSet filesAll; |
443 | Global::findDocuments(&filesAll, "video/*;audio/*"); | 444 | Global::findDocuments(&filesAll, "video/*;audio/*"); |
444 | QListIterator<DocLnk> Adit( filesAll.children() ); | 445 | QListIterator<DocLnk> Adit( filesAll.children() ); |
445 | for ( ; Adit.current(); ++Adit ) | 446 | for ( ; Adit.current(); ++Adit ) |
@@ -447,17 +448,17 @@ void PlayListWidget::addAllToList() { | |||
447 | d->selectedFiles->addToSelection( **Adit ); | 448 | d->selectedFiles->addToSelection( **Adit ); |
448 | } | 449 | } |
449 | 450 | ||
450 | 451 | ||
451 | void PlayListWidget::addAllMusicToList() { | 452 | void PlayListWidget::addAllMusicToList() { |
452 | QListIterator<DocLnk> dit( files.children() ); | 453 | QListIterator<DocLnk> dit( files.children() ); |
453 | for ( ; dit.current(); ++dit ) | 454 | for ( ; dit.current(); ++dit ) |
454 | if(QFileInfo(dit.current()->file()).exists()) | 455 | if(QFileInfo(dit.current()->file()).exists()) |
455 | d->selectedFiles->addToSelection( **dit ); | 456 | d->selectedFiles->addToSelection( **dit ); |
456 | } | 457 | } |
457 | 458 | ||
458 | 459 | ||
459 | void PlayListWidget::addAllVideoToList() { | 460 | void PlayListWidget::addAllVideoToList() { |
460 | QListIterator<DocLnk> dit( vFiles.children() ); | 461 | QListIterator<DocLnk> dit( vFiles.children() ); |
461 | for ( ; dit.current(); ++dit ) | 462 | for ( ; dit.current(); ++dit ) |
462 | if(QFileInfo( dit.current()->file()).exists()) | 463 | if(QFileInfo( dit.current()->file()).exists()) |
463 | d->selectedFiles->addToSelection( **dit ); | 464 | d->selectedFiles->addToSelection( **dit ); |
@@ -467,22 +468,22 @@ void PlayListWidget::addAllVideoToList() { | |||
467 | void PlayListWidget::setDocument(const QString& fileref) { | 468 | void PlayListWidget::setDocument(const QString& fileref) { |
468 | qDebug(fileref); | 469 | qDebug(fileref); |
469 | fromSetDocument = TRUE; | 470 | fromSetDocument = TRUE; |
470 | if ( fileref.isNull() ) { | 471 | if ( fileref.isNull() ) { |
471 | QMessageBox::critical( 0, tr( "Invalid File" ), tr( "There was a problem in getting the file." ) ); | 472 | QMessageBox::critical( 0, tr( "Invalid File" ), tr( "There was a problem in getting the file." ) ); |
472 | return; | 473 | return; |
473 | } | 474 | } |
474 | // qDebug("setDocument "+fileref); | 475 | // qDebug("setDocument "+fileref); |
475 | if(fileref.find("m3u",0,TRUE) != -1) { //is m3u | 476 | if(fileref.find("m3u",0,TRUE) != -1) { //is m3u |
476 | readm3u( fileref); | 477 | readm3u( fileref); |
477 | } | 478 | } |
478 | else if(fileref.find("pls",0,TRUE) != -1) { //is pls | 479 | else if(fileref.find("pls",0,TRUE) != -1) { //is pls |
479 | readPls( fileref); | 480 | readPls( fileref); |
480 | } | 481 | } |
481 | else if(fileref.find("playlist",0,TRUE) != -1) {//is playlist | 482 | else if(fileref.find("playlist",0,TRUE) != -1) {//is playlist |
482 | clearList(); | 483 | clearList(); |
483 | loadList(DocLnk(fileref)); | 484 | loadList(DocLnk(fileref)); |
484 | d->selectedFiles->first(); | 485 | d->selectedFiles->first(); |
485 | } else { | 486 | } else { |
486 | clearList(); | 487 | clearList(); |
487 | addToSelection( DocLnk( fileref ) ); | 488 | addToSelection( DocLnk( fileref ) ); |
488 | d->setDocumentUsed = TRUE; | 489 | d->setDocumentUsed = TRUE; |
@@ -491,17 +492,17 @@ void PlayListWidget::setDocument(const QString& fileref) { | |||
491 | mediaPlayerState->setPlaying( TRUE ); | 492 | mediaPlayerState->setPlaying( TRUE ); |
492 | qApp->processEvents(); | 493 | qApp->processEvents(); |
493 | setCaption(tr("OpiePlayer")); | 494 | setCaption(tr("OpiePlayer")); |
494 | } | 495 | } |
495 | } | 496 | } |
496 | 497 | ||
497 | 498 | ||
498 | void PlayListWidget::setActiveWindow() { | 499 | void PlayListWidget::setActiveWindow() { |
499 | // When we get raised we need to ensure that it switches views | 500 | // When we get raised we need to ensure that it switches views |
500 | char origView = mediaPlayerState->view(); | 501 | char origView = mediaPlayerState->view(); |
501 | mediaPlayerState->setView( 'l' ); // invalidate | 502 | mediaPlayerState->setView( 'l' ); // invalidate |
502 | mediaPlayerState->setView( origView ); // now switch back | 503 | mediaPlayerState->setView( origView ); // now switch back |
503 | } | 504 | } |
504 | 505 | ||
505 | 506 | ||
506 | void PlayListWidget::useSelectedDocument() { | 507 | void PlayListWidget::useSelectedDocument() { |
507 | d->setDocumentUsed = FALSE; | 508 | d->setDocumentUsed = FALSE; |
@@ -634,39 +635,39 @@ bool PlayListWidget::last() { | |||
634 | 635 | ||
635 | void PlayListWidget::saveList() { | 636 | void PlayListWidget::saveList() { |
636 | 637 | ||
637 | QString filename; | 638 | QString filename; |
638 | InputDialog *fileDlg; | 639 | InputDialog *fileDlg; |
639 | fileDlg = new InputDialog(this,tr("Save Playlist"),TRUE, 0); | 640 | fileDlg = new InputDialog(this,tr("Save Playlist"),TRUE, 0); |
640 | fileDlg->exec(); | 641 | fileDlg->exec(); |
641 | if( fileDlg->result() == 1 ) { | 642 | if( fileDlg->result() == 1 ) { |
642 | if ( d->current ) | 643 | if ( d->current ) |
643 | delete d->current; | 644 | delete d->current; |
644 | filename = fileDlg->LineEdit1->text();//+".playlist"; | 645 | filename = fileDlg->LineEdit1->text();//+".playlist"; |
645 | // qDebug("saving playlist "+filename+".playlist"); | 646 | // qDebug("saving playlist "+filename+".playlist"); |
646 | Config cfg( filename +".playlist"); | 647 | Config cfg( filename +".playlist"); |
647 | writeConfig( cfg ); | 648 | writeConfig( cfg ); |
648 | 649 | ||
649 | DocLnk lnk; | 650 | DocLnk lnk; |
650 | // lnk.setComment( ""); | 651 | // lnk.setComment( ""); |
651 | lnk.setFile(QDir::homeDirPath()+"/Settings/"+filename+".playlist.conf"); //sets File property | 652 | lnk.setFile(QDir::homeDirPath()+"/Settings/"+filename+".playlist.conf"); //sets File property |
652 | lnk.setType("playlist/plain");// hey is this a REGISTERED mime type?!?!? ;D | 653 | lnk.setType("playlist/plain");// hey is this a REGISTERED mime type?!?!? ;D |
653 | lnk.setIcon("opieplayer/playlist2"); | 654 | lnk.setIcon("opieplayer/playlist2"); |
654 | lnk.setName( filename); //sets file name | 655 | lnk.setName( filename); //sets file name |
655 | // qDebug(filename); | 656 | // qDebug(filename); |
656 | if(!lnk.writeLink()) | 657 | if(!lnk.writeLink()) |
657 | qDebug("Writing doclink did not work"); | 658 | qDebug("Writing doclink did not work"); |
658 | } | 659 | } |
659 | Config config( "OpiePlayer" ); | 660 | Config config( "OpiePlayer" ); |
660 | config.writeEntry("CurrentPlaylist",filename); | 661 | config.writeEntry("CurrentPlaylist",filename); |
661 | setCaption(tr("OpiePlayer: ")+filename); | 662 | setCaption(tr("OpiePlayer: ")+filename); |
662 | d->selectedFiles->first(); | 663 | d->selectedFiles->first(); |
663 | if(fileDlg) | 664 | if(fileDlg) |
664 | delete fileDlg; | 665 | delete fileDlg; |
665 | } | 666 | } |
666 | 667 | ||
667 | void PlayListWidget::loadList( const DocLnk & lnk) { | 668 | void PlayListWidget::loadList( const DocLnk & lnk) { |
668 | QString name= lnk.name(); | 669 | QString name= lnk.name(); |
669 | // qDebug("currentList is "+name); | 670 | // qDebug("currentList is "+name); |
670 | if( name.length()>1) { | 671 | if( name.length()>1) { |
671 | setCaption("OpiePlayer: "+name); | 672 | setCaption("OpiePlayer: "+name); |
672 | // qDebug("load list "+ name+".playlist"); | 673 | // qDebug("load list "+ name+".playlist"); |
@@ -680,128 +681,128 @@ void PlayListWidget::loadList( const DocLnk & lnk) { | |||
680 | config.writeEntry("CurrentPlaylist", name); | 681 | config.writeEntry("CurrentPlaylist", name); |
681 | // d->selectedFiles->first(); | 682 | // d->selectedFiles->first(); |
682 | } | 683 | } |
683 | 684 | ||
684 | } | 685 | } |
685 | 686 | ||
686 | void PlayListWidget::setPlaylist( bool shown ) { | 687 | void PlayListWidget::setPlaylist( bool shown ) { |
687 | if ( shown ) | 688 | if ( shown ) |
688 | d->playListFrame->show(); | 689 | d->playListFrame->show(); |
689 | else | 690 | else |
690 | d->playListFrame->hide(); | 691 | d->playListFrame->hide(); |
691 | } | 692 | } |
692 | 693 | ||
693 | void PlayListWidget::setView( char view ) { | 694 | void PlayListWidget::setView( char view ) { |
694 | if ( view == 'l' ) | 695 | if ( view == 'l' ) |
695 | showMaximized(); | 696 | showMaximized(); |
696 | else | 697 | else |
697 | hide(); | 698 | hide(); |
698 | } | 699 | } |
699 | 700 | ||
700 | void PlayListWidget::addSelected() { | 701 | void PlayListWidget::addSelected() { |
701 | 702 | ||
702 | Config cfg( "OpiePlayer" ); | 703 | Config cfg( "OpiePlayer" ); |
703 | cfg.setGroup("PlayList"); | 704 | cfg.setGroup("PlayList"); |
704 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); | 705 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); |
705 | int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); | 706 | int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); |
706 | 707 | ||
707 | switch (tabWidget->currentPageIndex()) { | 708 | switch (tabWidget->currentPageIndex()) { |
708 | case 0: //playlist | 709 | case 0: //playlist |
709 | break; | 710 | break; |
710 | case 1: { //audio | 711 | case 1: { //audio |
711 | // QString entryName; | 712 | // QString entryName; |
712 | // entryName.sprintf( "File%i", i + 1 ); | 713 | // entryName.sprintf( "File%i", i + 1 ); |
713 | // QString linkFile = cfg.readEntry( entryName ); | 714 | // QString linkFile = cfg.readEntry( entryName ); |
714 | QListViewItemIterator it( audioView ); | 715 | QListViewItemIterator it( audioView ); |
715 | // iterate through all items of the listview | 716 | // iterate through all items of the listview |
716 | for ( ; it.current(); ++it ) { | 717 | for ( ; it.current(); ++it ) { |
717 | if ( it.current()->isSelected() ) { | 718 | if ( it.current()->isSelected() ) { |
718 | QListIterator<DocLnk> dit( files.children() ); | 719 | QListIterator<DocLnk> dit( files.children() ); |
719 | for ( ; dit.current(); ++dit ) { | 720 | for ( ; dit.current(); ++dit ) { |
720 | if( dit.current()->name() == it.current()->text(0) ) { | 721 | if( dit.current()->name() == it.current()->text(0) ) { |
721 | d->selectedFiles->addToSelection( **dit ); | 722 | d->selectedFiles->addToSelection( **dit ); |
722 | } | 723 | } |
723 | } | 724 | } |
724 | audioView->setSelected( it.current(),FALSE); | 725 | audioView->setSelected( it.current(),FALSE); |
725 | } | 726 | } |
726 | } | 727 | } |
727 | tabWidget->setCurrentPage(0); | 728 | tabWidget->setCurrentPage(0); |
728 | } | 729 | } |
729 | break; | 730 | break; |
730 | case 2: { // video | 731 | case 2: { // video |
731 | QListViewItemIterator it( videoView ); | 732 | QListViewItemIterator it( videoView ); |
732 | // iterate through all items of the listview | 733 | // iterate through all items of the listview |
733 | for ( ; it.current(); ++it ) { | 734 | for ( ; it.current(); ++it ) { |
734 | if ( it.current()->isSelected() ) { | 735 | if ( it.current()->isSelected() ) { |
735 | QListIterator<DocLnk> dit( vFiles.children() ); | 736 | QListIterator<DocLnk> dit( vFiles.children() ); |
736 | for ( ; dit.current(); ++dit ) { | 737 | for ( ; dit.current(); ++dit ) { |
737 | if( dit.current()->name() == it.current()->text(0) ) { | 738 | if( dit.current()->name() == it.current()->text(0) ) { |
738 | d->selectedFiles->addToSelection( **dit ); | 739 | d->selectedFiles->addToSelection( **dit ); |
739 | } | 740 | } |
740 | } | 741 | } |
741 | 742 | ||
742 | videoView->setSelected( it.current(),FALSE); | 743 | videoView->setSelected( it.current(),FALSE); |
743 | } | 744 | } |
744 | } | 745 | } |
745 | // for ( int i = 0; i < noOfFiles; i++ ) { | 746 | // for ( int i = 0; i < noOfFiles; i++ ) { |
746 | // QString entryName; | 747 | // QString entryName; |
747 | // entryName.sprintf( "File%i", i + 1 ); | 748 | // entryName.sprintf( "File%i", i + 1 ); |
748 | // QString linkFile = cfg.readEntry( entryName ); | 749 | // QString linkFile = cfg.readEntry( entryName ); |
749 | // if( DocLnk( linkFile).name() == videoView->selectedItem()->text(0) ) { | 750 | // if( DocLnk( linkFile).name() == videoView->selectedItem()->text(0) ) { |
750 | // int result= QMessageBox::warning(this,tr("OpiePlayer"), | 751 | // int result= QMessageBox::warning(this,tr("OpiePlayer"), |
751 | // tr("This is all ready in your playlist.\nContinue?"), | 752 | // tr("This is all ready in your playlist.\nContinue?"), |
752 | // tr("Yes"),tr("No"),0,0,1); | 753 | // tr("Yes"),tr("No"),0,0,1); |
753 | // if (result !=0) | 754 | // if (result !=0) |
754 | // return; | 755 | // return; |
755 | // } | 756 | // } |
756 | // } | 757 | // } |
757 | // addToSelection( videoView->selectedItem() ); | 758 | // addToSelection( videoView->selectedItem() ); |
758 | tabWidget->setCurrentPage(0); | 759 | tabWidget->setCurrentPage(0); |
759 | } | 760 | } |
760 | break; | 761 | break; |
761 | }; | 762 | }; |
762 | } | 763 | } |
763 | 764 | ||
764 | void PlayListWidget::removeSelected() { | 765 | void PlayListWidget::removeSelected() { |
765 | d->selectedFiles->removeSelected( ); | 766 | d->selectedFiles->removeSelected( ); |
766 | } | 767 | } |
767 | 768 | ||
768 | void PlayListWidget::playIt( QListViewItem *it) { | 769 | void PlayListWidget::playIt( QListViewItem *it) { |
769 | // d->setDocumentUsed = FALSE; | 770 | // d->setDocumentUsed = FALSE; |
770 | // mediaPlayerState->curPosition =0; | 771 | // mediaPlayerState->curPosition =0; |
771 | qDebug("playIt"); | 772 | qDebug("playIt"); |
772 | mediaPlayerState->setPlaying(FALSE); | 773 | mediaPlayerState->setPlaying(FALSE); |
773 | mediaPlayerState->setPlaying(TRUE); | 774 | mediaPlayerState->setPlaying(TRUE); |
774 | d->selectedFiles->unSelect(); | 775 | d->selectedFiles->unSelect(); |
775 | } | 776 | } |
776 | 777 | ||
777 | void PlayListWidget::addToSelection( QListViewItem *it) { | 778 | void PlayListWidget::addToSelection( QListViewItem *it) { |
778 | d->setDocumentUsed = FALSE; | 779 | d->setDocumentUsed = FALSE; |
779 | 780 | ||
780 | if(it) { | 781 | if(it) { |
781 | switch (tabWidget->currentPageIndex()) { | 782 | switch (tabWidget->currentPageIndex()) { |
782 | case 1: { | 783 | case 1: { |
783 | QListIterator<DocLnk> dit( files.children() ); | 784 | QListIterator<DocLnk> dit( files.children() ); |
784 | for ( ; dit.current(); ++dit ) { | 785 | for ( ; dit.current(); ++dit ) { |
785 | if( dit.current()->name() == it->text(0)) { | 786 | if( dit.current()->name() == it->text(0)) { |
786 | d->selectedFiles->addToSelection( **dit ); | 787 | d->selectedFiles->addToSelection( **dit ); |
787 | } | 788 | } |
788 | } | 789 | } |
789 | } | 790 | } |
790 | break; | 791 | break; |
791 | case 2: { | 792 | case 2: { |
792 | QListIterator<DocLnk> dit( vFiles.children() ); | 793 | QListIterator<DocLnk> dit( vFiles.children() ); |
793 | for ( ; dit.current(); ++dit ) { | 794 | for ( ; dit.current(); ++dit ) { |
794 | if( dit.current()->name() == it->text(0)) { | 795 | if( dit.current()->name() == it->text(0)) { |
795 | d->selectedFiles->addToSelection( **dit ); | 796 | d->selectedFiles->addToSelection( **dit ); |
796 | } | 797 | } |
797 | } | 798 | } |
798 | } | 799 | } |
799 | break; | 800 | break; |
800 | case 0: | 801 | case 0: |
801 | break; | 802 | break; |
802 | }; | 803 | }; |
803 | tabWidget->setCurrentPage(0); | 804 | tabWidget->setCurrentPage(0); |
804 | } | 805 | } |
805 | } | 806 | } |
806 | 807 | ||
807 | void PlayListWidget::tabChanged(QWidget *widg) { | 808 | void PlayListWidget::tabChanged(QWidget *widg) { |
@@ -847,62 +848,60 @@ void PlayListWidget::tabChanged(QWidget *widg) { | |||
847 | } | 848 | } |
848 | 849 | ||
849 | void PlayListWidget::btnPlay(bool b) { | 850 | void PlayListWidget::btnPlay(bool b) { |
850 | 851 | ||
851 | // mediaPlayerState->setPlaying(b); | 852 | // mediaPlayerState->setPlaying(b); |
852 | switch ( tabWidget->currentPageIndex()) { | 853 | switch ( tabWidget->currentPageIndex()) { |
853 | case 0: | 854 | case 0: |
854 | { | 855 | { |
855 | qDebug("here we are"); | 856 | // if( d->selectedFiles->current()->file().find(" ",0,TRUE) != -1 |
856 | if( d->selectedFiles->current()->file().find(" ",0,TRUE) != -1 | 857 | // if( d->selectedFiles->current()->file().find("%20",0,TRUE) != -1) { |
857 | || d->selectedFiles->current()->file().find("%20",0,TRUE) != -1) { | 858 | QMessageBox::message("Note","You are trying to play\na malformed url."); |
858 | QMessageBox::message("Note","You are trying to play\na malformed url."); | 859 | // } else { |
859 | |||
860 | } else { | ||
861 | |||
862 | mediaPlayerState->setPlaying(b); | 860 | mediaPlayerState->setPlaying(b); |
863 | } } | 861 | // } |
862 | } | ||
864 | break; | 863 | break; |
865 | case 1: | 864 | case 1: |
866 | { | 865 | { |
867 | addToSelection( audioView->currentItem() ); | 866 | addToSelection( audioView->currentItem() ); |
868 | mediaPlayerState->setPlaying(b); | 867 | mediaPlayerState->setPlaying(b); |
869 | d->selectedFiles->removeSelected( ); | 868 | d->selectedFiles->removeSelected( ); |
870 | tabWidget->setCurrentPage(1); | 869 | tabWidget->setCurrentPage(1); |
871 | d->selectedFiles->unSelect(); | 870 | d->selectedFiles->unSelect(); |
872 | insanityBool=FALSE; | 871 | insanityBool=FALSE; |
873 | }// audioView->clearSelection(); | 872 | }// audioView->clearSelection(); |
874 | break; | 873 | break; |
875 | case 2: | 874 | case 2: |
876 | { | 875 | { |
877 | addToSelection( videoView->currentItem() ); | 876 | addToSelection( videoView->currentItem() ); |
878 | mediaPlayerState->setPlaying(b); | 877 | mediaPlayerState->setPlaying(b); |
879 | qApp->processEvents(); | 878 | qApp->processEvents(); |
880 | d->selectedFiles->removeSelected( ); | 879 | d->selectedFiles->removeSelected( ); |
881 | tabWidget->setCurrentPage(2); | 880 | tabWidget->setCurrentPage(2); |
882 | d->selectedFiles->unSelect(); | 881 | d->selectedFiles->unSelect(); |
883 | insanityBool=FALSE; | 882 | insanityBool=FALSE; |
884 | }// videoView->clearSelection(); | 883 | }// videoView->clearSelection(); |
885 | break; | 884 | break; |
886 | }; | 885 | }; |
887 | 886 | ||
888 | } | 887 | } |
889 | 888 | ||
890 | void PlayListWidget::deletePlaylist() { | 889 | void PlayListWidget::deletePlaylist() { |
891 | switch( QMessageBox::information( this, (tr("Remove Playlist?")), | 890 | switch( QMessageBox::information( this, (tr("Remove Playlist?")), |
892 | (tr("You really want to delete\nthis playlist?")), | 891 | (tr("You really want to delete\nthis playlist?")), |
893 | (tr("Yes")), (tr("No")), 0 )){ | 892 | (tr("Yes")), (tr("No")), 0 )){ |
894 | case 0: // Yes clicked, | 893 | case 0: // Yes clicked, |
895 | QFile().remove(playLists->selected()->file()); | 894 | QFile().remove(playLists->selected()->file()); |
896 | QFile().remove(playLists->selected()->linkFile()); | 895 | QFile().remove(playLists->selected()->linkFile()); |
897 | playLists->reread(); | 896 | playLists->reread(); |
898 | break; | 897 | break; |
899 | case 1: // Cancel | 898 | case 1: // Cancel |
900 | break; | 899 | break; |
901 | }; | 900 | }; |
902 | } | 901 | } |
903 | 902 | ||
904 | void PlayListWidget::viewPressed( int mouse, QListViewItem *item, const QPoint& point, int i) | 903 | void PlayListWidget::viewPressed( int mouse, QListViewItem *item, const QPoint& point, int i) |
905 | { | 904 | { |
906 | switch (mouse) { | 905 | switch (mouse) { |
907 | case 1: | 906 | case 1: |
908 | break; | 907 | break; |
@@ -912,51 +911,51 @@ void PlayListWidget::viewPressed( int mouse, QListViewItem *item, const QPoint& | |||
912 | m.insertItem( tr( "Play" ), this, SLOT( playSelected() )); | 911 | m.insertItem( tr( "Play" ), this, SLOT( playSelected() )); |
913 | m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() )); | 912 | m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() )); |
914 | m.insertSeparator(); | 913 | m.insertSeparator(); |
915 | if( QFile(QPEApplication::qpeDir()+"lib/libopie.so").exists() ) | 914 | if( QFile(QPEApplication::qpeDir()+"lib/libopie.so").exists() ) |
916 | m.insertItem( tr( "Properties" ), this, SLOT( listDelete() )); | 915 | m.insertItem( tr( "Properties" ), this, SLOT( listDelete() )); |
917 | 916 | ||
918 | m.exec( QCursor::pos() ); | 917 | m.exec( QCursor::pos() ); |
919 | } | 918 | } |
920 | break; | 919 | break; |
921 | }; | 920 | }; |
922 | } | 921 | } |
923 | 922 | ||
924 | void PlayListWidget::playSelected() | 923 | void PlayListWidget::playSelected() |
925 | { | 924 | { |
926 | btnPlay( TRUE); | 925 | btnPlay( TRUE); |
927 | // d->selectedFiles->unSelect(); | 926 | // d->selectedFiles->unSelect(); |
928 | } | 927 | } |
929 | 928 | ||
930 | void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *item, const QPoint& point, int i) | 929 | void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *item, const QPoint& point, int i) |
931 | { | 930 | { |
932 | switch (mouse) { | 931 | switch (mouse) { |
933 | case 1: | 932 | case 1: |
934 | 933 | ||
935 | break; | 934 | break; |
936 | case 2:{ | 935 | case 2:{ |
937 | QPopupMenu m; | 936 | QPopupMenu m; |
938 | m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() )); | 937 | m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() )); |
939 | m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() )); | 938 | m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() )); |
940 | // m.insertSeparator(); | 939 | // m.insertSeparator(); |
941 | // m.insertItem( tr( "Properties" ), this, SLOT( listDelete() )); | 940 | // m.insertItem( tr( "Properties" ), this, SLOT( listDelete() )); |
942 | m.exec( QCursor::pos() ); | 941 | m.exec( QCursor::pos() ); |
943 | } | 942 | } |
944 | break; | 943 | break; |
945 | }; | 944 | }; |
946 | 945 | ||
947 | } | 946 | } |
948 | 947 | ||
949 | void PlayListWidget::listDelete() { | 948 | void PlayListWidget::listDelete() { |
950 | Config cfg( "OpiePlayer" ); | 949 | Config cfg( "OpiePlayer" ); |
951 | cfg.setGroup("PlayList"); | 950 | cfg.setGroup("PlayList"); |
952 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); | 951 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); |
953 | QString file; | 952 | QString file; |
954 | int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); | 953 | int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); |
955 | switch ( tabWidget->currentPageIndex()) { | 954 | switch ( tabWidget->currentPageIndex()) { |
956 | case 0: | 955 | case 0: |
957 | break; | 956 | break; |
958 | case 1: | 957 | case 1: |
959 | { | 958 | { |
960 | file = audioView->selectedItem()->text(0); | 959 | file = audioView->selectedItem()->text(0); |
961 | // Global::findDocuments(&files, "audio/*"); | 960 | // Global::findDocuments(&files, "audio/*"); |
962 | // AppLnkSet appFiles; | 961 | // AppLnkSet appFiles; |
@@ -965,17 +964,17 @@ void PlayListWidget::listDelete() { | |||
965 | if( dit.current()->name() == file) { | 964 | if( dit.current()->name() == file) { |
966 | // qDebug(file); | 965 | // qDebug(file); |
967 | LnkProperties prop( dit.current() ); | 966 | LnkProperties prop( dit.current() ); |
968 | // connect(&prop, SIGNAL(select(const AppLnk *)), this, SLOT(externalSelected(const AppLnk *))); | 967 | // connect(&prop, SIGNAL(select(const AppLnk *)), this, SLOT(externalSelected(const AppLnk *))); |
969 | prop.showMaximized(); | 968 | prop.showMaximized(); |
970 | prop.exec(); | 969 | prop.exec(); |
971 | } | 970 | } |
972 | } | 971 | } |
973 | populateAudioView(); | 972 | populateAudioView(); |
974 | } | 973 | } |
975 | break; | 974 | break; |
976 | case 2: | 975 | case 2: |
977 | { | 976 | { |
978 | // file = videoView->selectedItem()->text(0); | 977 | // file = videoView->selectedItem()->text(0); |
979 | // for ( int i = 0; i < noOfFiles; i++ ) { | 978 | // for ( int i = 0; i < noOfFiles; i++ ) { |
980 | // QString entryName; | 979 | // QString entryName; |
981 | // entryName.sprintf( "File%i", i + 1 ); | 980 | // entryName.sprintf( "File%i", i + 1 ); |
@@ -984,17 +983,17 @@ void PlayListWidget::listDelete() { | |||
984 | // if( lnk.name() == file ) { | 983 | // if( lnk.name() == file ) { |
985 | // LnkProperties prop( &lnk); | 984 | // LnkProperties prop( &lnk); |
986 | // // connect(&prop, SIGNAL(select(const AppLnk *)), this, SLOT(externalSelected(const AppLnk *))); | 985 | // // connect(&prop, SIGNAL(select(const AppLnk *)), this, SLOT(externalSelected(const AppLnk *))); |
987 | // prop.showMaximized(); | 986 | // prop.showMaximized(); |
988 | // prop.exec(); | 987 | // prop.exec(); |
989 | // } | 988 | // } |
990 | // } | 989 | // } |
991 | } | 990 | } |
992 | break; | 991 | break; |
993 | }; | 992 | }; |
994 | } | 993 | } |
995 | 994 | ||
996 | void PlayListWidget::scanForAudio() { | 995 | void PlayListWidget::scanForAudio() { |
997 | qDebug("scan for audio"); | 996 | qDebug("scan for audio"); |
998 | files.detachChildren(); | 997 | files.detachChildren(); |
999 | QListIterator<DocLnk> sdit( files.children() ); | 998 | QListIterator<DocLnk> sdit( files.children() ); |
1000 | for ( ; sdit.current(); ++sdit ) { | 999 | for ( ; sdit.current(); ++sdit ) { |
@@ -1076,44 +1075,44 @@ void PlayListWidget::openFile() { | |||
1076 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); | 1075 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); |
1077 | fileDlg->exec(); | 1076 | fileDlg->exec(); |
1078 | if( fileDlg->result() == 1 ) { | 1077 | if( fileDlg->result() == 1 ) { |
1079 | filename = fileDlg->LineEdit1->text(); | 1078 | filename = fileDlg->LineEdit1->text(); |
1080 | // http://205.188.234.129:8030 | 1079 | // http://205.188.234.129:8030 |
1081 | // http://66.28.68.70:8000 | 1080 | // http://66.28.68.70:8000 |
1082 | // filename.replace(QRegExp("%20")," "); | 1081 | // filename.replace(QRegExp("%20")," "); |
1083 | if(filename.find(" ",0,TRUE) != -1 || filename.find("%20",0,TRUE) != -1) { | 1082 | if(filename.find(" ",0,TRUE) != -1 || filename.find("%20",0,TRUE) != -1) { |
1084 | QMessageBox::message("Note","Spaces in urls are not allowed."); | 1083 | QMessageBox::message("Note","Spaces in urls are not allowed."); |
1085 | return; | 1084 | return; |
1086 | } else { | 1085 | } else { |
1087 | qDebug("Selected filename is "+filename); | 1086 | qDebug("Selected filename is "+filename); |
1088 | if(filename.right(3) == "m3u") | 1087 | if(filename.right(3) == "m3u") |
1089 | readm3u( filename); | 1088 | readm3u( filename); |
1090 | else if(filename.right(3) == "pls") | 1089 | else if(filename.right(3) == "pls") |
1091 | readPls( filename); | 1090 | readPls( filename); |
1092 | else { | 1091 | else { |
1093 | DocLnk lnk; | 1092 | DocLnk lnk; |
1094 | 1093 | ||
1095 | lnk.setName(filename); //sets file name | 1094 | lnk.setName(filename); //sets file name |
1096 | if(filename.right(1) != "/" && filename.right(3) != "mp3" && filename.right(3) != "MP3") | 1095 | if(filename.right(1) != "/" && filename.right(3) != "mp3" && filename.right(3) != "MP3") |
1097 | filename += "/"; | 1096 | filename += "/"; |
1098 | lnk.setFile(filename); //sets File property | 1097 | lnk.setFile(filename); //sets File property |
1099 | 1098 | ||
1100 | lnk.setType("audio/x-mpegurl"); | 1099 | lnk.setType("audio/x-mpegurl"); |
1101 | lnk.setExec("opieplayer"); | 1100 | lnk.setExec("opieplayer"); |
1102 | lnk.setIcon("opieplayer/MPEGPlayer"); | 1101 | lnk.setIcon("opieplayer/MPEGPlayer"); |
1103 | 1102 | ||
1104 | if(!lnk.writeLink()) | 1103 | if(!lnk.writeLink()) |
1105 | qDebug("Writing doclink did not work"); | 1104 | qDebug("Writing doclink did not work"); |
1106 | d->selectedFiles->addToSelection( lnk); | 1105 | d->selectedFiles->addToSelection( lnk); |
1107 | // if(fileDlg2) | 1106 | // if(fileDlg2) |
1108 | // delete fileDlg2; | 1107 | // delete fileDlg2; |
1108 | } | ||
1109 | } | 1109 | } |
1110 | } | 1110 | } |
1111 | } | ||
1112 | if(fileDlg) | 1111 | if(fileDlg) |
1113 | delete fileDlg; | 1112 | delete fileDlg; |
1114 | } | 1113 | } |
1115 | 1114 | ||
1116 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e) | 1115 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e) |
1117 | { | 1116 | { |
1118 | switch ( e->key() ) { | 1117 | switch ( e->key() ) { |
1119 | ////////////////////////////// Zaurus keys | 1118 | ////////////////////////////// Zaurus keys |
@@ -1182,140 +1181,172 @@ void PlayListWidget::keyPressEvent( QKeyEvent *e) | |||
1182 | // case Key_Space: | 1181 | // case Key_Space: |
1183 | // qDebug("Play"); | 1182 | // qDebug("Play"); |
1184 | // playSelected(); | 1183 | // playSelected(); |
1185 | // break; | 1184 | // break; |
1186 | // } | 1185 | // } |
1187 | } | 1186 | } |
1188 | 1187 | ||
1189 | void PlayListWidget::doBlank() { | 1188 | void PlayListWidget::doBlank() { |
1190 | qDebug("do blanking"); | 1189 | qDebug("do blanking"); |
1191 | fd=open("/dev/fb0",O_RDWR); | 1190 | fd=open("/dev/fb0",O_RDWR); |
1192 | if (fd != -1) { | 1191 | if (fd != -1) { |
1193 | ioctl(fd,FBIOBLANK,1); | 1192 | ioctl(fd,FBIOBLANK,1); |
1194 | // close(fd); | 1193 | // close(fd); |
1195 | } | 1194 | } |
1196 | } | 1195 | } |
1197 | 1196 | ||
1198 | void PlayListWidget::doUnblank() { | 1197 | void PlayListWidget::doUnblank() { |
1199 | // this crashes opieplayer with a segfault | 1198 | // this crashes opieplayer with a segfault |
1200 | // int fd; | 1199 | // int fd; |
1201 | // fd=open("/dev/fb0",O_RDWR); | 1200 | // fd=open("/dev/fb0",O_RDWR); |
1202 | qDebug("do unblanking"); | 1201 | qDebug("do unblanking"); |
1203 | if (fd != -1) { | 1202 | if (fd != -1) { |
1204 | ioctl(fd,FBIOBLANK,0); | 1203 | ioctl(fd,FBIOBLANK,0); |
1205 | close(fd); | 1204 | close(fd); |
1206 | } | 1205 | } |
1207 | QCopEnvelope h("QPE/System", "setBacklight(int)"); | 1206 | QCopEnvelope h("QPE/System", "setBacklight(int)"); |
1208 | h <<-3;// v[1]; // -3 Force on | 1207 | h <<-3;// v[1]; // -3 Force on |
1209 | } | 1208 | } |
1210 | 1209 | ||
1211 | void PlayListWidget::readm3u(const QString &filename) { | 1210 | void PlayListWidget::readm3u(const QString &filename) { |
1212 | 1211 | ||
1213 | qDebug("m3u filename is "+filename); | 1212 | qDebug("m3u filename is "+filename); |
1214 | QFile f(filename); | 1213 | QFile f(filename); |
1215 | 1214 | ||
1216 | if(f.open(IO_ReadOnly)) { | 1215 | if(f.open(IO_ReadOnly)) { |
1217 | QTextStream t(&f); | 1216 | QTextStream t(&f); |
1218 | QString s;//, first, second; | 1217 | QString s;//, first, second; |
1219 | int i=0; | 1218 | int i=0; |
1220 | while ( !t.atEnd()) { | 1219 | while ( !t.atEnd()) { |
1221 | // Lview->insertLine(t.readLine(),-1); | 1220 | // Lview->insertLine(t.readLine(),-1); |
1222 | s=t.readLine(); | 1221 | s=t.readLine(); |
1223 | if(s.find(" ",0,TRUE) != -1 || s.find("%20",0,TRUE) != -1) { | 1222 | if(s.find(" ",0,TRUE) != -1 || s.find("%20",0,TRUE) != -1) { |
1224 | QMessageBox::message("Note","Spaces in urls are not allowed."); | 1223 | QMessageBox::message("Note","Spaces in urls are not allowed."); |
1225 | } | 1224 | } |
1226 | else if(s.find("#",0,TRUE) == -1) { | 1225 | else if(s.find("#",0,TRUE) == -1) { |
1227 | if(s.find(" ",0,TRUE) == -1) { // not sure if this is neede since cf uses vfat | 1226 | if(s.find(" ",0,TRUE) == -1) { // not sure if this is neede since cf uses vfat |
1228 | if(s.left(2) == "E:" || s.left(2) == "P:") { | 1227 | if(s.left(2) == "E:" || s.left(2) == "P:") { |
1229 | s=s.right(s.length()-2); | 1228 | s=s.right(s.length()-2); |
1230 | DocLnk lnk( s ); | 1229 | DocLnk lnk( s ); |
1231 | QFileInfo f(s); | 1230 | QFileInfo f(s); |
1232 | QString name = f.baseName(); | 1231 | QString name = f.baseName(); |
1233 | name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); | 1232 | name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); |
1234 | lnk.setName( name); | 1233 | lnk.setName( name); |
1235 | s=s.replace( QRegExp("\\"),"/"); | 1234 | s=s.replace( QRegExp("\\"),"/"); |
1236 | lnk.setFile( s); | 1235 | lnk.setFile( s); |
1237 | lnk.writeLink(); | 1236 | lnk.writeLink(); |
1238 | // lnk.setIcon(opieplayer/MPEGPlayer); | 1237 | // lnk.setIcon(opieplayer/MPEGPlayer); |
1239 | qDebug("add "+name); | 1238 | qDebug("add "+name); |
1240 | d->selectedFiles->addToSelection( lnk); | 1239 | d->selectedFiles->addToSelection( lnk); |
1241 | } else { // is url | 1240 | } else { // is url |
1242 | 1241 | ||
1243 | s.replace(QRegExp("%20")," "); | 1242 | s.replace(QRegExp("%20")," "); |
1244 | DocLnk lnk( s); | 1243 | DocLnk lnk( s); |
1245 | QString name; | 1244 | QString name; |
1246 | if(name.left(4)=="http") | 1245 | if(name.left(4)=="http") |
1247 | name = s.right( s.length() - 7); | 1246 | name = s.right( s.length() - 7); |
1248 | else | 1247 | else |
1249 | name=s; | 1248 | name=s; |
1250 | // name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); | 1249 | // name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); |
1251 | lnk.setName(name); | 1250 | lnk.setName(name); |
1252 | if(s.at(s.length()-4) == '.') | 1251 | if(s.at(s.length()-4) == '.') |
1253 | lnk.setFile( s); | 1252 | lnk.setFile( s); |
1254 | else | 1253 | else |
1255 | lnk.setFile( s+"/"); | 1254 | lnk.setFile( s+"/"); |
1256 | // lnk.setFile( filename); | 1255 | // lnk.setFile( filename); |
1257 | // lnk.setComment( s+"/"); | 1256 | // lnk.setComment( s+"/"); |
1258 | lnk.setType("audio/x-mpegurl"); | 1257 | lnk.setType("audio/x-mpegurl"); |
1259 | lnk.writeLink(); | 1258 | lnk.writeLink(); |
1260 | // lnk.setIcon( "opieplayer/MPEGPlayer"); | 1259 | // lnk.setIcon( "opieplayer/MPEGPlayer"); |
1261 | // qDebug("add "+s); | 1260 | // qDebug("add "+s); |
1262 | d->selectedFiles->addToSelection( lnk); | 1261 | d->selectedFiles->addToSelection( lnk); |
1263 | } | 1262 | } |
1264 | i++; | 1263 | i++; |
1265 | } | 1264 | } |
1266 | } | 1265 | } |
1267 | } | 1266 | } |
1268 | } | 1267 | } |
1269 | f.close(); | 1268 | f.close(); |
1270 | } | 1269 | } |
1271 | 1270 | ||
1272 | void PlayListWidget::writem3u(const QString &filename) { | 1271 | void PlayListWidget::writem3u() { |
1273 | 1272 | ||
1273 | InputDialog *fileDlg; | ||
1274 | fileDlg = new InputDialog(this,tr("Save m3u Playlist "),TRUE, 0); | ||
1275 | fileDlg->exec(); | ||
1276 | QString filename,list; | ||
1277 | if( fileDlg->result() == 1 ) { | ||
1278 | filename = fileDlg->LineEdit1->text(); | ||
1279 | qDebug(filename); | ||
1280 | int noOfFiles = 0; | ||
1281 | d->selectedFiles->first(); | ||
1282 | do { | ||
1283 | // we dont check for existance because of url's | ||
1284 | // qDebug(d->selectedFiles->current()->file()); | ||
1285 | list += d->selectedFiles->current()->file()+"\n"; | ||
1286 | noOfFiles++; | ||
1287 | } | ||
1288 | while ( d->selectedFiles->next() ); | ||
1289 | qDebug(list); | ||
1290 | if(filename.left(1) != "/") | ||
1291 | filename=QPEApplication::documentDir()+"/"+filename; | ||
1292 | if(filename.right(3) != "m3u") | ||
1293 | filename=filename+".m3u"; | ||
1294 | |||
1295 | QFile f(filename); | ||
1296 | f.open(IO_WriteOnly); | ||
1297 | f.writeBlock(list, list.length()); | ||
1298 | f.close(); | ||
1299 | } | ||
1300 | if(fileDlg) delete fileDlg; | ||
1274 | } | 1301 | } |
1275 | 1302 | ||
1276 | void PlayListWidget::readPls(const QString &filename) { | 1303 | void PlayListWidget::readPls(const QString &filename) { |
1277 | 1304 | ||
1278 | qDebug("pls filename is "+filename); | 1305 | qDebug("pls filename is "+filename); |
1279 | QFile f(filename); | 1306 | QFile f(filename); |
1280 | 1307 | ||
1281 | if(f.open(IO_ReadOnly)) { | 1308 | if(f.open(IO_ReadOnly)) { |
1282 | QTextStream t(&f); | 1309 | QTextStream t(&f); |
1283 | QString s;//, first, second; | 1310 | QString s;//, first, second; |
1284 | int i=0; | 1311 | int i=0; |
1285 | while ( !t.atEnd()) { | 1312 | while ( !t.atEnd()) { |
1286 | s=t.readLine(); | 1313 | s=t.readLine(); |
1287 | if(s.left(4) == "File") { | 1314 | if(s.left(4) == "File") { |
1288 | s=s.right(s.length() - 6); | 1315 | s=s.right(s.length() - 6); |
1289 | s.replace(QRegExp("%20")," "); | 1316 | s.replace(QRegExp("%20")," "); |
1290 | qDebug("adding "+s+" to playlist"); | 1317 | qDebug("adding "+s+" to playlist"); |
1291 | // numberofentries=2 | 1318 | // numberofentries=2 |
1292 | // File1=http | 1319 | // File1=http |
1293 | // Title | 1320 | // Title |
1294 | // Length | 1321 | // Length |
1295 | // Version | 1322 | // Version |
1296 | // File2=http | 1323 | // File2=http |
1297 | 1324 | ||
1298 | s=s.replace( QRegExp("\\"),"/"); | 1325 | s=s.replace( QRegExp("\\"),"/"); |
1299 | // Lview->insertLine(t.readLine(),-1); | 1326 | DocLnk lnk( s ); |
1300 | // s=t.readLine(); | 1327 | QFileInfo f(s); |
1301 | // s=s.right(s.length()-2); | 1328 | QString name = f.baseName(); |
1302 | DocLnk lnk( s ); | 1329 | if(name.left(4)=="http") |
1303 | QFileInfo f(s); | 1330 | name = s.right( s.length() - 7); |
1304 | QString name = f.baseName(); | 1331 | else |
1305 | name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); | 1332 | name=s; |
1333 | name = name.right(name.length()-name.findRev("\\",-1,TRUE)-1); | ||
1306 | // QFileInfo f(s); | 1334 | // QFileInfo f(s); |
1307 | // QString name = f.baseName(); | 1335 | // QString name = f.baseName(); |
1308 | // // name = name.left(name.length()-4); | 1336 | // name = name.left(name.length()-4); |
1309 | // name = name.right(name.findRev("/",0,TRUE)); | 1337 | // name = name.right(name.findRev("/",0,TRUE)); |
1310 | lnk.setName( name); | 1338 | lnk.setName( name); |
1311 | lnk.setFile( s+"/"); | 1339 | if(s.at(s.length()-4) == '.') |
1312 | lnk.setType("audio/x-mpegurl"); | 1340 | lnk.setFile( s); |
1313 | 1341 | else | |
1314 | qDebug("DocLnk add "+name); | 1342 | lnk.setFile( s+"/"); |
1315 | d->selectedFiles->addToSelection( lnk); | 1343 | lnk.setType("audio/x-mpegurl"); |
1316 | } | 1344 | |
1345 | qDebug("DocLnk add "+name); | ||
1346 | d->selectedFiles->addToSelection( lnk); | ||
1347 | } | ||
1317 | } | 1348 | } |
1318 | i++; | 1349 | i++; |
1319 | } | 1350 | } |
1320 | } | 1351 | } |
1321 | 1352 | ||
diff --git a/core/multimedia/opieplayer/playlistwidget.h b/core/multimedia/opieplayer/playlistwidget.h index 5837ed3..7718a8c 100644 --- a/core/multimedia/opieplayer/playlistwidget.h +++ b/core/multimedia/opieplayer/playlistwidget.h | |||
@@ -70,27 +70,27 @@ protected: | |||
70 | /* void contentsMouseReleaseEvent( QMouseEvent * e ); */ | 70 | /* void contentsMouseReleaseEvent( QMouseEvent * e ); */ |
71 | void keyReleaseEvent( QKeyEvent *e); | 71 | void keyReleaseEvent( QKeyEvent *e); |
72 | void keyPressEvent( QKeyEvent *e); | 72 | void keyPressEvent( QKeyEvent *e); |
73 | private: | 73 | private: |
74 | bool audioScan, videoScan; | 74 | bool audioScan, videoScan; |
75 | void doBlank(); | 75 | void doBlank(); |
76 | void doUnblank(); | 76 | void doUnblank(); |
77 | void readm3u(const QString &); | 77 | void readm3u(const QString &); |
78 | void writem3u(const QString &); | ||
79 | void readPls(const QString &); | 78 | void readPls(const QString &); |
80 | 79 | ||
81 | 80 | ||
82 | void initializeStates(); | 81 | void initializeStates(); |
83 | void readConfig( Config& cfg ); | 82 | void readConfig( Config& cfg ); |
84 | void writeConfig( Config& cfg ) const; | 83 | void writeConfig( Config& cfg ) const; |
85 | PlayListWidgetPrivate *d; // Private implementation data | 84 | PlayListWidgetPrivate *d; // Private implementation data |
86 | void populateAudioView(); | 85 | void populateAudioView(); |
87 | void populateVideoView(); | 86 | void populateVideoView(); |
88 | private slots: | 87 | private slots: |
88 | void writem3u(); | ||
89 | void scanForAudio(); | 89 | void scanForAudio(); |
90 | void scanForVideo(); | 90 | void scanForVideo(); |
91 | void openFile(); | 91 | void openFile(); |
92 | void setDocument( const QString& fileref ); | 92 | void setDocument( const QString& fileref ); |
93 | void addToSelection( const DocLnk& ); // Add a media file to the playlist | 93 | void addToSelection( const DocLnk& ); // Add a media file to the playlist |
94 | void addToSelection( QListViewItem* ); // Add a media file to the playlist | 94 | void addToSelection( QListViewItem* ); // Add a media file to the playlist |
95 | void setActiveWindow(); // need to handle this to show the right view | 95 | void setActiveWindow(); // need to handle this to show the right view |
96 | void setPlaylist( bool ); // Show/Hide the playlist | 96 | void setPlaylist( bool ); // Show/Hide the playlist |