blob: af0828605e61d2718f4a5cb086a3b1b869995283 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<node>
<interface name="com.canonical.Unity.Greeter.Broadcast">
<!-- From the Greeter -->
<method name="RequestApplicationStart">
<arg type="s" name="username" direction="in" />
<arg type="s" name="appId" direction="in" />
</method>
<method name="RequestHomeShown">
<arg type="s" name="username" direction="in" />
</method>
<method name="RequestSoundPlayPause">
<arg type="s" name="username" direction="in" />
</method>
<method name="RequestSoundNext">
<arg type="s" name="username" direction="in" />
</method>
<method name="RequestSoundPrev">
<arg type="s" name="username" direction="in" />
</method>
<!-- To the Session -->
<signal name="StartApplication">
<arg type="s" name="username" direction="out" />
<arg type="s" name="appId" direction="out" />
</signal>
<signal name="ShowHome">
<arg type="s" name="username" direction="out" />
</signal>
<signal name="SoundPlayPause">
<arg type="s" name="username" direction="out" />
</signal>
<signal name="SoundNext">
<arg type="s" name="username" direction="out" />
</signal>
<signal name="SoundPrev">
<arg type="s" name="username" direction="out" />
</signal>
<!-- Other -->
</interface>
</node>
|