1/*
2 Copyright (c) 2013 Daniel Vrátil <dvratil@redhat.com>
3
4 This library is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or (at your
7 option) any later version.
8
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12 License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to the
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 02110-1301, USA.
18*/
19
20#ifndef NOTIFICATIONSOURCE_P_H
21#define NOTIFICATIONSOURCE_P_H
22
23#include <QtCore/QObject>
24
25#include "entity.h"
26#include "tag.h"
27#include "akonadiprivate_export.h"
28#include <notificationmessagev3_p.h>
29
30namespace Akonadi
31{
32
33class AKONADI_TESTS_EXPORT NotificationSource : public QObject
34{
35 Q_OBJECT
36
37public:
38 NotificationSource(QObject *source);
39 ~NotificationSource();
40
41 void setAllMonitored(bool allMonitored);
42 void setMonitoredCollection(Entity::Id id, bool monitored);
43 void setMonitoredItem(Entity::Id id, bool monitored);
44 void setMonitoredResource(const QByteArray &resource, bool monitored);
45 void setMonitoredMimeType(const QString &mimeType, bool monitored);
46 void setMonitoredTag(Tag::Id id, bool monitored);
47 void setMonitoredType(NotificationMessageV2::Type type, bool monitored);
48 void setIgnoredSession(const QByteArray &session, bool monitored);
49
50 QObject *source() const;
51
52Q_SIGNALS:
53 void notifyV3(const Akonadi::NotificationMessageV3::List &msgs);
54};
55
56}
57
58#endif // NOTIFICATIONSOURCE_P_H
59