mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
95 lines
2.4 KiB
C++
95 lines
2.4 KiB
C++
/*
|
|
This file is part of KDE.
|
|
|
|
Copyright (c) 2009 Eckhart Wörner <ewoerner@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.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
USA.
|
|
*/
|
|
|
|
#include "sourcewatchlist.h"
|
|
|
|
|
|
using namespace Plasma;
|
|
|
|
SourceWatchList::SourceWatchList(DataEngine* engine, QObject* parent)
|
|
: QObject(parent),
|
|
m_engine(engine),
|
|
m_updateInterval(0)
|
|
{
|
|
}
|
|
|
|
|
|
bool SourceWatchList::contains(const QString& key) const
|
|
{
|
|
return m_data.contains(key);
|
|
}
|
|
|
|
|
|
QString SourceWatchList::query() const
|
|
{
|
|
return m_query;
|
|
}
|
|
|
|
|
|
void SourceWatchList::setQuery(const QString& query)
|
|
{
|
|
if (query != m_query) {
|
|
if (!m_query.isEmpty()) {
|
|
m_engine->disconnectSource(m_query, this);
|
|
}
|
|
dataUpdated(m_query, DataEngine::Data());
|
|
m_query = query;
|
|
if (!m_query.isEmpty()) {
|
|
m_engine->connectSource(m_query, this, m_updateInterval);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void SourceWatchList::setUpdateInterval(uint updateInterval)
|
|
{
|
|
m_updateInterval = updateInterval;
|
|
if (!m_query.isEmpty()) {
|
|
m_engine->connectSource(m_query, this, m_updateInterval);
|
|
}
|
|
}
|
|
|
|
|
|
QVariant SourceWatchList::value(const QString& id) const
|
|
{
|
|
return m_data.value(id);
|
|
}
|
|
|
|
|
|
void SourceWatchList::dataUpdated(const QString& source, const Plasma::DataEngine::Data& data)
|
|
{
|
|
Q_UNUSED(source)
|
|
|
|
const QSet<QString> oldKeys = QSet<QString>::fromList(m_data.keys());
|
|
const QSet<QString> newKeys = QSet<QString>::fromList(data.keys());
|
|
m_data = data;
|
|
QSet<QString> addedKeys = QSet<QString>(newKeys).subtract(oldKeys);
|
|
QSet<QString> removedKeys = QSet<QString>(oldKeys).subtract(newKeys);
|
|
if (!removedKeys.isEmpty()) {
|
|
emit keysRemoved(removedKeys);
|
|
}
|
|
if (!addedKeys.isEmpty()) {
|
|
emit keysAdded(addedKeys);
|
|
}
|
|
}
|
|
|
|
|
|
#include "moc_sourcewatchlist.cpp"
|