kde-playground/kdepim/pimsettingexporter/utils.h
2015-04-14 21:49:29 +00:00

118 lines
3.1 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 UTILS_H
#define UTILS_H
#include <QString>
#include <KUrl>
#include <KSharedConfig>
#include <QDebug>
class KZip;
namespace Akonadi {
class AgentInstance;
}
struct resourceFiles
{
QString akonadiConfigFile;
QString akonadiResources;
QString akonadiAgentConfigFile;
void debug() const {
qDebug() <<" akonadiconfigfile :"<<akonadiConfigFile<<" akonadiResources:"<<akonadiResources<<" akonadiAgentConfigFile:"<<akonadiAgentConfigFile;
}
};
namespace Utils {
enum StoredType {
None = 0,
Identity = 1,
Mails = 2,
MailTransport = 4,
Resources = 8,
Config = 16,
AkonadiDb = 32,
Data = 64
//TODO add more type to import/export
};
Q_DECLARE_FLAGS(StoredTypes, StoredType)
enum AppsType {
Unknown = 0,
KMail,
KAddressBook,
KAlarm,
KOrganizer,
KJots,
KNotes,
Akregator,
Blogilo,
KNode
};
struct importExportParameters
{
importExportParameters()
: numberSteps(0),
types(None)
{
}
bool isEmpty() const {
return (types == None);
}
int numberSteps;
Utils::StoredTypes types;
};
KUrl resourcePath(KSharedConfigPtr resourceConfig, const QString &defaultPath = QString());
QString transportsPath();
QString resourcesPath();
QString identitiesPath();
QString mailsPath();
QString configsPath();
QString akonadiPath();
QString dataPath();
QString calendarPath();
QString addressbookPath();
QString alarmPath();
QString jotPath();
QString infoPath();
QString notePath();
QString prefixAkonadiConfigFile();
QString akonadiAgentName(KSharedConfig::Ptr config);
void convertCollectionListToRealPath(KConfigGroup &group, const QString &currentKey);
void convertCollectionToRealPath(KConfigGroup &group, const QString &currentKey);
void convertCollectionIdsToRealPath(KConfigGroup &group, const QString &currentKey);
KUrl resourcePath(const Akonadi::AgentInstance &agent, const QString &defaultPath = QString());
KUrl adaptResourcePath(KSharedConfigPtr resourceConfig, const QString &storedData);
QString storeResources(KZip *archive, const QString &identifier, const QString &path);
KUrl akonadiAgentConfigPath(const QString &identifier);
KZip *openZip(const QString &filename, QString &errorMsg);
void addVersion(KZip *archive);
int archiveVersion(KZip *archive);
int currentArchiveVersion();
QString appTypeToI18n(AppsType type);
QString storedTypeToI18n(StoredType type);
}
#endif // UTILS_H