mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
95 lines
2.7 KiB
C++
95 lines
2.7 KiB
C++
/*
|
|
Copyright (c) 2012-2013 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, version 2, as
|
|
published by the Free Software Foundation.
|
|
|
|
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; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
#ifndef ARCHIVEMAILINFO_H
|
|
#define ARCHIVEMAILINFO_H
|
|
|
|
#include "mailcommon/job/backupjob.h"
|
|
#include <KConfigGroup>
|
|
#include <Akonadi/Collection>
|
|
#include <KUrl>
|
|
#include <QDate>
|
|
|
|
|
|
class ArchiveMailInfo
|
|
{
|
|
public:
|
|
explicit ArchiveMailInfo();
|
|
explicit ArchiveMailInfo(const KConfigGroup &config);
|
|
ArchiveMailInfo(const ArchiveMailInfo &info);
|
|
~ArchiveMailInfo();
|
|
|
|
ArchiveMailInfo& operator=( const ArchiveMailInfo &old );
|
|
|
|
enum ArchiveUnit {
|
|
ArchiveDays = 0,
|
|
ArchiveWeeks,
|
|
ArchiveMonths,
|
|
ArchiveYears
|
|
};
|
|
|
|
KUrl realUrl(const QString &folderName, bool &dirExist) const;
|
|
|
|
bool isValid() const;
|
|
|
|
Akonadi::Collection::Id saveCollectionId() const;
|
|
void setSaveCollectionId(Akonadi::Collection::Id collectionId);
|
|
|
|
void setSaveSubCollection(bool b);
|
|
bool saveSubCollection() const;
|
|
|
|
void setUrl(const KUrl& url);
|
|
KUrl url() const;
|
|
|
|
void readConfig(const KConfigGroup &config);
|
|
void writeConfig(KConfigGroup &config );
|
|
|
|
void setArchiveType( MailCommon::BackupJob::ArchiveType type );
|
|
MailCommon::BackupJob::ArchiveType archiveType() const;
|
|
|
|
void setArchiveUnit( ArchiveMailInfo::ArchiveUnit unit );
|
|
ArchiveMailInfo::ArchiveUnit archiveUnit() const;
|
|
|
|
void setArchiveAge( int age );
|
|
int archiveAge() const;
|
|
|
|
void setLastDateSaved( const QDate &date );
|
|
QDate lastDateSaved() const;
|
|
|
|
int maximumArchiveCount() const;
|
|
void setMaximumArchiveCount( int max );
|
|
|
|
QStringList listOfArchive(const QString &foldername, bool &dirExist) const;
|
|
|
|
bool isEnabled() const;
|
|
void setEnabled(bool b);
|
|
|
|
bool operator ==(const ArchiveMailInfo &other) const;
|
|
|
|
private:
|
|
QString dirArchive(bool &dirExit) const;
|
|
QDate mLastDateSaved;
|
|
int mArchiveAge;
|
|
MailCommon::BackupJob::ArchiveType mArchiveType;
|
|
ArchiveUnit mArchiveUnit;
|
|
Akonadi::Collection::Id mSaveCollectionId;
|
|
KUrl mPath;
|
|
int mMaximumArchiveCount;
|
|
bool mSaveSubCollection;
|
|
bool mIsEnabled;
|
|
};
|
|
|
|
#endif // ARCHIVEMAILINFO_H
|