You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.0 KiB
62 lines
2.0 KiB
/* |
|
Copyright (C) 2018 Daniel Vrátil <dvratil@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; see the file COPYING. If not, write to |
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
|
Boston, MA 02110-1301, USA. |
|
*/ |
|
|
|
#ifndef UNIFIEDMAILBOXAGENT_H |
|
#define UNIFIEDMAILBOXAGENT_H |
|
|
|
#include <AkonadiAgentBase/ResourceBase> |
|
#include <Akonadi/KMime/SpecialMailCollections> |
|
|
|
#include "unifiedmailboxmanager.h" |
|
|
|
#include <QHash> |
|
|
|
/* Despite its name, this is actually a Resource, but it acts as an Agent: it |
|
* listens to notifications about Items that belong to other resources and acts |
|
* on them. |
|
* The only reason this agent has to implement ResourceBase is to be able to own |
|
* the virtual unified collections into which content of other collections is |
|
* linked. |
|
*/ |
|
class UnifiedMailboxAgent : public Akonadi::ResourceBase |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit UnifiedMailboxAgent(const QString &id); |
|
~UnifiedMailboxAgent() override = default; |
|
|
|
void configure(WId windowId) override; |
|
|
|
void setEnableAgent(bool enable); |
|
bool enabledAgent() const; |
|
|
|
void retrieveCollections() override; |
|
void retrieveItems(const Akonadi::Collection &collection) override; |
|
bool retrieveItem(const Akonadi::Item &item, const QSet<QByteArray> &parts) override; |
|
private: |
|
void delayedInit(); |
|
|
|
void fixSpecialCollections(); |
|
void fixSpecialCollection(const QString &colId, Akonadi::SpecialMailCollections::Type type); |
|
|
|
UnifiedMailboxManager mBoxManager; |
|
}; |
|
|
|
#endif
|
|
|