93e0265e4e
Once in a while, we receive complaints from other fellow KDE developers about the file organization of kwin. This change addresses some of those complaints by moving all of source code in a separate directory, src/, thus making the project structure more traditional. Things such as tests are kept in their own toplevel directories. This change may wreak havoc on merge requests that add new files to kwin, but if a patch modifies an already existing file, git should be smart enough to figure out that the file has been relocated. We may potentially split the src/ directory further to make navigating the source code easier, but hopefully this is good enough already.
97 lines
2.5 KiB
C++
97 lines
2.5 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2020 Henri Chain <henri.chain@enioka.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "rulebooksettings.h"
|
|
#include "rulesettings.h"
|
|
|
|
namespace KWin
|
|
{
|
|
RuleBookSettings::RuleBookSettings(KSharedConfig::Ptr config, QObject *parent)
|
|
: RuleBookSettingsBase(config, parent)
|
|
{
|
|
for (int i = 1; i <= count(); i++) {
|
|
m_list.append(new RuleSettings(config, QString::number(i), this));
|
|
}
|
|
}
|
|
|
|
RuleBookSettings::RuleBookSettings(const QString &configname, KConfig::OpenFlags flags, QObject *parent)
|
|
: RuleBookSettings(KSharedConfig::openConfig(configname, flags), parent)
|
|
{
|
|
}
|
|
|
|
RuleBookSettings::RuleBookSettings(KConfig::OpenFlags flags, QObject *parent)
|
|
: RuleBookSettings(QStringLiteral("kwinrulesrc"), flags, parent)
|
|
{
|
|
}
|
|
|
|
RuleBookSettings::RuleBookSettings(QObject *parent)
|
|
: RuleBookSettings(KConfig::FullConfig, parent)
|
|
{
|
|
}
|
|
|
|
void RuleBookSettings::setRules(const QVector<Rules *> &rules)
|
|
{
|
|
int i = 1;
|
|
const int list_length = m_list.length();
|
|
for (const auto &rule : rules) {
|
|
RuleSettings *settings;
|
|
if (i <= list_length) {
|
|
settings = m_list[i - 1];
|
|
settings->setDefaults();
|
|
} else {
|
|
// If there are more rules than in cache
|
|
settings = new RuleSettings(this->sharedConfig(), QString::number(i), this);
|
|
m_list.append(settings);
|
|
}
|
|
rule->write(settings);
|
|
i++;
|
|
}
|
|
|
|
setCount(rules.length());
|
|
}
|
|
|
|
QVector<Rules *> RuleBookSettings::rules()
|
|
{
|
|
QVector<Rules *> result;
|
|
result.reserve(mCount);
|
|
// mCount is always <= m_list.length()
|
|
for (int i = 0; i < mCount; i++) {
|
|
result.append(new Rules(m_list[i]));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
bool RuleBookSettings::usrSave()
|
|
{
|
|
bool result = true;
|
|
for (const auto &settings : qAsConst(m_list)) {
|
|
result &= settings->save();
|
|
}
|
|
int nRuleGroups = sharedConfig()->groupList().length() - 1;
|
|
// Remove any extra groups currently in config
|
|
for (int i = mCount + 1; i <= nRuleGroups; i++) {
|
|
sharedConfig()->deleteGroup(QString::number(i));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void RuleBookSettings::usrRead()
|
|
{
|
|
const int list_length = m_list.length();
|
|
for (int i = 1; i <= mCount; i++) {
|
|
if (i <= list_length) {
|
|
m_list[i - 1]->load();
|
|
} else {
|
|
// If there are more groups than in cache
|
|
m_list.append(new RuleSettings(sharedConfig(), QString::number(i), this));
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|