blob: d1fed7ea7b0a5a8a57a46f40da4b186aeda55e32 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<node name="/">
<interface name="org.freedesktop.indicator">
<!-- Functions -->
<method name="GetDesktop">
<arg type="s" name="desktop_file_uri" direction="out" />
</method>
<method name="GetIndicatorCount">
<arg type="u" name="indicator_count" direction="out" />
</method>
<method name="GetIndicatorCountByType">
<arg type="s" name="type" direction="in" />
<arg type="u" name="indicator_count" direction="out" />
</method>
<method name="GetIndicatorList">
<arg type="ai" name="indicators" direction="out" />
</method>
<method name="GetIndicatorListByType">
<arg type="s" name="type" direction="in" />
<arg type="ai" name="indicators" direction="out" />
</method>
<method name="GetIndicatorProperty">
<arg type="u" name="id" direction="in" />
<arg type="s" name="property" direction="in" />
<arg type="s" name="value" direction="out" />
</method>
<method name="GetIndicatorPropertyGroup">
<arg type="u" name="id" direction="in" />
<arg type="as" name="properties" direction="in" />
<arg type="as" name="values" direction="out" />
</method>
<method name="GetIndicatorProperties">
<arg type="u" name="id" direction="in" />
<arg type="as" name="properties" direction="out" />
</method>
<method name="ShowIndicatorToUser">
<arg type="u" name="id" direction="in" />
</method>
<!-- Signals -->
<signal name="IndicatorAdded">
<arg type="u" name="id" direction="out" />
<arg type="s" name="type" direction="out" />
</signal>
<signal name="IndicatorRemoved">
<arg type="u" name="id" direction="out" />
<arg type="s" name="type" direction="out" />
</signal>
<signal name="IndicatorModified">
<arg type="u" name="id" direction="out" />
<arg type="s" name="property" direction="out" />
</signal>
<!-- End of interesting stuff -->
</interface>
</node>
|