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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
<node>
<interface name="org.mpris.MediaPlayer2">
<method name="Raise"/>
<method name="Quit"/>
<property access="read" type="b" name="CanQuit"/>
<property access="read" type="b" name="CanRaise"/>
<property access="read" type="b" name="HasTrackList"/>
<property access="read" type="s" name="Identity"/>
<property access="read" type="s" name="DesktopEntry"/>
<property access="read" type="as" name="SupportedUriSchemes"/>
<property access="read" type="as" name="SupportedMimeTypes"/>
</interface>
<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"/>
</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>
<interface name="org.mpris.MediaPlayer2.TrackList">
<method name="GetTracksMetadata">
<arg direction="in" name="TrackIds" type="ao">
</arg>
<arg direction="out" type="aa{sv}" name="Metadata">
</arg>
</method>
<method name="AddTrack">
<arg direction="in" type="s" name="Uri">
</arg>
<arg direction="in" type="o" name="AfterTrack">
</arg>
<arg direction="in" type="b" name="SetAsCurrent">
</arg>
</method>
<method name="RemoveTrack">
<arg direction="in" type="o" name="TrackId">
</arg>
</method>
<method name="GoTo">
<arg direction="in" type="o" name="TrackId">
</arg>
</method>
<property name="Tracks" type="ao" access="read">
<annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="invalidates"/>
</property>
<property name="CanEditTracks" type="b" access="read">
<annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="true"/>
</property>
<signal name="TrackListReplaced">
<arg name="Tracks" type="ao">
</arg>
<arg name="CurrentTrack" type="o">
</arg>
</signal>
<signal name="TrackAdded">
<arg type="a{sv}" name="Metadata">
</arg>
<arg type="o" name="AfterTrack">
</arg>
</signal>
<signal name="TrackRemoved">
<arg type="o" name="TrackId">
</arg>
</signal>
<signal name="TrackMetadataChanged">
<arg type="o" name="TrackId">
</arg>
<arg type="a{sv}" name="Metadata">
</arg>
</signal>
</interface>
<interface name="org.mpris.MediaPlayer2.Playlists">
<method name="ActivatePlaylist">
<arg direction="in" name="PlaylistId" type="o">
</arg>
</method>
<method name="GetPlaylists">
<arg direction="in" name="Index" type="u">
</arg>
<arg direction="in" name="MaxCount" type="u">
</arg>
<arg direction="in" name="Order" type="s">
</arg>
<arg direction="in" name="ReverseOrder" type="b">
</arg>
<arg direction="out" name="Playlists" type="a(oss)">
</arg>
</method>
<property name="PlaylistCount" type="u" access="read">
<annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="true"/>
</property>
<property name="Orderings" type="as" access="read">
<annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="true"/>
</property>
<property name="ActivePlaylist" type="(b(oss))" access="read">
<annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="true"/>
</property>
<signal name="PlaylistChanged">
<arg name="Playlist" type="(oss)">
</arg>
</signal>
</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 name="value" 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 name="values" type="a{sv}" direction="out"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QVariantMap"/>
</method>
</interface>
<interface name="org.freedesktop.DBus.Introspectable">
<method name="Introspect">
<arg name="xml_data" type="s" direction="out"/>
</method>
</interface>
<interface name="org.freedesktop.DBus.Peer">
<method name="Ping"/>
<method name="GetMachineId">
<arg name="machine_uuid" type="s" direction="out"/>
</method>
</interface>
</node>
|