You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.7 KiB
100 lines
3.7 KiB
/* Copyright 2009 <Jan Gerrit Marker> <jangerrit@weiler-marker.com> |
|
* |
|
* This library is free software; you can redistribute it and/or |
|
* modify it under the terms of the GNU Lesser General Public |
|
* License as published by the Free Software Foundation; either |
|
* version 2.1 of the License, or (at your option) version 3, or any |
|
* later version accepted by the membership of KDE e.V. (or its |
|
* successor approved by the membership of KDE e.V.), which shall |
|
* act as a proxy defined in Section 6 of version 3 of the license. |
|
* |
|
* This library is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
* Lesser General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU Lesser General Public |
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>. |
|
*/ |
|
|
|
//Project-Includes |
|
#include "killrunner_config.h" |
|
#include <kconfigwidgets_version.h> |
|
//KDE-Includes |
|
#include <KSharedConfig> |
|
#include <KPluginFactory> |
|
#include <krunner/abstractrunner.h> |
|
|
|
K_PLUGIN_FACTORY(KillRunnerConfigFactory, registerPlugin<KillRunnerConfig>(QStringLiteral("kcm_krunner_kill"));) |
|
|
|
KillRunnerConfigForm::KillRunnerConfigForm(QWidget* parent) : QWidget(parent) |
|
{ |
|
setupUi(this); |
|
} |
|
|
|
KillRunnerConfig::KillRunnerConfig(QWidget* parent, const QVariantList& args) : |
|
KCModule(parent, args) |
|
{ |
|
m_ui = new KillRunnerConfigForm(this); |
|
|
|
QGridLayout* layout = new QGridLayout(this); |
|
layout->addWidget(m_ui, 0, 0); |
|
|
|
m_ui->sorting->addItem(i18n("CPU usage"), CPU); |
|
m_ui->sorting->addItem(i18n("inverted CPU usage"), CPUI); |
|
m_ui->sorting->addItem(i18n("nothing"), NONE); |
|
#if KCONFIGWIDGETS_VERSION < QT_VERSION_CHECK(5, 64, 0) |
|
connect(m_ui->useTriggerWord, &QCheckBox::stateChanged, this, QOverload<>::of(&KillRunnerConfig::changed)); |
|
connect(m_ui->triggerWord, &KLineEdit::textChanged, this, QOverload<>::of(&KillRunnerConfig::changed)); |
|
connect(m_ui->sorting, QOverload<int>::of(&QComboBox::currentIndexChanged), this, QOverload<>::of(&KillRunnerConfig::changed)); |
|
#else |
|
connect(m_ui->useTriggerWord, &QCheckBox::stateChanged, this, &KillRunnerConfig::markAsChanged); |
|
connect(m_ui->triggerWord, &KLineEdit::textChanged, this, &KillRunnerConfig::markAsChanged); |
|
connect(m_ui->sorting, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &KillRunnerConfig::markAsChanged); |
|
#endif |
|
|
|
load(); |
|
} |
|
|
|
void KillRunnerConfig::load() |
|
{ |
|
KCModule::load(); |
|
|
|
KSharedConfig::Ptr cfg = KSharedConfig::openConfig(QStringLiteral("krunnerrc")); |
|
KConfigGroup grp = cfg->group("Runners"); |
|
grp = KConfigGroup(&grp, "Kill Runner"); |
|
|
|
m_ui->useTriggerWord->setChecked(grp.readEntry(CONFIG_USE_TRIGGERWORD,true)); |
|
m_ui->triggerWord->setText(grp.readEntry(CONFIG_TRIGGERWORD,i18n("kill"))); |
|
m_ui->sorting->setCurrentIndex(m_ui->sorting->findData(grp.readEntry<int>(CONFIG_SORTING, static_cast<int>(NONE)))); |
|
|
|
emit changed(false); |
|
} |
|
|
|
void KillRunnerConfig::save() |
|
{ |
|
KCModule::save(); |
|
|
|
KSharedConfig::Ptr cfg = KSharedConfig::openConfig(QStringLiteral("krunnerrc")); |
|
KConfigGroup grp = cfg->group("Runners"); |
|
grp = KConfigGroup(&grp, "Kill Runner"); |
|
|
|
grp.writeEntry(CONFIG_USE_TRIGGERWORD,m_ui->useTriggerWord->isChecked()); |
|
grp.writeEntry(CONFIG_TRIGGERWORD,m_ui->triggerWord->text()); |
|
grp.writeEntry(CONFIG_SORTING,m_ui->sorting->itemData(m_ui->sorting->currentIndex())); |
|
|
|
emit changed(false); |
|
} |
|
|
|
void KillRunnerConfig::defaults() |
|
{ |
|
KCModule::defaults(); |
|
|
|
m_ui->useTriggerWord->setChecked(true); |
|
m_ui->triggerWord->setText(i18n("kill")); |
|
m_ui->sorting->setCurrentIndex(m_ui->sorting->findData((int) NONE)); |
|
|
|
emit changed(true); |
|
} |
|
|
|
#include "killrunner_config.moc"
|
|
|