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.
51 lines
1.8 KiB
51 lines
1.8 KiB
/* |
|
Copyright (C) 2013-2018 Montel Laurent <montel@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 FOLDERARCHIVEAGENTJOB_H |
|
#define FOLDERARCHIVEAGENTJOB_H |
|
|
|
#include <QObject> |
|
#include <AkonadiCore/Item> |
|
class KJob; |
|
class FolderArchiveAccountInfo; |
|
class FolderArchiveManager; |
|
class KMMoveCommand; |
|
class FolderArchiveAgentJob : public QObject |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit FolderArchiveAgentJob(FolderArchiveManager *manager, FolderArchiveAccountInfo *info, const Akonadi::Item::List &lstItem, QObject *parent = nullptr); |
|
~FolderArchiveAgentJob(); |
|
|
|
void start(); |
|
|
|
private: |
|
Q_DISABLE_COPY(FolderArchiveAgentJob) |
|
void slotFetchCollection(KJob *job); |
|
void sloMoveMailsToCollection(const Akonadi::Collection &col); |
|
void slotCheckFailed(const QString &message); |
|
void slotCollectionIdFound(const Akonadi::Collection &col); |
|
void slotMoveMessages(KMMoveCommand *); |
|
|
|
void sendError(const QString &error); |
|
Akonadi::Item::List mListItem; |
|
FolderArchiveManager *mManager = nullptr; |
|
FolderArchiveAccountInfo *mInfo = nullptr; |
|
}; |
|
|
|
#endif // FOLDERARCHIVEAGENTJOB_H
|
|
|