File: mprisdbusinterface.xml

package info (click to toggle)
kdeconnect 0.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,800 kB
  • ctags: 729
  • sloc: cpp: 5,636; xml: 67; sh: 14; makefile: 12
file content (46 lines) | stat: -rw-r--r-- 1,870 bytes parent folder | download | duplicates (2)
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
<!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.mpris.MediaPlayer2.Player">
    <method name="Next"/>
    <method name="Previous"/>
    <method name="Pause"/>
    <method name="PlayPause"/>
    <method name="Stop"/>
    <method name="Play"/>
    <method name="Seek">
      <arg direction="in" type="x" name="Offset"/>
    </method>
    <method name="SetPosition">
      <arg direction="in" type="o" name="TrackId"/>
      <arg direction="in" type="x" name="Position"/>
    </method>
    <method name="OpenUri">
      <arg direction="in" type="s"/>
    </method>
    <!-- Signals -->
    <signal name="Seeked">
      <arg type="x" name="Position"/>
    </signal>
    <!-- Properties -->
    <property access="read" type="s" name="PlaybackStatus"/>
    <property access="readwrite" type="s" name="LoopStatus"/>
    <property access="readwrite" type="d" name="Rate"/>
    <property access="readwrite" type="b" name="Shuffle"/>
    <property access="read" type="a{sv}" name="Metadata">
      <annotation value="QVariantMap" name="com.trolltech.QtDBus.QtTypeName"/>
      <annotation value="QVariantMap" name="org.qtproject.QtDBus.QtTypeName"/>
    </property>
    <property access="readwrite" type="d" name="Volume"/>
    <property access="read" type="x" name="Position"/>
    <property access="read" type="d" name="MinimumRate"/>
    <property access="read" type="d" name="MaximumRate"/>
    <property access="read" type="b" name="CanGoNext"/>
    <property access="read" type="b" name="CanGoPrevious"/>
    <property access="read" type="b" name="CanPlay"/>
    <property access="read" type="b" name="CanPause"/>
    <property access="read" type="b" name="CanSeek"/>
    <property access="read" type="b" name="CanControl"/>
  </interface>
</node>