enlightenment/src/modules/music-control/introspect.xml

97 lines
3.9 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<node name="/org/mpris/MediaPlayer2">
<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 type="s" direction="in" />
<arg type="s" direction="in" />
<arg type="v" direction="out" />
</method>
<method name="GetAll">
<arg type="s" direction="in" />
<arg type="a{sv}" direction="out" />
</method>
<method name="Set">
<arg type="s" direction="in" />
<arg type="s" direction="in" />
<arg type="v" direction="in" />
</method>
<signal name="PropertiesChanged">
<arg type="s" />
<arg type="a{sv}" />
<arg type="as" />
</signal>
</interface>
<interface name="org.mpris.MediaPlayer2">
<method name="Quit">
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<method name="Raise">
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<property name="CanQuit" type="b" access="read" />
<property name="CanRaise" type="b" access="read" />
<property name="DesktopEntry" type="s" access="read" />
<property name="HasTrackList" type="b" access="read" />
<property name="Identity" type="s" access="read" />
<property name="SupportedMimeTypes" type="as" access="read" />
<property name="SupportedUriSchemes" type="as" access="read" />
</interface>
<interface name="org.mpris.MediaPlayer2.Player">
<method name="Next">
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<method name="OpenUri">
<arg type="s" direction="in" />
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<method name="Pause">
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<method name="Play">
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<method name="PlayPause">
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<method name="Previous">
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<method name="Seek">
<arg type="x" direction="in" />
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<method name="SetPosition">
<arg type="o" direction="in" />
<arg type="x" direction="in" />
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<method name="Stop">
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true" />
</method>
<signal name="Seeked">
<arg type="x" />
</signal>
<property name="CanControl" type="b" access="read" />
<property name="CanGoNext" type="b" access="read" />
<property name="CanGoPrevious" type="b" access="read" />
<property name="CanPause" type="b" access="read" />
<property name="CanPlay" type="b" access="read" />
<property name="CanSeek" type="b" access="read" />
<property name="LoopStatus" type="s" access="readwrite" />
<property name="MaximumRate" type="d" access="read" />
<property name="Metadata" type="a{sv}" access="read" />
<property name="MinimumRate" type="d" access="read" />
<property name="PlaybackStatus" type="s" access="read" />
<property name="Position" type="x" access="read" />
<property name="Rate" type="d" access="readwrite" />
<property name="Shuffle" type="b" access="readwrite" />
<property name="Volume" type="d" access="readwrite" />
</interface>
</node>