/* KWin - the KDE window manager This file is part of the KDE project. SPDX-FileCopyrightText: 2007 Christian Nitschkowski SPDX-License-Identifier: GPL-2.0-or-later */ #include "magnifier_config.h" #include "config-kwin.h" // KConfigSkeleton #include "magnifierconfig.h" #include #include #include #include #include #include #include #include #include #include K_PLUGIN_CLASS(KWin::MagnifierEffectConfig) namespace KWin { MagnifierEffectConfig::MagnifierEffectConfig(QObject *parent, const KPluginMetaData &data) : KCModule(parent, data) { m_ui.setupUi(widget()); MagnifierConfig::instance(KWIN_CONFIG); addConfig(MagnifierConfig::self(), widget()); connect(m_ui.editor, &KShortcutsEditor::keyChange, this, &KCModule::markAsChanged); // Shortcut config. The shortcut belongs to the component "kwin"! m_actionCollection = new KActionCollection(this, QStringLiteral("kwin")); m_actionCollection->setComponentDisplayName(i18n("KWin")); m_actionCollection->setConfigGroup(QStringLiteral("Magnifier")); m_actionCollection->setConfigGlobal(true); QAction *a; a = m_actionCollection->addAction(KStandardActions::ZoomIn); a->setProperty("isConfigurationAction", true); KGlobalAccel::self()->setDefaultShortcut(a, QList() << (Qt::META | Qt::Key_Plus) << (Qt::META | Qt::Key_Equal)); KGlobalAccel::self()->setShortcut(a, QList() << (Qt::META | Qt::Key_Plus) << (Qt::META | Qt::Key_Equal)); a = m_actionCollection->addAction(KStandardActions::ZoomOut); a->setProperty("isConfigurationAction", true); KGlobalAccel::self()->setDefaultShortcut(a, QList() << (Qt::META | Qt::Key_Minus)); KGlobalAccel::self()->setShortcut(a, QList() << (Qt::META | Qt::Key_Minus)); a = m_actionCollection->addAction(KStandardActions::ActualSize); a->setProperty("isConfigurationAction", true); KGlobalAccel::self()->setDefaultShortcut(a, QList() << (Qt::META | Qt::Key_0)); KGlobalAccel::self()->setShortcut(a, QList() << (Qt::META | Qt::Key_0)); m_ui.editor->addCollection(m_actionCollection); } void MagnifierEffectConfig::save() { qDebug() << "Saving config of Magnifier"; m_ui.editor->save(); // undo() will restore to this state from now on KCModule::save(); OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.KWin"), QStringLiteral("/Effects"), QDBusConnection::sessionBus()); interface.reconfigureEffect(QStringLiteral("magnifier")); } void MagnifierEffectConfig::defaults() { m_ui.editor->allDefault(); KCModule::defaults(); } } // namespace #include "magnifier_config.moc" #include "moc_magnifier_config.cpp"