b54e739753
By having it as a simple member variable, we do not need to take care of deleting it manually
101 lines
3.8 KiB
C++
101 lines
3.8 KiB
C++
/**
|
|
* SPDX-FileCopyrightText: 2015 Holger Kaelberer <holger.k@elberer.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include "sendnotifications_config.h"
|
|
#include "notifyingapplicationmodel.h"
|
|
|
|
#include <KCModule>
|
|
#include <KPluginFactory>
|
|
|
|
K_PLUGIN_CLASS(SendNotificationsConfig)
|
|
|
|
SendNotificationsConfig::SendNotificationsConfig(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
|
|
: KdeConnectPluginKcm(parent, data, args)
|
|
, appModel(new NotifyingApplicationModel)
|
|
{
|
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
|
qRegisterMetaTypeStreamOperators<NotifyingApplication>("NotifyingApplication");
|
|
#endif
|
|
|
|
m_ui.setupUi(widget());
|
|
m_ui.appList->setIconSize(QSize(32, 32));
|
|
|
|
m_ui.appList->setModel(appModel);
|
|
|
|
m_ui.appList->horizontalHeader()->setSectionResizeMode(0, QHeaderView::QHeaderView::Fixed);
|
|
m_ui.appList->horizontalHeader()->setSectionResizeMode(1, QHeaderView::QHeaderView::Stretch);
|
|
m_ui.appList->horizontalHeader()->setSectionResizeMode(2, QHeaderView::QHeaderView::Stretch);
|
|
for (int i = 0; i < 3; i++)
|
|
m_ui.appList->resizeColumnToContents(i);
|
|
|
|
connect(m_ui.appList->horizontalHeader(), &QHeaderView::sortIndicatorChanged, m_ui.appList, &QTableView::sortByColumn);
|
|
|
|
connect(m_ui.check_persistent, &QCheckBox::toggled, this, &SendNotificationsConfig::markAsChanged);
|
|
connect(m_ui.spin_urgency, &QSpinBox::editingFinished, this, &SendNotificationsConfig::markAsChanged);
|
|
connect(m_ui.check_body, &QCheckBox::toggled, this, &SendNotificationsConfig::markAsChanged);
|
|
connect(m_ui.check_icons, &QCheckBox::toggled, this, &SendNotificationsConfig::markAsChanged);
|
|
|
|
connect(appModel, &NotifyingApplicationModel::applicationsChanged, this, &SendNotificationsConfig::markAsChanged);
|
|
|
|
connect(config(), &KdeConnectPluginConfig::configChanged, this, &SendNotificationsConfig::loadApplications);
|
|
}
|
|
|
|
void SendNotificationsConfig::defaults()
|
|
{
|
|
KCModule::defaults();
|
|
m_ui.check_persistent->setChecked(false);
|
|
m_ui.spin_urgency->setValue(0);
|
|
m_ui.check_body->setChecked(true);
|
|
m_ui.check_icons->setChecked(true);
|
|
markAsChanged();
|
|
}
|
|
|
|
void SendNotificationsConfig::loadApplications()
|
|
{
|
|
appModel->clearApplications();
|
|
QVariantList list = config()->getList(QStringLiteral("applications"));
|
|
for (const auto &a : list) {
|
|
NotifyingApplication app = a.value<NotifyingApplication>();
|
|
if (!appModel->containsApp(app.name)) {
|
|
appModel->appendApp(app);
|
|
}
|
|
}
|
|
}
|
|
|
|
void SendNotificationsConfig::load()
|
|
{
|
|
KCModule::load();
|
|
bool persistent = config()->getBool(QStringLiteral("generalPersistent"), false);
|
|
m_ui.check_persistent->setChecked(persistent);
|
|
bool body = config()->getBool(QStringLiteral("generalIncludeBody"), true);
|
|
m_ui.check_body->setChecked(body);
|
|
bool icons = config()->getBool(QStringLiteral("generalSynchronizeIcons"), true);
|
|
m_ui.check_icons->setChecked(icons);
|
|
int urgency = config()->getInt(QStringLiteral("generalUrgency"), 0);
|
|
m_ui.spin_urgency->setValue(urgency);
|
|
|
|
loadApplications();
|
|
}
|
|
|
|
void SendNotificationsConfig::save()
|
|
{
|
|
KCModule::save();
|
|
config()->set(QStringLiteral("generalPersistent"), m_ui.check_persistent->isChecked());
|
|
config()->set(QStringLiteral("generalIncludeBody"), m_ui.check_body->isChecked());
|
|
config()->set(QStringLiteral("generalSynchronizeIcons"), m_ui.check_icons->isChecked());
|
|
config()->set(QStringLiteral("generalUrgency"), m_ui.spin_urgency->value());
|
|
|
|
QVariantList list;
|
|
const auto apps = appModel->apps();
|
|
list.reserve(apps.size());
|
|
for (const auto &a : apps) {
|
|
list.append(QVariant::fromValue<NotifyingApplication>(a));
|
|
}
|
|
config()->setList(QStringLiteral("applications"), list);
|
|
}
|
|
|
|
#include "moc_sendnotifications_config.cpp"
|
|
#include "sendnotifications_config.moc"
|