-
Notifications
You must be signed in to change notification settings - Fork 13
/
org.shadowblip.Input.CompositeDevice.xml
78 lines (76 loc) · 2.52 KB
/
org.shadowblip.Input.CompositeDevice.xml
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
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.shadowblip.Input.CompositeDevice">
<!--
Load the device profile from the given path
-->
<method name="LoadProfilePath">
<arg name="path" type="s" direction="in"/>
</method>
<!--
List of capabilities that all source devices implement
-->
<property name="Capabilities" type="as" access="read"/>
<!--
Target dbus devices that this [CompositeDevice] is managing
-->
<property name="DbusDevices" type="as" access="read"/>
<!--
The intercept mode of the composite device.
-->
<property name="InterceptMode" type="u" access="readwrite"/>
<!--
Name of the composite device
-->
<property name="Name" type="s" access="read"/>
<!--
Name of the currently loaded profile
-->
<property name="ProfileName" type="s" access="read"/>
<!--
List of source devices that this composite device is processing inputs for
-->
<property name="SourceDevicePaths" type="as" access="read"/>
<!--
Target devices that this [CompositeDevice] is managing
-->
<property name="TargetDevices" type="as" access="read"/>
</interface>
<interface name="org.freedesktop.DBus.Introspectable">
<method name="Introspect">
<arg type="s" direction="out"/>
</method>
</interface>
<interface name="org.freedesktop.DBus.Properties">
<method name="Get">
<arg name="interface_name" type="s" direction="in"/>
<arg name="property_name" type="s" direction="in"/>
<arg type="v" direction="out"/>
</method>
<method name="Set">
<arg name="interface_name" type="s" direction="in"/>
<arg name="property_name" type="s" direction="in"/>
<arg name="value" type="v" direction="in"/>
</method>
<method name="GetAll">
<arg name="interface_name" type="s" direction="in"/>
<arg type="a{sv}" direction="out"/>
</method>
<!--
Emits the `org.freedesktop.DBus.Properties.PropertiesChanged` signal.
-->
<signal name="PropertiesChanged">
<arg name="interface_name" type="s"/>
<arg name="changed_properties" type="a{sv}"/>
<arg name="invalidated_properties" type="as"/>
</signal>
</interface>
<interface name="org.freedesktop.DBus.Peer">
<method name="Ping">
</method>
<method name="GetMachineId">
<arg type="s" direction="out"/>
</method>
</interface>
</node>