From 247176e61399f14f6d52638d74d5a2a2579c1f55 Mon Sep 17 00:00:00 2001 From: Javier Date: Fri, 24 Apr 2015 23:00:56 +0200 Subject: added notificationmonitor, notification --- notification.h | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 notification.h (limited to 'notification.h') diff --git a/notification.h b/notification.h new file mode 100644 index 0000000..46b6754 --- /dev/null +++ b/notification.h @@ -0,0 +1,51 @@ +#ifndef WATCHFISH_NOTIFICATION_H +#define WATCHFISH_NOTIFICATION_H + +#include +#include + +namespace watchfish +{ + +class Notification : public QObject +{ + Q_OBJECT + Q_PROPERTY(uint id READ id CONSTANT) + Q_PROPERTY(QString sender READ sender) + Q_PROPERTY(QString summary READ summary NOTIFY summaryChanged) + Q_PROPERTY(QString body READ body NOTIFY bodyChanged) + Q_PROPERTY(QDateTime timestamp READ timestamp NOTIFY timestampChanged) + Q_PROPERTY(QString icon READ icon NOTIFY iconChanged) + + explicit Notification(QObject *parent = 0); + +public: + inline uint id() const { return _id; } + inline QString sender() const { return _sender; } + inline QString summary() const { return _summary; } + inline QString body() const { return _body; } + inline QDateTime timestamp() const { return _timestamp; } + inline QString icon() const { return _icon; } + +signals: + void summaryChanged(); + void bodyChanged(); + void timestampChanged(); + void iconChanged(); + + void closed(int reason); + +private: + friend class NotificationMonitor; + + uint _id; + QString _sender; + QString _summary; + QString _body; + QDateTime _timestamp; + QString _icon; +}; + +} + +#endif // WATCHFISH_NOTIFICATION_H -- cgit v1.2.3