2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2007-11-13 18:14:56 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2007 Rivo Laks <rivolaks@hot.ee>
|
2007-11-13 18:14:56 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
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"));
|
2015-08-12 07:19:05 +00:00
|
|
|
actionCollection->setComponentDisplayName(i18n("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);
|
2020-01-24 01:16:41 +00:00
|
|
|
connect(mShortcutEditor, &KShortcutsEditor::keyChange, this, &InvertEffectConfig::markAsChanged);
|
2007-11-13 18:14:56 +00:00
|
|
|
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-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("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"
|