kwin/effects/invert/invert_config.cpp

97 lines
3 KiB
C++
Raw Normal View History

2020-08-02 22:22:19 +00:00
/*
KWin - the KDE window manager
This file is part of the KDE project.
2020-08-02 22:22:19 +00:00
SPDX-FileCopyrightText: 2007 Rivo Laks <rivolaks@hot.ee>
2020-08-02 22:22:19 +00:00
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "invert_config.h"
#include <kwineffects_interface.h>
#include <QAction>
#include <KGlobalAccel>
#include <KLocalizedString>
#include <KActionCollection>
#include <KShortcutsEditor>
#include <KAboutData>
#include <KPluginFactory>
#include <QVBoxLayout>
K_PLUGIN_FACTORY_WITH_JSON(InvertEffectConfigFactory,
"invert_config.json",
registerPlugin<KWin::InvertEffectConfig>();)
namespace KWin
{
InvertEffectConfig::InvertEffectConfig(QWidget* parent, const QVariantList& args) :
KCModule(KAboutData::pluginData(QStringLiteral("invert")), parent, args)
2011-01-30 14:34:42 +00:00
{
QVBoxLayout* layout = new QVBoxLayout(this);
// Shortcut config. The shortcut belongs to the component "kwin"!
KActionCollection *actionCollection = new KActionCollection(this, QStringLiteral("kwin"));
actionCollection->setComponentDisplayName(i18n("KWin"));
QAction* a = actionCollection->addAction(QStringLiteral("Invert"));
2011-01-30 14:34:42 +00:00
a->setText(i18n("Toggle Invert Effect"));
a->setProperty("isConfigurationAction", true);
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);
QAction* b = actionCollection->addAction(QStringLiteral("InvertWindow"));
2011-01-30 14:34:42 +00:00
b->setText(i18n("Toggle Invert Effect on Window"));
b->setProperty("isConfigurationAction", true);
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);
mShortcutEditor = new KShortcutsEditor(actionCollection, this,
2011-01-30 14:34:42 +00:00
KShortcutsEditor::GlobalAction, KShortcutsEditor::LetterShortcutsDisallowed);
connect(mShortcutEditor, &KShortcutsEditor::keyChange, this, &InvertEffectConfig::markAsChanged);
layout->addWidget(mShortcutEditor);
load();
2011-01-30 14:34:42 +00:00
}
InvertEffectConfig::~InvertEffectConfig()
2011-01-30 14:34:42 +00:00
{
// Undo (only) unsaved changes to global key shortcuts
mShortcutEditor->undoChanges();
2011-01-30 14:34:42 +00:00
}
void InvertEffectConfig::load()
2011-01-30 14:34:42 +00:00
{
KCModule::load();
emit changed(false);
2011-01-30 14:34:42 +00:00
}
void InvertEffectConfig::save()
2011-01-30 14:34:42 +00:00
{
KCModule::save();
mShortcutEditor->save(); // undo() will restore to this state from now on
emit changed(false);
OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.KWin"),
QStringLiteral("/Effects"),
QDBusConnection::sessionBus());
interface.reconfigureEffect(QStringLiteral("invert"));
2011-01-30 14:34:42 +00:00
}
void InvertEffectConfig::defaults()
2011-01-30 14:34:42 +00:00
{
mShortcutEditor->allDefault();
emit changed(true);
2011-01-30 14:34:42 +00:00
}
} // namespace
#include "invert_config.moc"