56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2007 Rivo Laks <rivolaks@hot.ee>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "showfps_config.h"
|
|
|
|
// KConfigSkeleton
|
|
#include "showfpsconfig.h"
|
|
#include <config-kwin.h>
|
|
#include <kwineffects_interface.h>
|
|
|
|
#include <KLocalizedString>
|
|
#include <KAboutData>
|
|
#include <KPluginFactory>
|
|
|
|
K_PLUGIN_FACTORY_WITH_JSON(ShowFpsEffectConfigFactory,
|
|
"showfps_config.json",
|
|
registerPlugin<KWin::ShowFpsEffectConfig>();)
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
ShowFpsEffectConfig::ShowFpsEffectConfig(QWidget* parent, const QVariantList& args) :
|
|
KCModule(KAboutData::pluginData(QStringLiteral("showfps")), 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"
|