kwin/src/kcms/rules/rulebookmodel.h
Vlad Zahorodnii f94b8bfa86 kcms: Simplify directory naming
Remove "kwin", it's repetitive and doesn't add new information. In
addition to that, prefixing commits that change kcms will become more
straightforward. There's more than one scheme people use, some include
"kwin", some don't.
2022-12-17 20:02:16 +00:00

56 lines
1.6 KiB
C++

/*
SPDX-FileCopyrightText: 2020 Ismael Asensio <isma.af@gmail.com>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#pragma once
#include "rulebooksettings.h"
#include "rulesettings.h"
#include <QAbstractListModel>
namespace KWin
{
class RuleBookModel : public QAbstractListModel
{
Q_OBJECT
public:
enum {
DescriptionRole = Qt::DisplayRole,
};
explicit RuleBookModel(QObject *parent = nullptr);
~RuleBookModel();
QHash<int, QByteArray> roleNames() const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;
bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;
bool moveRows(const QModelIndex &sourceParent, int sourceRow, int count,
const QModelIndex &destinationParent, int destinationChild) override;
QString descriptionAt(int row) const;
void setDescriptionAt(int row, const QString &description);
RuleSettings *ruleSettingsAt(int row) const;
void setRuleSettingsAt(int row, const RuleSettings &settings);
void load();
void save();
bool isSaveNeeded();
// Helper function to copy RuleSettings properties
static void copySettingsTo(RuleSettings *dest, const RuleSettings &source);
private:
RuleBookSettings *m_ruleBook;
};
} // namespace