summaryrefslogtreecommitdiff
path: root/libsowatch/declarativewatchwrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'libsowatch/declarativewatchwrapper.h')
-rw-r--r--libsowatch/declarativewatchwrapper.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/libsowatch/declarativewatchwrapper.h b/libsowatch/declarativewatchwrapper.h
new file mode 100644
index 0000000..5f78e75
--- /dev/null
+++ b/libsowatch/declarativewatchwrapper.h
@@ -0,0 +1,44 @@
+#ifndef DECLARATIVEWATCHWRAPPER_H
+#define DECLARATIVEWATCHWRAPPER_H
+
+#include <QtDeclarative/QtDeclarative>
+
+namespace sowatch
+{
+
+class Watch;
+class DeclarativeWatchlet;
+
+class DeclarativeWatchWrapper : public QObject
+{
+ Q_OBJECT
+ Q_PROPERTY(QString model READ model CONSTANT)
+ Q_PROPERTY(bool active READ active NOTIFY activeChanged)
+
+public:
+ explicit DeclarativeWatchWrapper(Watch *watch, QObject *parent = 0);
+
+ Q_INVOKABLE QString model() const;
+ Q_INVOKABLE bool active() const;
+
+signals:
+ void buttonPressed(int button);
+ void buttonReleased(int button);
+
+ void activeChanged();
+
+protected:
+ Watch* _watch;
+ bool _active;
+
+ void activate();
+ void deactivate();
+
+friend class DeclarativeWatchlet;
+};
+
+}
+
+QML_DECLARE_TYPE(sowatch::DeclarativeWatchWrapper)
+
+#endif // DECLARATIVEWATCHWRAPPER_H