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.
67 lines
1.7 KiB
67 lines
1.7 KiB
/* |
|
SPDX-FileCopyrightText: 2012-2020 Laurent Montel <montel@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef ADDARCHIVEMAILDIALOG_H |
|
#define ADDARCHIVEMAILDIALOG_H |
|
|
|
#include <MailCommon/BackupJob> |
|
#include "archivemailinfo.h" |
|
#include <QDialog> |
|
#include <Collection> |
|
class QUrl; |
|
class QCheckBox; |
|
class KUrlRequester; |
|
class QSpinBox; |
|
class QPushButton; |
|
|
|
class FormatComboBox; |
|
class UnitComboBox; |
|
namespace MailCommon { |
|
class FolderRequester; |
|
} |
|
|
|
class AddArchiveMailDialog : public QDialog |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit AddArchiveMailDialog(ArchiveMailInfo *info, QWidget *parent = nullptr); |
|
~AddArchiveMailDialog(); |
|
|
|
void setArchiveType(MailCommon::BackupJob::ArchiveType type); |
|
MailCommon::BackupJob::ArchiveType archiveType() const; |
|
|
|
void setRecursive(bool b); |
|
Q_REQUIRED_RESULT bool recursive() const; |
|
|
|
void setSelectedFolder(const Akonadi::Collection &collection); |
|
Akonadi::Collection selectedFolder() const; |
|
|
|
Q_REQUIRED_RESULT QUrl path() const; |
|
void setPath(const QUrl &); |
|
|
|
ArchiveMailInfo *info(); |
|
|
|
void setMaximumArchiveCount(int); |
|
|
|
Q_REQUIRED_RESULT int maximumArchiveCount() const; |
|
|
|
private: |
|
void slotFolderChanged(const Akonadi::Collection &); |
|
void slotUpdateOkButton(); |
|
void load(ArchiveMailInfo *info); |
|
MailCommon::FolderRequester *mFolderRequester = nullptr; |
|
FormatComboBox *mFormatComboBox = nullptr; |
|
UnitComboBox *mUnits = nullptr; |
|
QCheckBox *mRecursiveCheckBox = nullptr; |
|
KUrlRequester *mPath = nullptr; |
|
QSpinBox *mDays = nullptr; |
|
QSpinBox *mMaximumArchive = nullptr; |
|
|
|
ArchiveMailInfo *mInfo = nullptr; |
|
QPushButton *mOkButton = nullptr; |
|
}; |
|
|
|
#endif // ADDARCHIVEMAILDIALOG_H
|
|
|