2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2009-02-06 18:53:16 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2009 Martin Gräßlin <mgraesslin@kde.org>
|
2009-02-06 18:53:16 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2009-02-06 18:53:16 +00:00
|
|
|
#include "cubeslide_config.h"
|
2012-09-12 16:39:13 +00:00
|
|
|
// KConfigSkeleton
|
|
|
|
#include "cubeslideconfig.h"
|
2016-12-02 19:27:43 +00:00
|
|
|
#include <config-kwin.h>
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <kwineffects_interface.h>
|
2009-02-06 18:53:16 +00:00
|
|
|
|
|
|
|
#include <kconfiggroup.h>
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KAboutData>
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <KPluginFactory>
|
2009-02-06 18:53:16 +00:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON(CubeSlideEffectConfigFactory,
|
|
|
|
"cubeslide_config.json",
|
|
|
|
registerPlugin<KWin::CubeSlideEffectConfig>();)
|
|
|
|
|
2009-02-06 18:53:16 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
CubeSlideEffectConfigForm::CubeSlideEffectConfigForm(QWidget* parent) : QWidget(parent)
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
setupUi(this);
|
2009-02-06 18:53:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CubeSlideEffectConfig::CubeSlideEffectConfig(QWidget* parent, const QVariantList& args) :
|
2020-10-21 17:03:07 +00:00
|
|
|
KCModule(parent, args)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2009-02-06 18:53:16 +00:00
|
|
|
m_ui = new CubeSlideEffectConfigForm(this);
|
|
|
|
|
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
|
|
|
|
|
|
|
layout->addWidget(m_ui);
|
|
|
|
|
2016-12-02 19:27:43 +00:00
|
|
|
CubeSlideConfig::instance(KWIN_CONFIG);
|
2012-09-12 16:39:13 +00:00
|
|
|
addConfig(CubeSlideConfig::self(), m_ui);
|
2009-02-06 18:53:16 +00:00
|
|
|
|
|
|
|
load();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-02-06 18:53:16 +00:00
|
|
|
|
|
|
|
void CubeSlideEffectConfig::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-09-12 16:39:13 +00:00
|
|
|
KCModule::save();
|
2014-05-15 06:39:42 +00:00
|
|
|
OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.KWin"),
|
2014-03-18 15:09:20 +00:00
|
|
|
QStringLiteral("/Effects"),
|
|
|
|
QDBusConnection::sessionBus());
|
2014-04-04 09:49:31 +00:00
|
|
|
interface.reconfigureEffect(QStringLiteral("cubeslide"));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-02-06 18:53:16 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
#include "cubeslide_config.moc"
|