From e2de64d6f1beb9e492daf5b886e19933c1fa41dd Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- juk/searchplaylist.cpp | 115 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 juk/searchplaylist.cpp (limited to 'juk/searchplaylist.cpp') diff --git a/juk/searchplaylist.cpp b/juk/searchplaylist.cpp new file mode 100644 index 00000000..2afd8549 --- /dev/null +++ b/juk/searchplaylist.cpp @@ -0,0 +1,115 @@ +/*************************************************************************** + begin : Mon May 5 2003 + copyright : (C) 2003 - 2004 by Scott Wheeler + email : wheeler@kde.org +***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#include + +#include + +#include "searchplaylist.h" +#include "playlistitem.h" +#include "collectionlist.h" + +//////////////////////////////////////////////////////////////////////////////// +// public methods +//////////////////////////////////////////////////////////////////////////////// + +SearchPlaylist::SearchPlaylist(PlaylistCollection *collection, + const PlaylistSearch &search, + const QString &name, + bool setupPlaylist, + bool synchronizePlaying) : + DynamicPlaylist(search.playlists(), collection, name, "find", + setupPlaylist, synchronizePlaying), + m_search(search) +{ + +} + +void SearchPlaylist::setPlaylistSearch(const PlaylistSearch &s, bool update) +{ + m_search = s; + if(update) + setPlaylists(s.playlists()); +} + +//////////////////////////////////////////////////////////////////////////////// +// protected methods +//////////////////////////////////////////////////////////////////////////////// + +void SearchPlaylist::updateItems() +{ + // Here we don't simply use "clear" since that would involve a call to + // items() which would in turn call this method... + + PlaylistItemList l = Playlist::items(); + + QPtrDict oldItems(503); + + for(PlaylistItemList::ConstIterator it = l.begin(); it != l.end(); ++it) + oldItems.insert((*it)->collectionItem(), *it); + + m_search.search(); + PlaylistItemList matched = m_search.matchedItems(); + PlaylistItemList newItems; + + for(PlaylistItemList::ConstIterator it = matched.begin(); it != matched.end(); ++it) { + if(!oldItems.remove((*it)->collectionItem())) + newItems.append((*it)->collectionItem()); + } + + // kdDebug(65432) << k_funcinfo << "newItems.size() == " << newItems.size() << endl; + + for(QPtrDictIterator it(oldItems); it.current(); ++it) + clearItem(it.current(), false); + + if(!oldItems.isEmpty() && newItems.isEmpty()) + dataChanged(); + + createItems(newItems); + + if(synchronizePlaying()) { + kdDebug(65432) << k_funcinfo << "synchronizing playing" << endl; + synchronizePlayingItems(m_search.playlists(), true); + } +} + + +//////////////////////////////////////////////////////////////////////////////// +// helper functions +//////////////////////////////////////////////////////////////////////////////// + +QDataStream &operator<<(QDataStream &s, const SearchPlaylist &p) +{ + s << p.name() + << p.playlistSearch(); + + return s; +} + +QDataStream &operator>>(QDataStream &s, SearchPlaylist &p) +{ + QString name; + PlaylistSearch search; + + s >> name + >> search; + + p.setName(name); + p.setPlaylistSearch(search, false); + + return s; +} + +#include "searchplaylist.moc" -- cgit v1.2.1