2018-05-05 22:40:24 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QImage>
|
2018-07-11 17:33:02 +03:00
|
|
|
#include <QObject>
|
2018-05-05 22:40:24 +03:00
|
|
|
#include <QString>
|
|
|
|
|
2018-08-12 09:33:36 +03:00
|
|
|
#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
|
2018-07-11 17:33:02 +03:00
|
|
|
#include <QtDBus/QDBusArgument>
|
|
|
|
#include <QtDBus/QDBusInterface>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct roomEventId
|
2018-05-05 22:40:24 +03:00
|
|
|
{
|
2018-07-11 17:33:02 +03:00
|
|
|
QString roomId;
|
|
|
|
QString eventId;
|
|
|
|
};
|
|
|
|
|
2020-04-09 21:52:50 +03:00
|
|
|
inline bool
|
|
|
|
operator==(const roomEventId &a, const roomEventId &b)
|
|
|
|
{
|
|
|
|
return a.roomId == b.roomId && a.eventId == b.eventId;
|
|
|
|
}
|
|
|
|
|
2018-07-11 17:33:02 +03:00
|
|
|
class NotificationsManager : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2018-05-05 22:40:24 +03:00
|
|
|
public:
|
2018-07-11 17:33:02 +03:00
|
|
|
NotificationsManager(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
void postNotification(const QString &roomId,
|
|
|
|
const QString &eventId,
|
|
|
|
const QString &roomName,
|
|
|
|
const QString &senderName,
|
|
|
|
const QString &text,
|
|
|
|
const QImage &icon);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void notificationClicked(const QString roomId, const QString eventId);
|
2021-01-07 12:44:59 +03:00
|
|
|
void sendNotificationReply(const QString roomId, const QString eventId, const QString body);
|
2018-07-11 17:33:02 +03:00
|
|
|
|
2020-04-09 21:52:50 +03:00
|
|
|
public slots:
|
|
|
|
void removeNotification(const QString &roomId, const QString &eventId);
|
|
|
|
|
2018-08-12 09:33:36 +03:00
|
|
|
#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
|
2020-04-09 21:52:50 +03:00
|
|
|
public:
|
|
|
|
void closeNotifications(QString roomId);
|
|
|
|
|
2018-07-11 17:33:02 +03:00
|
|
|
private:
|
|
|
|
QDBusInterface dbus;
|
2020-04-09 21:52:50 +03:00
|
|
|
void closeNotification(uint id);
|
2018-07-11 17:33:02 +03:00
|
|
|
|
|
|
|
// notification ID to (room ID, event ID)
|
|
|
|
QMap<uint, roomEventId> notificationIds;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// these slots are platform specific (D-Bus only)
|
|
|
|
// but Qt slot declarations can not be inside an ifdef!
|
|
|
|
private slots:
|
|
|
|
void actionInvoked(uint id, QString action);
|
|
|
|
void notificationClosed(uint id, uint reason);
|
2021-01-07 12:44:59 +03:00
|
|
|
void notificationReplied(uint id, QString reply);
|
2018-05-05 22:40:24 +03:00
|
|
|
};
|
2018-07-11 17:33:02 +03:00
|
|
|
|
2018-08-12 09:33:36 +03:00
|
|
|
#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
|
2018-07-11 17:33:02 +03:00
|
|
|
QDBusArgument &
|
|
|
|
operator<<(QDBusArgument &arg, const QImage &image);
|
|
|
|
const QDBusArgument &
|
|
|
|
operator>>(const QDBusArgument &arg, QImage &);
|
|
|
|
#endif
|