/* 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 "showfps_config.h" // KConfigSkeleton #include "showfpsconfig.h" #include #include #include #include #include K_PLUGIN_FACTORY_WITH_JSON(ShowFpsEffectConfigFactory, "showfps_config.json", registerPlugin();) namespace KWin { ShowFpsEffectConfig::ShowFpsEffectConfig(QWidget* parent, const QVariantList& args) : KCModule(parent, args) { m_ui = new Ui::ShowFpsEffectConfigForm; m_ui->setupUi(this); ShowFpsConfig::instance(KWIN_CONFIG); addConfig(ShowFpsConfig::self(), this); load(); } ShowFpsEffectConfig::~ShowFpsEffectConfig() { delete m_ui; } void ShowFpsEffectConfig::save() { KCModule::save(); OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.KWin"), QStringLiteral("/Effects"), QDBusConnection::sessionBus()); interface.reconfigureEffect(QStringLiteral("showfps")); } } // namespace #include "showfps_config.moc"