/* Copyright (c) 2007-2008 Tobias Koenig This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef AKONADI_ITEMMONITOR_P_H #define AKONADI_ITEMMONITOR_P_H #include #include #include namespace Akonadi { /** * @internal */ class ItemMonitor::Private : public QObject { Q_OBJECT public: Private(ItemMonitor *parent) : QObject(0) , mParent(parent) , mMonitor(new Monitor()) { connect(mMonitor, SIGNAL(itemChanged(Akonadi::Item,QSet)), SLOT(slotItemChanged(Akonadi::Item,QSet))); connect(mMonitor, SIGNAL(itemRemoved(Akonadi::Item)), SLOT(slotItemRemoved(Akonadi::Item))); } ~Private() { delete mMonitor; } ItemMonitor *mParent; Item mItem; Monitor *mMonitor; private Q_SLOTS: void slotItemChanged(const Akonadi::Item &item, const QSet &) { mItem.apply(item); mParent->itemChanged(item); } void slotItemRemoved(const Akonadi::Item &) { mItem = Item(); mParent->itemRemoved(); } void initialFetchDone(KJob *job) { if (job->error()) { return; } ItemFetchJob *fetchJob = qobject_cast(job); if (!fetchJob->items().isEmpty()) { mItem = fetchJob->items().first(); mParent->itemChanged(mItem); } } }; } #endif