/* KWin - the KDE window manager This file is part of the KDE project. SPDX-FileCopyrightText: 2010 Thomas Lübking SPDX-License-Identifier: GPL-2.0-or-later */ #include "windowgeometry_config.h" // KConfigSkeleton #include "windowgeometryconfig.h" #include #include #include #include #include #include #include #include #include K_PLUGIN_FACTORY_WITH_JSON(WindowGeometryEffectConfigFactory, "windowgeometry_config.json", registerPlugin();) namespace KWin { WindowGeometryConfigForm::WindowGeometryConfigForm(QWidget* parent) : QWidget(parent) { setupUi(this); } WindowGeometryConfig::WindowGeometryConfig(QWidget* parent, const QVariantList& args) : KCModule(parent, args) { WindowGeometryConfiguration::instance(KWIN_CONFIG); QVBoxLayout* layout = new QVBoxLayout(this); layout->addWidget(myUi = new WindowGeometryConfigForm(this)); // Shortcut config. The shortcut belongs to the component "kwin"! myActionCollection = new KActionCollection(this, QStringLiteral("kwin")); myActionCollection->setComponentDisplayName(i18n("KWin")); QAction* a = myActionCollection->addAction(QStringLiteral("WindowGeometry")); a->setText(i18n("Toggle KWin composited geometry display")); a->setProperty("isConfigurationAction", true); KGlobalAccel::self()->setDefaultShortcut(a, QList() << Qt::CTRL + Qt::SHIFT + Qt::Key_F11); KGlobalAccel::self()->setShortcut(a, QList() << Qt::CTRL + Qt::SHIFT + Qt::Key_F11); myUi->shortcuts->addCollection(myActionCollection); connect(myUi->shortcuts, &KShortcutsEditor::keyChange, this, &WindowGeometryConfig::markAsChanged); addConfig(WindowGeometryConfiguration::self(), myUi); load(); } WindowGeometryConfig::~WindowGeometryConfig() { // Undo (only) unsaved changes to global key shortcuts myUi->shortcuts->undo(); } void WindowGeometryConfig::save() { KCModule::save(); myUi->shortcuts->save(); // undo() will restore to this state from now on OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.KWin"), QStringLiteral("/Effects"), QDBusConnection::sessionBus()); interface.reconfigureEffect(QStringLiteral("windowgeometry")); } void WindowGeometryConfig::defaults() { myUi->shortcuts->allDefault(); emit changed(true); } } //namespace #include "windowgeometry_config.moc"