// SPDX-FileCopyrightText: 2022 James Graham // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL #pragma once #include #include class KeywordNotificationRuleModel : public QAbstractListModel { Q_OBJECT public: enum EventRoles { NameRole = Qt::DisplayRole, }; KeywordNotificationRuleModel(QObject *parent = nullptr); [[nodiscard]] QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; [[nodiscard]] int rowCount(const QModelIndex &parent = QModelIndex()) const override; [[nodiscard]] QHash roleNames() const override; Q_INVOKABLE void addKeyword(const QString &keyword); Q_INVOKABLE void removeKeywordAtIndex(int index); private Q_SLOTS: void controllerConnectionChanged(); void updateNotificationRules(const QString &type); private: QList m_notificationRules; };