1/*
2 Copyright (c) 2009 Volker Krause <vkrause@kde.org>
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 AKOANDI_AGENTSEARCHINTERFACE_P_H
21#define AKOANDI_AGENTSEARCHINTERFACE_P_H
22
23#include "agentsearchinterface.h"
24#include <QObject>
25
26#include <akonadi/collection.h>
27
28class KJob;
29
30namespace Akonadi {
31
32class ImapSet;
33
34class AgentSearchInterfacePrivate : public QObject
35{
36 Q_OBJECT
37public:
38 explicit AgentSearchInterfacePrivate(AgentSearchInterface *qq);
39
40 void search(const QByteArray &searchId, const QString &query, quint64 collectionId);
41 void addSearch(const QString &query, const QString &queryLanguage, quint64 resultCollectionId);
42 void removeSearch(quint64 resultCollectionId);
43
44 QByteArray mSearchId;
45 qint64 mCollectionId;
46
47private Q_SLOTS:
48 void delayedInit();
49 void collectionReceived(KJob *job);
50
51private:
52 AgentSearchInterface *q;
53};
54
55}
56
57#endif
58