mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
99 lines
3.1 KiB
C++
99 lines
3.1 KiB
C++
/*
|
|
Copyright (c) 2013, 2014 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
|
|
*/
|
|
|
|
#include "themesession.h"
|
|
|
|
#include <KConfig>
|
|
#include <KConfigGroup>
|
|
#include <KDebug>
|
|
#include <KMessageBox>
|
|
#include <KLocalizedString>
|
|
|
|
#include <QDir>
|
|
|
|
using namespace GrantleeThemeEditor;
|
|
|
|
ThemeSession::ThemeSession(const QString &projectDirectory, const QString &themeTypeName)
|
|
: mProjectDirectory(projectDirectory),
|
|
mThemeTypeName(themeTypeName),
|
|
mVersion(1)
|
|
{
|
|
}
|
|
|
|
ThemeSession::~ThemeSession()
|
|
{
|
|
}
|
|
|
|
QString ThemeSession::projectDirectory() const
|
|
{
|
|
return mProjectDirectory;
|
|
}
|
|
|
|
void ThemeSession::addExtraPage(const QString &filename)
|
|
{
|
|
mExtraPage.append(filename);
|
|
}
|
|
|
|
QStringList ThemeSession::extraPages() const
|
|
{
|
|
return mExtraPage;
|
|
}
|
|
|
|
void ThemeSession::setMainPageFileName(const QString &filename)
|
|
{
|
|
mMainPageFileName = filename;
|
|
}
|
|
|
|
QString ThemeSession::mainPageFileName() const
|
|
{
|
|
return mMainPageFileName;
|
|
}
|
|
|
|
bool ThemeSession::loadSession(const QString &session)
|
|
{
|
|
KConfig config(session);
|
|
if (config.hasGroup(QLatin1String("Global"))) {
|
|
KConfigGroup global = config.group(QLatin1String("Global"));
|
|
const int version = global.readEntry(QLatin1String("version"), 0);
|
|
if (version >= mVersion) {
|
|
if (global.readEntry(QLatin1String("themeTypeName")) != mThemeTypeName) {
|
|
KMessageBox::error(0, i18n("Error during theme loading"), i18n("You are trying to load a theme which cannot be read by this application"));
|
|
return false;
|
|
}
|
|
}
|
|
mProjectDirectory = global.readEntry("path", QString());
|
|
mMainPageFileName = global.readEntry(QLatin1String("mainPageName"), QString());
|
|
mExtraPage = global.readEntry(QLatin1String("extraPagesName"), QStringList());
|
|
return true;
|
|
} else {
|
|
kDebug()<<QString::fromLatin1("\"%1\" is not a session file").arg(session);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void ThemeSession::writeSession(const QString &directory)
|
|
{
|
|
QString themeDirectory = (directory.isEmpty() ? mProjectDirectory : directory);
|
|
KConfig config(themeDirectory + QDir::separator() + QLatin1String("theme.themerc"));
|
|
KConfigGroup global = config.group(QLatin1String("Global"));
|
|
global.writeEntry(QLatin1String("path"), themeDirectory);
|
|
global.writeEntry(QLatin1String("mainPageName"), mMainPageFileName);
|
|
global.writeEntry(QLatin1String("extraPagesName"), mExtraPage);
|
|
global.writeEntry(QLatin1String("themeTypeName"), mThemeTypeName);
|
|
global.writeEntry(QLatin1String("version"), mVersion);
|
|
config.sync();
|
|
}
|