blob: 51efa12df22e679326a90d9e80a166eaada7b235 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
#ifndef PEBBLEDINTERFACE_H
#define PEBBLEDINTERFACE_H
#include <QObject>
#include <QUrl>
#include <QHash>
#include <QUuid>
#include <QImage>
#include <QDBusInterface>
class OrgPebbledWatchInterface;
class PebbledInterface : public QObject
{
Q_OBJECT
Q_PROPERTY(bool enabled READ enabled WRITE setEnabled NOTIFY enabledChanged)
Q_PROPERTY(bool active READ active WRITE setActive NOTIFY activeChanged)
Q_PROPERTY(bool connected READ connected NOTIFY connectedChanged)
Q_PROPERTY(QString name READ name NOTIFY nameChanged)
Q_PROPERTY(QString address READ address NOTIFY addressChanged)
Q_PROPERTY(QString appUuid READ appUuid NOTIFY appUuidChanged)
Q_PROPERTY(QStringList appSlots READ appSlots NOTIFY appSlotsChanged)
Q_PROPERTY(QVariantList allApps READ allApps NOTIFY allAppsChanged)
public:
explicit PebbledInterface(QObject *parent = 0);
bool enabled() const;
bool active() const;
bool connected() const;
QString name() const;
QString address() const;
QString appUuid() const;
QStringList appSlots() const;
QVariantList allApps() const;
Q_INVOKABLE QVariantMap appInfoByUuid(const QString& uuid) const;
Q_INVOKABLE QUrl configureApp(const QString &uuid);
Q_INVOKABLE bool isAppInstalled(const QString &uuid) const;
QImage menuIconForApp(const QUuid &uuid) const;
signals:
void enabledChanged();
void activeChanged();
void connectedChanged();
void nameChanged();
void addressChanged();
void appUuidChanged();
void appSlotsChanged();
void allAppsChanged();
public slots:
void setEnabled(bool);
void setActive(bool);
void ping();
void time();
void disconnect();
void reconnect();
void setAppConfiguration(const QString &uuid, const QString &data);
void launchApp(const QString &uuid);
void uploadApp(const QString &uuid, int slot);
void unloadApp(int slot);
private slots:
void onWatchConnectedChanged();
void getUnitProperties();
void onPropertiesChanged(QString interface, QMap<QString, QVariant> changed, QStringList invalidated);
void refreshAppSlots();
void refreshAllApps();
private:
QDBusInterface *systemd;
OrgPebbledWatchInterface *watch;
QDBusObjectPath unitPath;
QVariantMap unitProperties;
// Cached properties
QStringList _appSlots;
QVariantList _apps;
QHash<QUuid, int> _appsByUuid;
QHash<QUuid, QImage> _appMenuIcons;
};
#endif // PEBBLEDINTERFACE_H
|