KWinRules KCM Redesign
Summary:
Replacement KCM to configure kwin rules, using a QML-based UI.
After some work on the task T12729, it is almost feature-par with the previous module, and adapted to the recent move to KConfigXT.
Test Plan:
{F8208046}
{F8208047}
Reviewers: #plasma, #kwin, #vdg, ngraham, davidedmundson, zzag
Reviewed By: #plasma, #kwin, #vdg, ngraham, davidedmundson, zzag
Subscribers: ngraham, davidedmundson, hchain, broulik, zzag, kwin
Tags: #kwin, #vdg
Differential Revision: https://phabricator.kde.org/D28152
2020-04-20 20:01:55 +00:00
|
|
|
/*
|
2020-08-02 22:22:19 +00:00
|
|
|
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
|
|
|
|
*/
|
KWinRules KCM Redesign
Summary:
Replacement KCM to configure kwin rules, using a QML-based UI.
After some work on the task T12729, it is almost feature-par with the previous module, and adapted to the recent move to KConfigXT.
Test Plan:
{F8208046}
{F8208047}
Reviewers: #plasma, #kwin, #vdg, ngraham, davidedmundson, zzag
Reviewed By: #plasma, #kwin, #vdg, ngraham, davidedmundson, zzag
Subscribers: ngraham, davidedmundson, hchain, broulik, zzag, kwin
Tags: #kwin, #vdg
Differential Revision: https://phabricator.kde.org/D28152
2020-04-20 20:01:55 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <rules.h>
|
|
|
|
#include "rulebookmodel.h"
|
|
|
|
#include "rulesmodel.h"
|
|
|
|
|
|
|
|
#include <KQuickAddons/ConfigModule>
|
|
|
|
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class KCMKWinRules : public KQuickAddons::ConfigModule
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_PROPERTY(RuleBookModel *ruleBookModel MEMBER m_ruleBookModel CONSTANT)
|
|
|
|
Q_PROPERTY(RulesModel *rulesModel MEMBER m_rulesModel CONSTANT)
|
|
|
|
Q_PROPERTY(int editIndex READ editIndex NOTIFY editIndexChanged)
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit KCMKWinRules(QObject *parent, const QVariantList &arguments);
|
|
|
|
|
|
|
|
Q_INVOKABLE void setRuleDescription(int index, const QString &description);
|
|
|
|
Q_INVOKABLE void editRule(int index);
|
|
|
|
|
|
|
|
Q_INVOKABLE void createRule();
|
|
|
|
Q_INVOKABLE void removeRule(int index);
|
|
|
|
Q_INVOKABLE void moveRule(int sourceIndex, int destIndex);
|
2020-11-27 21:06:30 +00:00
|
|
|
Q_INVOKABLE void duplicateRule(int index);
|
KWinRules KCM Redesign
Summary:
Replacement KCM to configure kwin rules, using a QML-based UI.
After some work on the task T12729, it is almost feature-par with the previous module, and adapted to the recent move to KConfigXT.
Test Plan:
{F8208046}
{F8208047}
Reviewers: #plasma, #kwin, #vdg, ngraham, davidedmundson, zzag
Reviewed By: #plasma, #kwin, #vdg, ngraham, davidedmundson, zzag
Subscribers: ngraham, davidedmundson, hchain, broulik, zzag, kwin
Tags: #kwin, #vdg
Differential Revision: https://phabricator.kde.org/D28152
2020-04-20 20:01:55 +00:00
|
|
|
|
|
|
|
Q_INVOKABLE void exportToFile(const QUrl &path, const QList<int> &indexes);
|
|
|
|
Q_INVOKABLE void importFromFile(const QUrl &path);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void load() override;
|
|
|
|
void save() override;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void editIndexChanged();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void updateNeedsSave();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int editIndex() const;
|
|
|
|
void saveCurrentRule();
|
|
|
|
|
|
|
|
private:
|
|
|
|
RuleBookModel *m_ruleBookModel;
|
|
|
|
RulesModel* m_rulesModel;
|
|
|
|
|
|
|
|
QPersistentModelIndex m_editIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|