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
|
<?xml version="1.0" encoding="UTF-8" ?>
<node name="/">
<interface name="org.gnome.Rhythmbox.Player">
<method name="playPause">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_playpause"/>
<arg type="b"/>
</method>
<method name="previous">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_do_previous"/>
</method>
<method name="next">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_do_next"/>
</method>
<method name="getPlaying">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_get_playing"/>
<arg type="b" name="playing" direction="out"/>
</method>
<method name="getPlayingUri">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_get_playing_path"/>
<arg type="s" name="uri" direction="out">
<annotation name="org.freedesktop.DBus.GLib.Const" value=""/>
</arg>
</method>
<method name="getElapsed">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_get_playing_time"/>
<arg type="u" name="elapsed" direction="out"/>
</method>
<method name="setElapsed">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_set_playing_time"/>
<arg type="u" name="elapsed" direction="in"/>
</method>
<method name="getVolume">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_get_volume"/>
<arg type="d" name="volume" direction="out"/>
</method>
<method name="setVolume">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_set_volume"/>
<arg type="d" name="volume" direction="in"/>
</method>
<method name="setVolumeRelative">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_set_volume_relative"/>
<arg type="d" name="volume" direction="in"/>
</method>
<method name="setMute">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_set_mute"/>
<arg type="b" name="mute" direction="in"/>
</method>
<method name="getMute">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_shell_player_get_mute"/>
<arg type="b" name="mute" direction="out"/>
</method>
<!-- <property name="playing" access="readwrite"/> -->
<signal name="playingChanged">
<arg type="b" name="playing"/>
</signal>
<signal name="playingUriChanged">
<arg type="s" name="playingUri"/>
</signal>
<signal name="elapsedChanged">
<arg type="u" name="elapsed"/>
</signal>
<signal name="playingSongPropertyChanged">
<arg type="s" name="uri"/>
<arg type="s" name="property"/>
<arg type="v" name="old"/>
<arg type="v" name="new"/>
</signal>
</interface>
</node>
|