diff options
Diffstat (limited to 'libsowatch/watchserver.h')
-rw-r--r-- | libsowatch/watchserver.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/libsowatch/watchserver.h b/libsowatch/watchserver.h index 3995bc6..54d3dc1 100644 --- a/libsowatch/watchserver.h +++ b/libsowatch/watchserver.h @@ -49,6 +49,10 @@ public slots: void syncTime(); +signals: + void watchConnected(); + void watchDisconnected(); + private: Watch* _watch; @@ -89,13 +93,13 @@ private: void goToIdle(); private slots: - void watchConnected(); - void watchDisconnected(); - void watchIdling(); - void watchButtonPress(int button); + void handleWatchConnected(); + void handleWatchDisconnected(); + void handleWatchIdling(); + void handleWatchButtonPress(int button); - void notificationChanged(); - void notificationDismissed(); + void handleNotificationChanged(); + void handleNotificationDismissed(); }; } |