blob: f1a532666791d5d51cfb7fd32dfb1b8b5a32c0aa (
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
|
<?xml version="1.0" encoding="UTF-8" ?>
<node name="/org/gnome/RemoteControlManager">
<interface name='org.gnome.RemoteControlManager.Device'>
<annotation name="org.gtk.GDBus.C.Name" value="RCDevice"/>
<method name='ListKeymaps'>
<arg type='as' name='keymap_ids' direction='out'/>
</method>
<method name='GetKernelMappings'>
<arg type='aa{sv}' name='keymap_entries' direction='out'/>
</method>
<method name='SetKernelMappings'>
<arg type='aa{sv}' name='keymap_entries' direction='in'/>
</method>
<method name='GetKeymap'>
<arg type='s' name='keymap_id' direction='in'/>
<arg type='s' name='keymap_name' direction='out'/>
<arg type='s' name='keymap_description' direction='out'/>
<arg type='q' name='keymap_width' direction='out'/>
<arg type='q' name='keymap_height' direction='out'/>
<arg type='aa{sv}' name='keymap_entries' direction='out'/>
<arg type='aa{sv}' name='layout_entries' direction='out'/>
</method>
<method name='SetKeymap'>
<arg type='s' name='keymap_id' direction='in'/>
<arg type='s' name='keymap_name' direction='in'/>
<arg type='s' name='keymap_description' direction='in'/>
<arg type='q' name='keymap_width' direction='in'/>
<arg type='q' name='keymap_height' direction='in'/>
<arg type='aa{sv}' name='keymap_entries' direction='in'/>
<arg type='aa{sv}' name='layout_entries' direction='in'/>
</method>
<method name='Transmit'>
<arg type='au' name='data' direction='in'/>
</method>
<signal name='KeyPressed'>
<arg type='s' name='protocol'/>
<arg type='t' name='scancode'/>
<arg type='s' name='keycode'/>
</signal>
<signal name='KeyReleased'>
<arg type='s' name='keycode'/>
</signal>
<signal name='Event'>
<arg type='s' name='description'/>
</signal>
<property name='SysName' type='s' access='read'/>
<property name='Description' type='s' access='read'/>
<property name='DriverName' type='s' access='read'/>
<property name='KernelKeymapName' type='s' access='read'/>
<property name='HardwareType' type='s' access='read'/>
<property name='Error' type='s' access='read'/>
</interface>
<interface name='org.gnome.RemoteControlManager.IRDevice'>
<annotation name="org.gtk.GDBus.C.Name" value="RCIRDevice"/>
<method name='GetIRRXParameters'>
<arg type='a{sv}' name='ir_rx_parameters' direction='out'/>
</method>
</interface>
</node>
|