kwin/src/rulebooksettings.h

55 lines
1.3 KiB
C
Raw Normal View History

2020-08-02 22:22:19 +00:00
/*
KWin - the KDE window manager
This file is part of the KDE project.
2020-08-02 22:22:19 +00:00
SPDX-FileCopyrightText: 2020 Henri Chain <henri.chain@enioka.com>
SPDX-FileCopyrightText: 2021 Ismael Asensio <isma.af@gmail.com>
2020-08-02 22:22:19 +00:00
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef RULEBOOKSETTINGS_H
#define RULEBOOKSETTINGS_H
#include "rulebooksettingsbase.h"
#include <KSharedConfig>
namespace KWin
{
class Rules;
class RuleSettings;
class RuleBookSettings : public RuleBookSettingsBase
{
public:
RuleBookSettings(KSharedConfig::Ptr config, QObject *parent = nullptr);
RuleBookSettings(const QString &configname, KConfig::OpenFlags, QObject *parent = nullptr);
RuleBookSettings(KConfig::OpenFlags, QObject *parent = nullptr);
RuleBookSettings(QObject *parent = nullptr);
~RuleBookSettings();
void setRules(const QVector<Rules *> &);
QVector<Rules *> rules();
bool usrSave() override;
void usrRead() override;
bool usrIsSaveNeeded() const;
int ruleCount() const;
RuleSettings *ruleSettingsAt(int row) const;
RuleSettings *insertRuleSettingsAt(int row);
void removeRuleSettingsAt(int row);
void moveRuleSettings(int srcRow, int destRow);
private:
static QString generateGroupName();
private:
QVector<RuleSettings *> m_list;
QStringList m_storedGroups;
};
}
#endif // RULEBOOKSETTINGS_H