Lines 125-131
Link Here
|
125 |
QObjectList *childList = m_playlistStack->queryList("Playlist"); |
125 |
QObjectList *childList = m_playlistStack->queryList("Playlist"); |
126 |
QObject *obj; |
126 |
QObject *obj; |
127 |
for(obj = childList->first(); obj; obj = childList->next()) { |
127 |
for(obj = childList->first(); obj; obj = childList->next()) { |
128 |
Playlist *p = static_cast<Playlist*>(obj); |
128 |
Playlist *p = static_cast<Playlist *>(obj); |
129 |
l.append(p->name()); |
129 |
l.append(p->name()); |
130 |
} |
130 |
} |
131 |
|
131 |
|
Lines 200-206
Link Here
|
200 |
if(files.isEmpty()) |
200 |
if(files.isEmpty()) |
201 |
return; |
201 |
return; |
202 |
|
202 |
|
203 |
if(currentPlaylist() == CollectionList::instance() || |
203 |
if(visiblePlaylist() == CollectionList::instance() || |
204 |
KMessageBox::questionYesNo( |
204 |
KMessageBox::questionYesNo( |
205 |
widget, |
205 |
widget, |
206 |
i18n("Do you want to add these items to the current list or to the collection list?"), |
206 |
i18n("Do you want to add these items to the current list or to the collection list?"), |
Lines 211-217
Link Here
|
211 |
CollectionList::instance()->addFiles(files, m_importPlaylists); |
211 |
CollectionList::instance()->addFiles(files, m_importPlaylists); |
212 |
} |
212 |
} |
213 |
else |
213 |
else |
214 |
currentPlaylist()->addFiles(files, m_importPlaylists); |
214 |
visiblePlaylist()->addFiles(files, m_importPlaylists); |
215 |
|
215 |
|
216 |
dataChanged(); |
216 |
dataChanged(); |
217 |
} |
217 |
} |
Lines 256-262
Link Here
|
256 |
|
256 |
|
257 |
void PlaylistCollection::rename() |
257 |
void PlaylistCollection::rename() |
258 |
{ |
258 |
{ |
259 |
QString old = currentPlaylist()->name(); |
259 |
QString old = visiblePlaylist()->name(); |
260 |
QString name = playlistNameDialog(i18n("Rename"), old, false); |
260 |
QString name = playlistNameDialog(i18n("Rename"), old, false); |
261 |
|
261 |
|
262 |
m_playlistNames.remove(old); |
262 |
m_playlistNames.remove(old); |
Lines 264-288
Link Here
|
264 |
if(name.isNull()) |
264 |
if(name.isNull()) |
265 |
return; |
265 |
return; |
266 |
|
266 |
|
267 |
currentPlaylist()->setName(name); |
267 |
visiblePlaylist()->setName(name); |
268 |
} |
268 |
} |
269 |
|
269 |
|
270 |
void PlaylistCollection::duplicate() |
270 |
void PlaylistCollection::duplicate() |
271 |
{ |
271 |
{ |
272 |
QString name = playlistNameDialog(i18n("Duplicate"), currentPlaylist()->name()); |
272 |
QString name = playlistNameDialog(i18n("Duplicate"), visiblePlaylist()->name()); |
273 |
if(name.isNull()) |
273 |
if(name.isNull()) |
274 |
return; |
274 |
return; |
275 |
raise(new Playlist(this, currentPlaylist()->items(), name)); |
275 |
raise(new Playlist(this, visiblePlaylist()->items(), name)); |
276 |
} |
276 |
} |
277 |
|
277 |
|
278 |
void PlaylistCollection::save() |
278 |
void PlaylistCollection::save() |
279 |
{ |
279 |
{ |
280 |
currentPlaylist()->save(); |
280 |
visiblePlaylist()->save(); |
281 |
} |
281 |
} |
282 |
|
282 |
|
283 |
void PlaylistCollection::saveAs() |
283 |
void PlaylistCollection::saveAs() |
284 |
{ |
284 |
{ |
285 |
currentPlaylist()->saveAs(); |
285 |
visiblePlaylist()->saveAs(); |
286 |
} |
286 |
} |
287 |
|
287 |
|
288 |
void PlaylistCollection::remove() |
288 |
void PlaylistCollection::remove() |
Lines 292-307
Link Here
|
292 |
|
292 |
|
293 |
void PlaylistCollection::reload() |
293 |
void PlaylistCollection::reload() |
294 |
{ |
294 |
{ |
295 |
if(currentPlaylist() == CollectionList::instance()) |
295 |
if(visiblePlaylist() == CollectionList::instance()) |
296 |
CollectionList::instance()->addFiles(m_folderList, m_importPlaylists); |
296 |
CollectionList::instance()->addFiles(m_folderList, m_importPlaylists); |
297 |
else |
297 |
else |
298 |
currentPlaylist()->slotReload(); |
298 |
visiblePlaylist()->slotReload(); |
299 |
|
299 |
|
300 |
} |
300 |
} |
301 |
|
301 |
|
302 |
void PlaylistCollection::editSearch() |
302 |
void PlaylistCollection::editSearch() |
303 |
{ |
303 |
{ |
304 |
SearchPlaylist *p = dynamic_cast<SearchPlaylist *>(currentPlaylist()); |
304 |
SearchPlaylist *p = dynamic_cast<SearchPlaylist *>(visiblePlaylist()); |
305 |
|
305 |
|
306 |
if(!p) |
306 |
if(!p) |
307 |
return; |
307 |
return; |
Lines 322-343
Link Here
|
322 |
|
322 |
|
323 |
void PlaylistCollection::removeItems() |
323 |
void PlaylistCollection::removeItems() |
324 |
{ |
324 |
{ |
325 |
currentPlaylist()->slotRemoveSelectedItems(); |
325 |
visiblePlaylist()->slotRemoveSelectedItems(); |
326 |
} |
326 |
} |
327 |
|
327 |
|
328 |
void PlaylistCollection::refreshItems() |
328 |
void PlaylistCollection::refreshItems() |
329 |
{ |
329 |
{ |
330 |
currentPlaylist()->slotRefresh(); |
330 |
visiblePlaylist()->slotRefresh(); |
331 |
} |
331 |
} |
332 |
|
332 |
|
333 |
void PlaylistCollection::renameItems() |
333 |
void PlaylistCollection::renameItems() |
334 |
{ |
334 |
{ |
335 |
currentPlaylist()->slotRenameFile(); |
335 |
visiblePlaylist()->slotRenameFile(); |
336 |
} |
336 |
} |
337 |
|
337 |
|
338 |
PlaylistItemList PlaylistCollection::selectedItems() |
338 |
PlaylistItemList PlaylistCollection::selectedItems() |
339 |
{ |
339 |
{ |
340 |
return currentPlaylist()->selectedItems(); |
340 |
return visiblePlaylist()->selectedItems(); |
341 |
} |
341 |
} |
342 |
|
342 |
|
343 |
void PlaylistCollection::scanFolders() |
343 |
void PlaylistCollection::scanFolders() |
Lines 382-393
Link Here
|
382 |
|
382 |
|
383 |
void PlaylistCollection::guessTagFromFile() |
383 |
void PlaylistCollection::guessTagFromFile() |
384 |
{ |
384 |
{ |
385 |
currentPlaylist()->slotGuessTagInfo(TagGuesser::FileName); |
385 |
visiblePlaylist()->slotGuessTagInfo(TagGuesser::FileName); |
386 |
} |
386 |
} |
387 |
|
387 |
|
388 |
void PlaylistCollection::guessTagFromInternet() |
388 |
void PlaylistCollection::guessTagFromInternet() |
389 |
{ |
389 |
{ |
390 |
currentPlaylist()->slotGuessTagInfo(TagGuesser::MusicBrainz); |
390 |
visiblePlaylist()->slotGuessTagInfo(TagGuesser::MusicBrainz); |
391 |
} |
391 |
} |
392 |
|
392 |
|
393 |
void PlaylistCollection::setSearchEnabled(bool enable) |
393 |
void PlaylistCollection::setSearchEnabled(bool enable) |
Lines 397-403
Link Here
|
397 |
|
397 |
|
398 |
m_searchEnabled = enable; |
398 |
m_searchEnabled = enable; |
399 |
|
399 |
|
400 |
currentPlaylist()->setSearchEnabled(enable); |
400 |
visiblePlaylist()->setSearchEnabled(enable); |
401 |
} |
401 |
} |
402 |
|
402 |
|
403 |
HistoryPlaylist *PlaylistCollection::historyPlaylist() const |
403 |
HistoryPlaylist *PlaylistCollection::historyPlaylist() const |
Lines 429-443
Link Here
|
429 |
return m_actionHandler; |
429 |
return m_actionHandler; |
430 |
} |
430 |
} |
431 |
|
431 |
|
432 |
//////////////////////////////////////////////////////////////////////////////// |
|
|
433 |
// protected methods |
434 |
//////////////////////////////////////////////////////////////////////////////// |
435 |
|
436 |
Playlist *PlaylistCollection::currentPlaylist() const |
432 |
Playlist *PlaylistCollection::currentPlaylist() const |
437 |
{ |
433 |
{ |
|
|
434 |
if(Playlist::playingItem()) |
435 |
return Playlist::playingItem()->playlist(); |
436 |
else |
437 |
return visiblePlaylist(); |
438 |
} |
439 |
|
440 |
Playlist *PlaylistCollection::visiblePlaylist() const |
441 |
{ |
438 |
return static_cast<Playlist *>(m_playlistStack->visibleWidget()); |
442 |
return static_cast<Playlist *>(m_playlistStack->visibleWidget()); |
439 |
} |
443 |
} |
440 |
|
444 |
|
|
|
445 |
//////////////////////////////////////////////////////////////////////////////// |
446 |
// protected methods |
447 |
//////////////////////////////////////////////////////////////////////////////// |
448 |
|
441 |
QWidgetStack *PlaylistCollection::playlistStack() const |
449 |
QWidgetStack *PlaylistCollection::playlistStack() const |
442 |
{ |
450 |
{ |
443 |
return m_playlistStack; |
451 |
return m_playlistStack; |