/* SPDX-FileCopyrightText: 2020 Ismael Asensio SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL */ #pragma once #include "rulebookmodel.h" #include "rulesmodel.h" #include namespace KWin { class RuleSettings; class KCMKWinRules : public KQuickConfigModule { 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 KPluginMetaData &metaData, 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); Q_INVOKABLE void duplicateRule(int index); Q_INVOKABLE void exportToFile(const QUrl &path, const QList &indexes); Q_INVOKABLE void importFromFile(const QUrl &path); public Q_SLOTS: void load() override; void save() override; Q_SIGNALS: void editIndexChanged(); private Q_SLOTS: void updateNeedsSave(); private: int editIndex() const; void parseArguments(const QStringList &args); void createRuleFromProperties(); QModelIndex findRuleWithProperties(const QVariantMap &info, bool wholeApp) const; void fillSettingsFromProperties(RuleSettings *settings, const QVariantMap &info, bool wholeApp) const; private: RuleBookModel *m_ruleBookModel; RulesModel *m_rulesModel; QPersistentModelIndex m_editIndex; bool m_alreadyLoaded = false; QVariantMap m_winProperties; bool m_wholeApp = false; }; } // namespace