diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2012-08-09 04:03:20 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2012-08-09 04:03:20 +0200 |
commit | 406332eb6b3199d19388f359d04c9f184e6082b5 (patch) | |
tree | 0560e8dabcd715cdf1932b7ac6105df5d20025e5 /libsowatch/watchserver.h | |
parent | 3aa62b0543d978c1a01c5cf05a898fd8d805c44b (diff) | |
download | sowatch-406332eb6b3199d19388f359d04c9f184e6082b5.tar.gz sowatch-406332eb6b3199d19388f359d04c9f184e6082b5.zip |
watch status UI
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(); }; } |