summaryrefslogtreecommitdiff
path: root/notificationconn.h
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2016-01-01 22:05:42 +0100
committerJavier <dev.git@javispedro.com>2016-01-01 22:05:42 +0100
commita45977185a485624095bff1a15024e9199eee676 (patch)
tree6cc57d085bdd01e493477c870dbe0548137998e1 /notificationconn.h
parenta24034bdfea259cdc09c74217be75d4f9de0dce5 (diff)
downloadsapd-a45977185a485624095bff1a15024e9199eee676.tar.gz
sapd-a45977185a485624095bff1a15024e9199eee676.zip
reorganize source files into SAP and agents
Diffstat (limited to 'notificationconn.h')
-rw-r--r--notificationconn.h86
1 files changed, 0 insertions, 86 deletions
diff --git a/notificationconn.h b/notificationconn.h
deleted file mode 100644
index 092804a..0000000
--- a/notificationconn.h
+++ /dev/null
@@ -1,86 +0,0 @@
-#ifndef NOTIFICATIONCONN_H
-#define NOTIFICATIONCONN_H
-
-#include <QtCore/QObject>
-#include <QtCore/QDateTime>
-#include <QtCore/QHash>
-#include "sapconnection.h"
-#include "sapsocket.h"
-
-#if SAILFISH
-namespace watchfish
-{
-class Notification;
-class NotificationMonitor;
-}
-#endif
-
-class NotificationConn : public QObject
-{
- Q_OBJECT
-
-public:
- NotificationConn(SAPConnection *conn, QObject *parent = 0);
-
-protected:
- enum NotificationType {
- NotificationPopup = 0
- };
-
- enum NotificationAttributeType {
- NotificationPackageName = 0,
- NotificationCount = 1,
- NotificationTitle = 2,
- NotificationTime = 3,
- NotificationSender = 4,
- NotificationBody = 5,
- NotificationThumbnail = 6,
- NotificationApplicationName = 7,
- NotificationOpenInWatch = 9,
- NotificationOpenInHost = 10,
- NotificationId = 11
- };
-
- struct Notification {
- Notification();
-
- NotificationType type;
- int sequenceNumber;
- bool urgent;
- int applicationId;
- int category;
- QString packageName;
- int count;
- QString title;
- QDateTime time;
- int sender;
- QString body;
- QByteArray thumbnail;
- QString applicationName;
- //bool openInWatch;
- //bool openInHost;
- int notificationId;
- };
-
- QByteArray packNotification(const Notification &n);
- void sendNotification(const Notification &n);
-
-private slots:
- void handleConnected();
- void handleMessageReceived();
-
-#if SAILFISH
- void handleNotification(watchfish::Notification *n);
-#endif
-
- void performTest();
-
-private:
- SAPConnection *_conn;
- SAPSocket *_socket;
- QHash<QString, short> _knownSenders;
- int _lastSeqNumber;
- int _lastNotifId;
-};
-
-#endif // NOTIFICATIONCONN_H