/* KWin - the KDE window manager This file is part of the KDE project. SPDX-FileCopyrightText: 2007 Rivo Laks SPDX-License-Identifier: GPL-2.0-or-later */ #include "invert_config.h" #include #include #include #include #include #include #include #include #include K_PLUGIN_FACTORY_WITH_JSON(InvertEffectConfigFactory, "invert_config.json", registerPlugin();) namespace KWin { InvertEffectConfig::InvertEffectConfig(QWidget* parent, const QVariantList& args) : KCModule(KAboutData::pluginData(QStringLiteral("invert")), parent, args) { 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")); a->setText(i18n("Toggle Invert Effect")); a->setProperty("isConfigurationAction", true); KGlobalAccel::self()->setDefaultShortcut(a, QList() << Qt::CTRL + Qt::META + Qt::Key_I); KGlobalAccel::self()->setShortcut(a, QList() << Qt::CTRL + Qt::META + Qt::Key_I); QAction* b = actionCollection->addAction(QStringLiteral("InvertWindow")); b->setText(i18n("Toggle Invert Effect on Window")); b->setProperty("isConfigurationAction", true); KGlobalAccel::self()->setDefaultShortcut(b, QList() << Qt::CTRL + Qt::META + Qt::Key_U); KGlobalAccel::self()->setShortcut(b, QList() << Qt::CTRL + Qt::META + Qt::Key_U); mShortcutEditor = new KShortcutsEditor(actionCollection, this, KShortcutsEditor::GlobalAction, KShortcutsEditor::LetterShortcutsDisallowed); connect(mShortcutEditor, &KShortcutsEditor::keyChange, this, &InvertEffectConfig::markAsChanged); layout->addWidget(mShortcutEditor); load(); } InvertEffectConfig::~InvertEffectConfig() { // Undo (only) unsaved changes to global key shortcuts mShortcutEditor->undoChanges(); } void InvertEffectConfig::load() { KCModule::load(); emit changed(false); } void InvertEffectConfig::save() { 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")); } void InvertEffectConfig::defaults() { mShortcutEditor->allDefault(); emit changed(true); } } // namespace #include "invert_config.moc"