Mercurial > audlegacy
view src/audacious/mpris_player.xml @ 2750:4df1d5552a4d trunk
[svn] - map to right handlers
author | nenolod |
---|---|
date | Fri, 11 May 2007 21:20:27 -0700 |
parents | f3bc7cb81ed8 |
children | bf2d80abf76e |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8" ?> <!-- - Audacious: A cross-platform multimedia player - Copyright (c) 2007 William Pitcock - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; under version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. --> <node name="/Player"> <interface name="org.freedesktop.MediaPlayer"> <method name="Next" /> <method name="Prev" /> <method name="Pause" /> <method name="Stop" /> <method name="Play" /> <method name="Quit" /> <method name="Repeat"> <arg type="b" direction="in" /> </method> <method name="GetStatus"> <arg type="i" direction="out" /> </method> <method name="GetCaps"> <arg type="i" direction="out" /> </method> <method name="VolumeSet"> <arg type="i" direction="in" /> </method> <method name="VolumeGet"> <arg type="i" direction="out" /> </method> <method name="PositionSet"> <arg type="i" direction="in" /> </method> <method name="PositionGet"> <arg type="i" direction="out" /> </method> <signal name="CapsChange"> <arg type="i" /> </signal> <signal name="TrackChange"> <arg type="a{sv}" /> </signal> <signal name="StatusChange"> <arg type="i" /> </signal> </interface> </node>