/* * Copyright (c) 2020 Ismael Asensio * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License or (at your option) version 3 or any later version * accepted by the membership of KDE e.V. (or its successor approved * by the membership of KDE e.V.), which shall act as a proxy * defined in Section 14 of version 3 of the license. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef KWIN_RULES_MODEL_H #define KWIN_RULES_MODEL_H #include "ruleitem.h" #include "rulesettings.h" #include #include #include #include #ifdef KWIN_BUILD_ACTIVITIES #include #endif namespace KWin { class RulesModel : public QAbstractListModel { Q_OBJECT Q_PROPERTY(QString description READ description WRITE setDescription NOTIFY descriptionChanged) Q_PROPERTY(QString warningMessage READ warningMessage NOTIFY warningMessageChanged) public: enum RulesRole { NameRole = Qt::DisplayRole, DescriptionRole = Qt::ToolTipRole, IconRole = Qt::DecorationRole, IconNameRole = Qt::UserRole + 1, KeyRole, SectionRole, EnabledRole, SelectableRole, ValueRole, TypeRole, PolicyRole, PolicyModelRole, OptionsModelRole, SuggestedValueRole }; Q_ENUM(RulesRole) public: explicit RulesModel(QObject *parent = nullptr); ~RulesModel(); int rowCount(const QModelIndex &parent = QModelIndex()) const override; QHash roleNames() 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 hasRule(const QString &key) const; RuleItem *ruleItem(const QString &key) const; void readFromSettings(RuleSettings *settings); void writeToSettings(RuleSettings *settings) const; void importFromRules(Rules *rules); Rules *exportToRules() const; void setWindowProperties(const QVariantMap &info, bool forceValue = false); QString description() const; void setDescription(const QString &description); QString warningMessage() const; public slots: void detectWindowProperties(int secs); signals: void descriptionChanged(); void warningMessageChanged(); void suggestionsChanged(); private: void populateRuleList(); bool wmclassWarning() const; RuleItem *addRule(RuleItem *rule); QString defaultDescription() const; static const QHash x11PropertyHash(); QList windowTypesModelData() const; QList virtualDesktopsModelData() const; QList activitiesModelData() const; QList placementModelData() const; QList focusModelData() const; QList colorSchemesModelData() const; private slots: void selectX11Window(); private: QList m_ruleList; QHash m_rules; #ifdef KWIN_BUILD_ACTIVITIES KActivities::Consumer *m_activities; #endif }; } #endif