This repository was archived by the owner on Oct 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathintrospect.xml
More file actions
118 lines (118 loc) · 3.82 KB
/
Copy pathintrospect.xml
File metadata and controls
118 lines (118 loc) · 3.82 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!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.freedesktop.DBus.Properties">
<method name="Get">
<arg type="s" name="interface_name" direction="in"/>
<arg type="s" name="property_name" direction="in"/>
<arg type="v" name="value" direction="out"/>
</method>
<method name="GetAll">
<arg type="s" name="interface_name" direction="in"/>
<arg type="a{sv}" name="properties" direction="out"/>
</method>
<method name="Set">
<arg type="s" name="interface_name" direction="in"/>
<arg type="s" name="property_name" direction="in"/>
<arg type="v" name="value" direction="in"/>
</method>
<signal name="PropertiesChanged">
<arg type="s" name="interface_name"/>
<arg type="a{sv}" name="changed_properties"/>
<arg type="as" name="invalidated_properties"/>
</signal>
</interface>
<interface name="org.freedesktop.DBus.Introspectable">
<method name="Introspect">
<arg type="s" name="xml_data" direction="out"/>
</method>
</interface>
<interface name="org.freedesktop.DBus.Peer">
<method name="Ping"/>
<method name="GetMachineId">
<arg type="s" name="machine_uuid" direction="out"/>
</method>
</interface>
<interface name="org.mpris.MediaPlayer2">
<method name="Raise">
</method>
<method name="Quit">
</method>
<property type="b" name="CanQuit" access="read">
</property>
<property type="b" name="CanRaise" access="read">
</property>
<property type="b" name="HasTrackList" access="read">
</property>
<property type="s" name="Identity" access="read">
</property>
<property type="s" name="DesktopEntry" access="read">
</property>
<property type="as" name="SupportedUriSchemes" access="read">
</property>
<property type="as" name="SupportedMimeTypes" access="read">
</property>
</interface>
<interface name="org.mpris.MediaPlayer2.Player">
<method name="Next">
</method>
<method name="Previous">
</method>
<method name="Pause">
</method>
<method name="PlayPause">
</method>
<method name="Stop">
</method>
<method name="Play">
</method>
<method name="Seek">
<arg type="x" name="Offset" direction="in">
</arg>
</method>
<method name="SetPosition">
<arg type="o" name="TrackId" direction="in">
</arg>
<arg type="x" name="Position" direction="in">
</arg>
</method>
<method name="OpenUri">
<arg type="s" name="Uri" direction="in">
</arg>
</method>
<signal name="Seeked">
<arg type="x" name="Position">
</arg>
</signal>
<property type="s" name="PlaybackStatus" access="read">
</property>
<property type="s" name="LoopStatus" access="readwrite">
</property>
<property type="d" name="Rate" access="readwrite">
</property>
<property type="b" name="Shuffle" access="readwrite">
</property>
<property type="a{sv}" name="Metadata" access="read">
</property>
<property type="d" name="Volume" access="readwrite">
</property>
<property type="x" name="Position" access="read">
</property>
<property type="d" name="MinimumRate" access="read">
</property>
<property type="d" name="MaximumRate" access="read">
</property>
<property type="b" name="CanGoNext" access="read">
</property>
<property type="b" name="CanGoPrevious" access="read">
</property>
<property type="b" name="CanPlay" access="read">
</property>
<property type="b" name="CanPause" access="read">
</property>
<property type="b" name="CanSeek" access="read">
</property>
<property type="b" name="CanControl" access="read">
</property>
</interface>
</node>