2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-11-13 18:14:56 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Rivo Laks <rivolaks@hot.ee>
|
|
|
|
|
2007-11-27 19:40:25 +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/>.
|
|
|
|
*********************************************************************/
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
#include "invert_config.h"
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <kwineffects_interface.h>
|
2007-11-13 18:14:56 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
#include <QAction>
|
2007-11-13 18:14:56 +00:00
|
|
|
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KGlobalAccel>
|
|
|
|
#include <KLocalizedString>
|
2007-11-13 18:14:56 +00:00
|
|
|
#include <KActionCollection>
|
|
|
|
#include <KShortcutsEditor>
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KAboutData>
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <KPluginFactory>
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
#include <QVBoxLayout>
|
2009-02-05 15:35:38 +00:00
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON(InvertEffectConfigFactory,
|
|
|
|
"invert_config.json",
|
|
|
|
registerPlugin<KWin::InvertEffectConfig>();)
|
|
|
|
|
2007-11-13 18:14:56 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
InvertEffectConfig::InvertEffectConfig(QWidget* parent, const QVariantList& args) :
|
2013-07-24 05:41:10 +00:00
|
|
|
KCModule(KAboutData::pluginData(QStringLiteral("invert")), parent, args)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-11-13 18:14:56 +00:00
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
2009-02-11 00:34:09 +00:00
|
|
|
|
|
|
|
// Shortcut config. The shortcut belongs to the component "kwin"!
|
2013-08-14 19:13:12 +00:00
|
|
|
KActionCollection *actionCollection = new KActionCollection(this, QStringLiteral("kwin"));
|
2008-08-27 12:20:34 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
QAction* a = actionCollection->addAction(QStringLiteral("Invert"));
|
2011-01-30 14:34:42 +00:00
|
|
|
a->setText(i18n("Toggle Invert Effect"));
|
2008-05-25 20:31:33 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::CTRL + Qt::META + Qt::Key_I);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::CTRL + Qt::META + Qt::Key_I);
|
2007-11-13 18:14:56 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
QAction* b = actionCollection->addAction(QStringLiteral("InvertWindow"));
|
2011-01-30 14:34:42 +00:00
|
|
|
b->setText(i18n("Toggle Invert Effect on Window"));
|
2008-08-27 12:20:34 +00:00
|
|
|
b->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(b, QList<QKeySequence>() << Qt::CTRL + Qt::META + Qt::Key_U);
|
|
|
|
KGlobalAccel::self()->setShortcut(b, QList<QKeySequence>() << Qt::CTRL + Qt::META + Qt::Key_U);
|
2008-08-27 12:20:34 +00:00
|
|
|
|
2007-11-13 18:14:56 +00:00
|
|
|
mShortcutEditor = new KShortcutsEditor(actionCollection, this,
|
2011-01-30 14:34:42 +00:00
|
|
|
KShortcutsEditor::GlobalAction, KShortcutsEditor::LetterShortcutsDisallowed);
|
2007-11-13 18:14:56 +00:00
|
|
|
connect(mShortcutEditor, SIGNAL(keyChange()), this, SLOT(changed()));
|
|
|
|
layout->addWidget(mShortcutEditor);
|
|
|
|
|
|
|
|
load();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
InvertEffectConfig::~InvertEffectConfig()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-05-25 20:31:33 +00:00
|
|
|
// Undo (only) unsaved changes to global key shortcuts
|
|
|
|
mShortcutEditor->undoChanges();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
void InvertEffectConfig::load()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-11-13 18:14:56 +00:00
|
|
|
KCModule::load();
|
|
|
|
|
|
|
|
emit changed(false);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
void InvertEffectConfig::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-11-13 18:14:56 +00:00
|
|
|
KCModule::save();
|
|
|
|
|
2008-05-25 20:31:33 +00:00
|
|
|
mShortcutEditor->save(); // undo() will restore to this state from now on
|
|
|
|
|
2007-11-13 18:14:56 +00:00
|
|
|
emit changed(false);
|
2014-03-18 15:09:20 +00:00
|
|
|
OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.kwin.Effects"),
|
|
|
|
QStringLiteral("/Effects"),
|
|
|
|
QDBusConnection::sessionBus());
|
|
|
|
interface.reconfigureEffect(QStringLiteral("kwin4_effect_invert"));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
void InvertEffectConfig::defaults()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-11-13 18:14:56 +00:00
|
|
|
mShortcutEditor->allDefault();
|
2013-08-14 19:13:12 +00:00
|
|
|
|
2007-11-13 18:14:56 +00:00
|
|
|
emit changed(true);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
#include "invert_config.moc"
|