2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2008-02-21 13:20:22 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2008 Martin Gräßlin <mgraesslin@kde.org>
|
2008-02-21 13:20:22 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2008-02-21 13:20:22 +00:00
|
|
|
#include "coverswitch_config.h"
|
2012-09-19 15:59:11 +00:00
|
|
|
// KConfigSkeleton
|
|
|
|
#include "coverswitchconfig.h"
|
2016-12-02 19:27:43 +00:00
|
|
|
#include <config-kwin.h>
|
2008-02-21 13:20:22 +00:00
|
|
|
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <kwineffects_interface.h>
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KAboutData>
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <KPluginFactory>
|
2008-02-21 13:20:22 +00:00
|
|
|
|
2008-09-16 07:41:39 +00:00
|
|
|
#include <QVBoxLayout>
|
2008-02-21 13:20:22 +00:00
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON(CoverSwitchEffectConfigFactory,
|
|
|
|
"coverswitch_config.json",
|
|
|
|
registerPlugin<KWin::CoverSwitchEffectConfig>();)
|
|
|
|
|
2008-02-21 13:20:22 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
CoverSwitchEffectConfigForm::CoverSwitchEffectConfigForm(QWidget* parent) : QWidget(parent)
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
setupUi(this);
|
2008-02-21 13:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CoverSwitchEffectConfig::CoverSwitchEffectConfig(QWidget* parent, const QVariantList& args) :
|
2013-07-24 05:41:10 +00:00
|
|
|
KCModule(KAboutData::pluginData(QStringLiteral("coverswitch")), parent, args)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-02-21 13:20:22 +00:00
|
|
|
m_ui = new CoverSwitchEffectConfigForm(this);
|
|
|
|
|
2008-09-16 07:41:39 +00:00
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
2008-02-21 13:20:22 +00:00
|
|
|
|
2008-09-16 07:41:39 +00:00
|
|
|
layout->addWidget(m_ui);
|
2008-02-21 13:20:22 +00:00
|
|
|
|
2016-12-02 19:27:43 +00:00
|
|
|
CoverSwitchConfig::instance(KWIN_CONFIG);
|
2012-09-19 15:59:11 +00:00
|
|
|
addConfig(CoverSwitchConfig::self(), m_ui);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2008-02-21 13:20:22 +00:00
|
|
|
|
|
|
|
void CoverSwitchEffectConfig::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-09-19 15:59:11 +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("coverswitch"));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2008-02-21 13:20:22 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
#include "coverswitch_config.moc"
|