blob: ce7124862b9a1f902e79dd8e439bdc0e43cab3da (
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
|
<?xml version="1.0"?>
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node name="/org/pebbled/Watch">
<interface name="org.pebbled.Watch">
<property name="Name" type="s" access="read"/>
<property name="Address" type="s" access="read"/>
<property name="Connected" type="b" access="read"/>
<property name="AppUuid" type="s" access="read"/>
<!-- Qt does not yet support property changed signals, so we fake them. -->
<signal name="NameChanged"/>
<signal name="AddressChanged"/>
<signal name="ConnectedChanged"/>
<signal name="AppUuidChanged"/>
<method name="Disconnect"/>
<method name="Reconnect"/>
<method name="Ping">
<arg name="val" type="u" direction="in"/>
</method>
<method name="SyncTime"/>
<!-- The following methods resemble the official PebbleKit API -->
<method name="LaunchApp">
<arg name="uuid" type="s" direction="in"/>
</method>
<method name="CloseApp">
<arg name="uuid" type="s" direction="in"/>
</method>
<method name="SendAppMessage">
<arg name="uuid" type="s" direction="in"/>
<arg name="message" type="a{sv}" direction="in"/>
<arg name="msg_ack" type="b" direction="out"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="QVariantMap"/>
</method>
<signal name="AppOpened">
<arg name="uuid" type="s"/>
</signal>
<signal name="AppClosed">
<arg name="uuid" type="s"/>
</signal>
<!-- The following method are used for configuration of JSKit applications by the client app -->
<method name="StartAppConfiguration">
<arg name="uuid" type="s" direction="in"/>
<arg name="config_url" type="s" direction="out"/>
</method>
<method name="SendAppConfigurationData">
<arg name="uuid" type="s" direction="in"/>
<arg name="data" type="s" direction="in"/>
</method>
<!-- Bank management methods -->
<method name="UnloadApp">
<arg name="slot" type="u" direction="in"/>
</method>
</interface>
</node>
|