diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2011-09-27 04:51:30 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2011-09-27 04:51:30 +0200 |
commit | a644a7cc6749f8dd5ca20589ee6e59acc2892b3e (patch) | |
tree | b995528dc14d1f58d9d7c958d1eaad855b2a2412 /libsowatch/watch.h | |
parent | 0822b88738e00625efd27ccca9119885272924d2 (diff) | |
download | sowatch-a644a7cc6749f8dd5ca20589ee6e59acc2892b3e.tar.gz sowatch-a644a7cc6749f8dd5ca20589ee6e59acc2892b3e.zip |
new qmafw watchlet
Diffstat (limited to 'libsowatch/watch.h')
-rw-r--r-- | libsowatch/watch.h | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/libsowatch/watch.h b/libsowatch/watch.h index ee9bde7..bb4376c 100644 --- a/libsowatch/watch.h +++ b/libsowatch/watch.h @@ -14,7 +14,7 @@ namespace sowatch class Watch : public QObject, public QPaintDevice { Q_OBJECT - Q_PROPERTY(QString model READ model) + Q_PROPERTY(QString model READ model CONSTANT) Q_PROPERTY(bool connected READ isConnected) Q_PROPERTY(QDateTime dateTime READ dateTime WRITE setDateTime) @@ -38,13 +38,6 @@ public: /** Sets the current date/time on the watch. */ virtual void setDateTime(const QDateTime& dateTime) = 0; - /** Go back to the idle screen. */ - virtual void displayIdleScreen() = 0; - /** A standard notification; it's up to the watch when to stop showing it. */ - virtual void displayNotification(Notification* n) = 0; - /** Enter application mode. */ - virtual void displayApplication() = 0; - /** Grabs a button from whatever is default function is for the current mode. */ virtual void grabButton(int button) = 0; /** Restores a button to its default function. */ @@ -53,6 +46,17 @@ public: /** Tells the watch to update the unread notifications count, if visible. */ virtual void updateNotificationCount(Notification::Type type, int count) = 0; +public slots: + /** Go back to the idle screen. */ + virtual void displayIdleScreen() = 0; + /** A standard notification; it's up to the watch when to stop showing it. */ + virtual void displayNotification(Notification* notification) = 0; + /** Enter application mode. */ + virtual void displayApplication() = 0; + + /** Vibrate for a while. The default implementation does nothing. */ + virtual void vibrate(int msecs); + signals: /** The watch has been found and linked to. */ void connected(); |