summaryrefslogtreecommitdiff
path: root/daemon/manager.h
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2014-11-30 20:58:57 +0100
committerJavier <dev.git@javispedro.com>2014-11-30 20:58:57 +0100
commitf7c8244641a4242f6a8c706bd918494b23e48075 (patch)
treef84b5ead8f4d621cf47e10489889fb9fef8b1f61 /daemon/manager.h
parent4527ab9a4147a8f15bf8ca5613341df9d0029d0c (diff)
introduce the AppMsgManager and the JsKitManager
will be used to handle application messages (push, etc) while the JSKitManager will run PebbleKit JS scripts. also add the ability to unpack PebbleDicts
Diffstat (limited to 'daemon/manager.h')
-rw-r--r--daemon/manager.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/daemon/manager.h b/daemon/manager.h
index 8b2fd96..f1dd53e 100644
--- a/daemon/manager.h
+++ b/daemon/manager.h
@@ -7,6 +7,8 @@
#include "notificationmanager.h"
#include "musicmanager.h"
#include "datalogmanager.h"
+#include "appmsgmanager.h"
+#include "jskitmanager.h"
#include "appmanager.h"
#include "settings.h"
@@ -40,11 +42,13 @@ class Manager :
WatchConnector *watch;
DBusConnector *dbus;
+ AppManager *apps;
VoiceCallManager *voice;
NotificationManager *notifications;
MusicManager *music;
DataLogManager *datalog;
- AppManager *apps;
+ AppMsgManager *appmsg;
+ JSKitManager *js;
MNotification notification;
@@ -73,7 +77,7 @@ protected:
void transliterateMessage(const QString &text);
signals:
- void mprisMetadataChanged(QVariantMap);
+ void mprisMetadataChanged(const QVariantMap &metadata);
public slots:
void applyProfile();