2013-08-16 05:23:54 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-06-27 01:13:16 +01: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
|
2013-06-27 01:13:16 +01:00
|
|
|
*/
|
|
|
|
|
2013-08-21 17:25:44 +01:00
|
|
|
#ifndef NOTIFICATIONSMODEL_H
|
|
|
|
#define NOTIFICATIONSMODEL_H
|
2013-06-27 01:13:16 +01:00
|
|
|
|
|
|
|
#include <QAbstractItemModel>
|
2013-07-02 14:22:05 +01:00
|
|
|
#include <QAbstractListModel>
|
2013-06-27 01:13:16 +01:00
|
|
|
#include <QList>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QPixmap>
|
2013-06-27 01:13:16 +01:00
|
|
|
|
2019-04-30 18:03:24 +01:00
|
|
|
#include "dbusinterfaces.h"
|
2013-08-21 17:25:44 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT NotificationsModel : public QAbstractListModel
|
2013-06-27 01:13:16 +01:00
|
|
|
{
|
2013-07-03 02:52:44 +01:00
|
|
|
Q_OBJECT
|
2013-08-22 02:21:08 +01:00
|
|
|
Q_PROPERTY(QString deviceId READ deviceId WRITE setDeviceId NOTIFY deviceIdChanged)
|
|
|
|
Q_PROPERTY(int count READ rowCount NOTIFY rowsChanged)
|
2015-11-12 11:27:30 +00:00
|
|
|
Q_PROPERTY(bool isAnyDimissable READ isAnyDimissable NOTIFY anyDismissableChanged STORED false)
|
2013-08-28 18:33:46 +01:00
|
|
|
|
2013-06-27 01:13:16 +01:00
|
|
|
public:
|
|
|
|
enum ModelRoles {
|
2022-09-10 22:23:52 +01:00
|
|
|
IconModelRole = Qt::DecorationRole,
|
|
|
|
NameModelRole = Qt::DisplayRole,
|
|
|
|
ContentModelRole = Qt::UserRole,
|
|
|
|
AppNameModelRole = Qt::UserRole + 1,
|
2015-01-21 06:22:14 +00:00
|
|
|
IdModelRole,
|
|
|
|
DismissableModelRole,
|
2017-06-01 15:17:37 +01:00
|
|
|
RepliableModelRole,
|
|
|
|
IconPathModelRole,
|
2017-08-22 17:16:42 +01:00
|
|
|
DbusInterfaceRole,
|
|
|
|
TitleModelRole,
|
|
|
|
TextModelRole
|
2013-06-27 01:13:16 +01:00
|
|
|
};
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
explicit NotificationsModel(QObject *parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~NotificationsModel() override;
|
2013-06-27 01:13:16 +01:00
|
|
|
|
2014-04-12 20:47:28 +01:00
|
|
|
QString deviceId() const;
|
2022-09-10 22:23:52 +01:00
|
|
|
void setDeviceId(const QString &deviceId);
|
2013-08-22 02:21:08 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
2013-06-27 01:13:16 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
NotificationDbusInterface *getNotification(const QModelIndex &index) const;
|
2013-07-04 00:09:49 +01:00
|
|
|
|
2014-04-12 20:51:35 +01:00
|
|
|
Q_INVOKABLE bool isAnyDimissable() const;
|
2016-06-20 08:05:02 +01:00
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
2014-04-12 20:51:35 +01:00
|
|
|
|
2013-08-22 02:21:08 +01:00
|
|
|
public Q_SLOTS:
|
2013-08-28 18:33:46 +01:00
|
|
|
void dismissAll();
|
2013-08-22 02:21:08 +01:00
|
|
|
|
2013-07-04 00:09:49 +01:00
|
|
|
private Q_SLOTS:
|
2022-09-10 22:23:52 +01:00
|
|
|
void notificationAdded(const QString &id);
|
|
|
|
void notificationRemoved(const QString &id);
|
2019-01-24 08:11:24 +00:00
|
|
|
void notificationUpdated();
|
2013-08-21 17:25:44 +01:00
|
|
|
void refreshNotificationList();
|
2022-09-10 22:23:52 +01:00
|
|
|
void receivedNotifications(QDBusPendingCallWatcher *watcher);
|
2016-04-05 23:25:12 +01:00
|
|
|
void clearNotifications();
|
2013-07-02 00:50:32 +01:00
|
|
|
|
2013-08-22 02:21:08 +01:00
|
|
|
Q_SIGNALS:
|
2022-09-10 22:23:52 +01:00
|
|
|
void deviceIdChanged(const QString &value);
|
2013-08-28 18:33:46 +01:00
|
|
|
void anyDismissableChanged();
|
2013-08-22 02:21:08 +01:00
|
|
|
void rowsChanged();
|
|
|
|
|
2013-06-27 01:13:16 +01:00
|
|
|
private:
|
2022-09-10 22:23:52 +01:00
|
|
|
DeviceNotificationsDbusInterface *m_dbusInterface;
|
|
|
|
QList<NotificationDbusInterface *> m_notificationList;
|
2013-08-21 17:25:44 +01:00
|
|
|
QString m_deviceId;
|
2013-06-27 01:13:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DEVICESMODEL_H
|