blob: bd7c6df3b1ea0784fb7e2483c7b67a47c6a907f4 (
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
|
<?xml version="1.0"?>
<!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.Introspectable">
<method name="Introspect">
<arg name="xml" type="s" direction="out"/>
</method>
</interface>
<interface name="org.bluez.MediaPlayer1">
<method name="Play"/>
<method name="Pause"/>
<method name="Stop"/>
<method name="Next"/>
<method name="Previous"/>
<method name="FastForward"/>
<method name="Rewind"/>
<property name="Name" type="s" access="read"/>
<property name="Type" type="s" access="read"/>
<property name="Subtype" type="s" access="read"/>
<property name="Position" type="u" access="read"/>
<property name="Status" type="s" access="read"/>
<property name="Equalizer" type="s" access="readwrite"/>
<property name="Repeat" type="s" access="readwrite"/>
<property name="Shuffle" type="s" access="readwrite"/>
<property name="Scan" type="s" access="readwrite"/>
<property name="Track" type="a{sv}" access="read"/>
<property name="Device" type="o" access="read"/>
<property name="Browsable" type="b" access="read"/>
<property name="Searchable" type="b" access="read"/>
<property name="Playlist" type="o" access="read"/>
</interface>
<interface name="org.freedesktop.DBus.Properties">
<method name="Get">
<arg name="interface" type="s" direction="in"/>
<arg name="name" type="s" direction="in"/>
<arg name="value" type="v" direction="out"/>
</method>
<method name="Set">
<arg name="interface" type="s" direction="in"/>
<arg name="name" type="s" direction="in"/>
<arg name="value" type="v" direction="in"/>
</method>
<method name="GetAll">
<arg name="interface" type="s" direction="in"/>
<arg name="properties" type="a{sv}" direction="out"/>
</method>
<signal name="PropertiesChanged">
<arg name="interface" type="s"/>
<arg name="changed_properties" type="a{sv}"/>
<arg name="invalidated_properties" type="as"/>
</signal>
</interface>
</node>
|