9cbac6fe3a
The default is having no rules, so the indicator will show whenever there is one or more rules in the list.
175 lines
4.3 KiB
C++
175 lines
4.3 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
|
|
*/
|
|
|
|
#include "rulebookmodel.h"
|
|
|
|
#include "rulebookdata.h"
|
|
#include "rulebooksettings.h"
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
RuleBookModel::RuleBookModel(QObject *parent)
|
|
: QAbstractListModel(parent)
|
|
, m_ruleBookData(new RuleBookData(this))
|
|
{
|
|
}
|
|
|
|
RuleBookModel::~RuleBookModel()
|
|
{
|
|
qDeleteAll(m_rules);
|
|
}
|
|
|
|
int RuleBookModel::rowCount(const QModelIndex &parent) const
|
|
{
|
|
Q_UNUSED(parent)
|
|
return m_rules.count();
|
|
}
|
|
|
|
QVariant RuleBookModel::data(const QModelIndex &index, int role) const
|
|
{
|
|
if (!checkIndex(index, CheckIndexOption::IndexIsValid | CheckIndexOption::ParentIsInvalid)) {
|
|
return QVariant();
|
|
}
|
|
|
|
switch (role) {
|
|
case Qt::DisplayRole:
|
|
return descriptionAt(index.row());
|
|
default:
|
|
return QVariant();
|
|
}
|
|
}
|
|
|
|
bool RuleBookModel::setData(const QModelIndex &index, const QVariant &value, int role)
|
|
{
|
|
if (!checkIndex(index, CheckIndexOption::IndexIsValid | CheckIndexOption::ParentIsInvalid)) {
|
|
return false;
|
|
}
|
|
|
|
switch (role) {
|
|
case Qt::DisplayRole:
|
|
setDescriptionAt(index.row(), value.toString());
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool RuleBookModel::insertRows(int row, int count, const QModelIndex &parent)
|
|
{
|
|
if (row < 0 || row > rowCount() || parent.isValid()) {
|
|
return false;
|
|
}
|
|
beginInsertRows(parent, row, row + count - 1);
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
Rules *newRule = new Rules();
|
|
// HACK: Improve integration with RuleSettings and use directly its defaults
|
|
newRule->wmclassmatch = Rules::ExactMatch;
|
|
m_rules.insert(row + i, newRule);
|
|
}
|
|
|
|
m_ruleBookData->settings()->setCount(m_rules.count());
|
|
|
|
endInsertRows();
|
|
return true;
|
|
}
|
|
|
|
bool RuleBookModel::removeRows(int row, int count, const QModelIndex &parent)
|
|
{
|
|
if (row < 0 || row > rowCount() || parent.isValid()) {
|
|
return false;
|
|
}
|
|
beginRemoveRows(parent, row, row + count - 1);
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
delete m_rules.at(row + i);
|
|
}
|
|
m_rules.remove(row, count);
|
|
m_ruleBookData->settings()->setCount(m_rules.count());
|
|
|
|
endRemoveRows();
|
|
return true;
|
|
}
|
|
|
|
bool RuleBookModel::moveRows(const QModelIndex &sourceParent, int sourceRow, int count,
|
|
const QModelIndex &destinationParent, int destinationChild)
|
|
{
|
|
if (sourceParent != destinationParent || sourceParent != QModelIndex()){
|
|
return false;
|
|
}
|
|
|
|
const bool isMoveDown = destinationChild > sourceRow;
|
|
// QAbstractItemModel::beginMoveRows(): when moving rows down in the same parent,
|
|
// the rows will be placed before the destinationChild index.
|
|
if (!beginMoveRows(sourceParent, sourceRow, sourceRow + count - 1,
|
|
destinationParent, isMoveDown ? destinationChild + 1 : destinationChild)) {
|
|
return false;
|
|
}
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
m_rules.insert(destinationChild + i,
|
|
m_rules.takeAt(isMoveDown ? sourceRow : sourceRow + i));
|
|
}
|
|
|
|
endMoveRows();
|
|
return true;
|
|
}
|
|
|
|
|
|
QString RuleBookModel::descriptionAt(int row) const
|
|
{
|
|
Q_ASSERT (row >= 0 && row < m_rules.count());
|
|
return m_rules.at(row)->description;
|
|
}
|
|
|
|
Rules *RuleBookModel::ruleAt(int row) const
|
|
{
|
|
Q_ASSERT (row >= 0 && row < m_rules.count());
|
|
return m_rules.at(row);
|
|
}
|
|
|
|
void RuleBookModel::setDescriptionAt(int row, const QString &description)
|
|
{
|
|
Q_ASSERT (row >= 0 && row < m_rules.count());
|
|
if (description == m_rules.at(row)->description) {
|
|
return;
|
|
}
|
|
|
|
m_rules.at(row)->description = description;
|
|
|
|
emit dataChanged(index(row), index(row), QVector<int>{Qt::DisplayRole});
|
|
}
|
|
|
|
void RuleBookModel::setRuleAt(int row, Rules *rule)
|
|
{
|
|
Q_ASSERT (row >= 0 && row < m_rules.count());
|
|
|
|
delete m_rules.at(row);
|
|
m_rules[row] = rule;
|
|
|
|
emit dataChanged(index(row), index(row), QVector<int>{Qt::DisplayRole});
|
|
}
|
|
|
|
|
|
void RuleBookModel::load()
|
|
{
|
|
beginResetModel();
|
|
|
|
m_ruleBookData->settings()->load();
|
|
qDeleteAll(m_rules);
|
|
m_rules = m_ruleBookData->settings()->rules();
|
|
|
|
endResetModel();
|
|
}
|
|
|
|
void RuleBookModel::save()
|
|
{
|
|
m_ruleBookData->settings()->setRules(m_rules);
|
|
m_ruleBookData->settings()->save();
|
|
}
|
|
|
|
} // namespace
|