/******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2008, 2009 Martin Gräßlin 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 . *********************************************************************/ #include "flipswitch_config.h" // KConfigSkeleton #include "flipswitchconfig.h" #include #include #include #include #include #include #include #include #include #include K_PLUGIN_FACTORY_WITH_JSON(FlipSwitchEffectConfigFactory, "flipswitch_config.json", registerPlugin();) namespace KWin { FlipSwitchEffectConfigForm::FlipSwitchEffectConfigForm(QWidget* parent) : QWidget(parent) { setupUi(this); } FlipSwitchEffectConfig::FlipSwitchEffectConfig(QWidget* parent, const QVariantList& args) : KCModule(KAboutData::pluginData(QStringLiteral("flipswitch")), parent, args) { m_ui = new FlipSwitchEffectConfigForm(this); QVBoxLayout* layout = new QVBoxLayout(this); layout->addWidget(m_ui); // Shortcut config. The shortcut belongs to the component "kwin"! m_actionCollection = new KActionCollection(this, QStringLiteral("kwin")); QAction* a = m_actionCollection->addAction(QStringLiteral("FlipSwitchCurrent")); a->setText(i18n("Toggle Flip Switch (Current desktop)")); KGlobalAccel::self()->setShortcut(a, QList()); QAction* b = m_actionCollection->addAction(QStringLiteral("FlipSwitchAll")); b->setText(i18n("Toggle Flip Switch (All desktops)")); KGlobalAccel::self()->setShortcut(b, QList()); m_actionCollection->setComponentDisplayName(i18n("KWin")); m_actionCollection->setConfigGroup(QStringLiteral("FlipSwitch")); m_actionCollection->setConfigGlobal(true); m_ui->shortcutEditor->addCollection(m_actionCollection); FlipSwitchConfig::instance(KWIN_CONFIG); addConfig(FlipSwitchConfig::self(), m_ui); load(); } FlipSwitchEffectConfig::~FlipSwitchEffectConfig() { } void FlipSwitchEffectConfig::save() { KCModule::save(); m_ui->shortcutEditor->save(); OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.KWin"), QStringLiteral("/Effects"), QDBusConnection::sessionBus()); interface.reconfigureEffect(QStringLiteral("flipswitch")); } } // namespace #include "flipswitch_config.moc"