2015-12-05 22:11:57 +00:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2015 Holger Kaelberer <holger.k@elberer.de>
|
2015-12-05 22:11:57 +00:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2015-12-05 22:11:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NOTIFYINGAPPLICATIONMODEL_H
|
|
|
|
#define NOTIFYINGAPPLICATIONMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
|
|
|
|
|
|
|
#include "notifyingapplication.h"
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class NotifyingApplicationModel : public QAbstractTableModel
|
2015-12-05 22:11:57 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2022-09-10 22:23:52 +01:00
|
|
|
explicit NotifyingApplicationModel(QObject *parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
2016-06-20 08:05:02 +01:00
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
|
|
|
void sort(int column, Qt::SortOrder order = Qt::AscendingOrder) override;
|
2015-12-05 22:11:57 +00:00
|
|
|
|
|
|
|
QVector<NotifyingApplication> apps();
|
|
|
|
void clearApplications();
|
2022-09-10 22:23:52 +01:00
|
|
|
void appendApp(const NotifyingApplication &app);
|
|
|
|
bool containsApp(const QString &name) const;
|
2015-12-05 22:11:57 +00:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void applicationsChanged();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QVector<NotifyingApplication> m_apps;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NOTIFYINGAPPLICATIONMODEL_H
|