2013-02-15 15:47:09 +00:00
|
|
|
/*
|
|
|
|
* KWin - the KDE window manager
|
|
|
|
* This file is part of the KDE project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Martin Gräßlin <mgraesslin@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. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "genericscriptedconfig.h"
|
|
|
|
#include "config-kwin.h"
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KAboutData>
|
|
|
|
#include <KLocalizedString>
|
2013-09-24 10:37:25 +00:00
|
|
|
#include <kconfigloader.h>
|
2013-02-15 15:47:09 +00:00
|
|
|
|
|
|
|
#include <QDBusConnection>
|
|
|
|
#include <QDBusMessage>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QUiLoader>
|
|
|
|
#include <QVBoxLayout>
|
2013-08-03 20:34:24 +00:00
|
|
|
#include <QStandardPaths>
|
2013-02-15 15:47:09 +00:00
|
|
|
|
|
|
|
namespace KWin {
|
|
|
|
|
|
|
|
GenericScriptedConfigFactory::GenericScriptedConfigFactory()
|
|
|
|
: KPluginFactory("kcm_kwin4_genericscripted")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QObject *GenericScriptedConfigFactory::create(const char *iface, QWidget *parentWidget, QObject *parent, const QVariantList &args, const QString &keyword)
|
|
|
|
{
|
|
|
|
Q_UNUSED(iface)
|
|
|
|
Q_UNUSED(parent)
|
2013-07-23 05:02:52 +00:00
|
|
|
if (keyword.startsWith(QStringLiteral("kwin4_effect_"))) {
|
2013-07-23 09:30:52 +00:00
|
|
|
return new ScriptedEffectConfig(componentName(), keyword, parentWidget, args);
|
2013-02-15 15:47:09 +00:00
|
|
|
} else {
|
2013-07-23 09:30:52 +00:00
|
|
|
return new ScriptingConfig(componentName(), keyword, parentWidget, args);
|
2013-02-15 15:47:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-23 09:30:52 +00:00
|
|
|
GenericScriptedConfig::GenericScriptedConfig(const QString &componentName, const QString &keyword, QWidget *parent, const QVariantList &args)
|
|
|
|
: KCModule(KAboutData::pluginData(componentName), parent, args)
|
2013-02-15 15:47:09 +00:00
|
|
|
, m_packageName(keyword)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GenericScriptedConfig::~GenericScriptedConfig()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void GenericScriptedConfig::createUi()
|
|
|
|
{
|
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
|
|
|
|
2013-08-03 20:34:24 +00:00
|
|
|
const QString kconfigXTFile = QStandardPaths::locate(QStandardPaths::GenericDataLocation,
|
2013-07-23 05:02:52 +00:00
|
|
|
QStringLiteral(KWIN_NAME) +
|
|
|
|
QStringLiteral("/") +
|
|
|
|
typeName() +
|
|
|
|
QStringLiteral("/") +
|
|
|
|
m_packageName +
|
|
|
|
QStringLiteral("/contents/config/main.xml"));
|
2013-08-03 20:34:24 +00:00
|
|
|
const QString uiPath = QStandardPaths::locate(QStandardPaths::GenericDataLocation,
|
2013-07-23 05:02:52 +00:00
|
|
|
QStringLiteral(KWIN_NAME) +
|
|
|
|
QStringLiteral("/") +
|
|
|
|
typeName() +
|
|
|
|
QStringLiteral("/") +
|
|
|
|
m_packageName +
|
|
|
|
QStringLiteral("/contents/ui/config.ui"));
|
2013-02-15 15:47:09 +00:00
|
|
|
if (kconfigXTFile.isEmpty() || uiPath.isEmpty()) {
|
2013-03-04 09:34:16 +00:00
|
|
|
layout->addWidget(new QLabel(i18nc("Error message", "Plugin does not provide configuration file in expected location")));
|
2013-02-15 15:47:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
QFile xmlFile(kconfigXTFile);
|
|
|
|
KConfigGroup cg = configGroup();
|
2013-09-24 10:37:25 +00:00
|
|
|
KConfigLoader *configLoader = new KConfigLoader(cg, &xmlFile, this);
|
2013-02-15 15:47:09 +00:00
|
|
|
// load the ui file
|
|
|
|
QUiLoader *loader = new QUiLoader(this);
|
|
|
|
QFile uiFile(uiPath);
|
|
|
|
uiFile.open(QFile::ReadOnly);
|
|
|
|
QWidget *customConfigForm = loader->load(&uiFile, this);
|
|
|
|
uiFile.close();
|
|
|
|
layout->addWidget(customConfigForm);
|
|
|
|
addConfig(configLoader, customConfigForm);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GenericScriptedConfig::save()
|
|
|
|
{
|
|
|
|
KCModule::save();
|
|
|
|
reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GenericScriptedConfig::reload()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-23 09:30:52 +00:00
|
|
|
ScriptedEffectConfig::ScriptedEffectConfig(const QString &componentName, const QString &keyword, QWidget *parent, const QVariantList &args)
|
|
|
|
: GenericScriptedConfig(componentName, keyword, parent, args)
|
2013-02-15 15:47:09 +00:00
|
|
|
{
|
|
|
|
createUi();
|
|
|
|
}
|
|
|
|
|
|
|
|
ScriptedEffectConfig::~ScriptedEffectConfig()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ScriptedEffectConfig::typeName() const
|
|
|
|
{
|
2013-07-23 05:02:52 +00:00
|
|
|
return QStringLiteral("effects");
|
2013-02-15 15:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
KConfigGroup ScriptedEffectConfig::configGroup()
|
|
|
|
{
|
2013-07-23 05:02:52 +00:00
|
|
|
return KSharedConfig::openConfig(QStringLiteral(KWIN_CONFIG))->group(QStringLiteral("Effect-") + packageName());
|
2013-02-15 15:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptedEffectConfig::reload()
|
|
|
|
{
|
2013-07-23 05:02:52 +00:00
|
|
|
QDBusMessage message = QDBusMessage::createMethodCall(QStringLiteral("org.kde.kwin"),
|
|
|
|
QStringLiteral("/KWin"),
|
|
|
|
QStringLiteral("org.kde.KWin"),
|
|
|
|
QStringLiteral("reconfigureEffect"));
|
2013-02-15 15:47:09 +00:00
|
|
|
message << QString(packageName());
|
|
|
|
QDBusConnection::sessionBus().send(message);
|
|
|
|
}
|
|
|
|
|
2013-07-23 09:30:52 +00:00
|
|
|
ScriptingConfig::ScriptingConfig(const QString &componentName, const QString &keyword, QWidget *parent, const QVariantList &args)
|
|
|
|
: GenericScriptedConfig(componentName, keyword, parent, args)
|
2013-02-15 15:47:09 +00:00
|
|
|
{
|
|
|
|
createUi();
|
|
|
|
}
|
|
|
|
|
|
|
|
ScriptingConfig::~ScriptingConfig()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
KConfigGroup ScriptingConfig::configGroup()
|
|
|
|
{
|
2013-07-23 05:02:52 +00:00
|
|
|
return KSharedConfig::openConfig(QStringLiteral(KWIN_CONFIG))->group(QStringLiteral("Script-") + packageName());
|
2013-02-15 15:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString ScriptingConfig::typeName() const
|
|
|
|
{
|
2013-07-23 05:02:52 +00:00
|
|
|
return QStringLiteral("scripts");
|
2013-02-15 15:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptingConfig::reload()
|
|
|
|
{
|
|
|
|
// TODO: what to call
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace
|