2008-01-24 10:36:32 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2013-03-12 12:17:53 +00:00
|
|
|
Copyright (C) 2008, 2009 Martin Gräßlin <mgraesslin@kde.org>
|
2008-01-24 10:36:32 +00:00
|
|
|
|
|
|
|
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 "flipswitch_config.h"
|
2012-09-14 12:35:18 +00:00
|
|
|
// KConfigSkeleton
|
|
|
|
#include "flipswitchconfig.h"
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <kwineffects_interface.h>
|
2012-09-14 12:35:18 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
#include <QAction>
|
2008-01-24 10:36:32 +00:00
|
|
|
|
|
|
|
#include <kconfiggroup.h>
|
2009-07-21 10:18:48 +00:00
|
|
|
#include <KActionCollection>
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KAboutData>
|
|
|
|
#include <KGlobalAccel>
|
2014-03-17 13:56:11 +00:00
|
|
|
#include <KLocalizedString>
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <KPluginFactory>
|
2008-01-24 10:36:32 +00:00
|
|
|
|
2008-09-16 07:41:39 +00:00
|
|
|
#include <QVBoxLayout>
|
2008-01-24 10:36:32 +00:00
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON(FlipSwitchEffectConfigFactory,
|
|
|
|
"flipswitch_config.json",
|
|
|
|
registerPlugin<KWin::FlipSwitchEffectConfig>();)
|
|
|
|
|
2008-01-24 10:36:32 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
FlipSwitchEffectConfigForm::FlipSwitchEffectConfigForm(QWidget* parent) : QWidget(parent)
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
setupUi(this);
|
2008-01-24 10:36:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FlipSwitchEffectConfig::FlipSwitchEffectConfig(QWidget* parent, const QVariantList& args) :
|
2013-07-24 05:41:10 +00:00
|
|
|
KCModule(KAboutData::pluginData(QStringLiteral("flipswitch")), parent, args)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-01-24 10:36:32 +00:00
|
|
|
m_ui = new FlipSwitchEffectConfigForm(this);
|
|
|
|
|
2008-09-16 07:41:39 +00:00
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
2008-01-24 10:36:32 +00:00
|
|
|
|
2008-09-16 07:41:39 +00:00
|
|
|
layout->addWidget(m_ui);
|
2008-01-24 10:36:32 +00:00
|
|
|
|
2009-07-21 10:18:48 +00:00
|
|
|
// Shortcut config. The shortcut belongs to the component "kwin"!
|
2013-08-14 19:13:12 +00:00
|
|
|
m_actionCollection = new KActionCollection(this, QStringLiteral("kwin"));
|
|
|
|
QAction* a = m_actionCollection->addAction(QStringLiteral("FlipSwitchCurrent"));
|
2011-01-30 14:34:42 +00:00
|
|
|
a->setText(i18n("Toggle Flip Switch (Current desktop)"));
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>());
|
|
|
|
QAction* b = m_actionCollection->addAction(QStringLiteral("FlipSwitchAll"));
|
2011-01-30 14:34:42 +00:00
|
|
|
b->setText(i18n("Toggle Flip Switch (All desktops)"));
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setShortcut(b, QList<QKeySequence>());
|
2009-07-21 10:18:48 +00:00
|
|
|
|
2013-07-23 05:02:52 +00:00
|
|
|
m_actionCollection->setConfigGroup(QStringLiteral("FlipSwitch"));
|
2011-01-30 14:34:42 +00:00
|
|
|
m_actionCollection->setConfigGlobal(true);
|
2009-07-21 10:18:48 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
m_ui->shortcutEditor->addCollection(m_actionCollection);
|
2009-07-21 10:18:48 +00:00
|
|
|
|
2012-09-14 12:35:18 +00:00
|
|
|
addConfig(FlipSwitchConfig::self(), m_ui);
|
2008-01-24 10:36:32 +00:00
|
|
|
|
|
|
|
load();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2008-01-24 10:36:32 +00:00
|
|
|
|
|
|
|
FlipSwitchEffectConfig::~FlipSwitchEffectConfig()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
}
|
2008-01-24 10:36:32 +00:00
|
|
|
|
|
|
|
void FlipSwitchEffectConfig::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-09-14 12:35:18 +00:00
|
|
|
KCModule::save();
|
2012-10-26 07:46:53 +00:00
|
|
|
m_ui->shortcutEditor->save();
|
2008-01-24 10:36:32 +00:00
|
|
|
|
2014-03-18 15:09:20 +00:00
|
|
|
OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.kwin.Effects"),
|
|
|
|
QStringLiteral("/Effects"),
|
|
|
|
QDBusConnection::sessionBus());
|
2014-04-04 09:49:31 +00:00
|
|
|
interface.reconfigureEffect(QStringLiteral("flipswitch"));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2008-01-24 10:36:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
#include "flipswitch_config.moc"
|