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.
39 lines
935 B
39 lines
935 B
/* |
|
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 |
|
*/ |
|
|
|
#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); |
|
void setRules(const QVector<Rules *> &); |
|
QVector<Rules *> rules(); |
|
bool usrSave() override; |
|
void usrRead() override; |
|
|
|
private: |
|
QVector<RuleSettings *> m_list; |
|
}; |
|
|
|
} |
|
|
|
#endif // RULEBOOKSETTINGS_H
|
|
|