Mercurial > audlegacy
annotate src/audacious/mpris_tracklist.xml @ 3759:9e54690956a0
finalised the API, I think.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Sun, 14 Oct 2007 21:37:31 -0500 |
parents | cbe86be4f19b |
children |
rev | line source |
---|---|
2703 | 1 <?xml version="1.0" encoding="UTF-8" ?> |
2 | |
3 <!-- | |
4 - Audacious: A cross-platform multimedia player | |
5 - Copyright (c) 2007 William Pitcock | |
3261
cbe86be4f19b
-Changed copyright notice
Ben Tucker <ben.tucker@gmail.com>
parents:
3121
diff
changeset
|
6 - Copyright (c) 2007 Ben Tucker |
2703 | 7 - |
8 - This program is free software; you can redistribute it and/or modify | |
9 - it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2771
diff
changeset
|
10 - the Free Software Foundation; under version 3 of the License. |
2703 | 11 - |
12 - This program is distributed in the hope that it will be useful, | |
13 - but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 - GNU General Public License for more details. | |
16 - | |
17 - You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2771
diff
changeset
|
18 - along with this program. If not, see <http://www.gnu.org/licenses>. |
2703 | 19 --> |
20 | |
2704 | 21 <node name="/TrackList"> |
2703 | 22 <interface name="org.freedesktop.MediaPlayer"> |
2704 | 23 <method name="GetMetadata"> |
24 <arg type="i" direction="in" /> | |
25 <arg type="a{sv}" direction="out" /> | |
26 </method> | |
27 <method name="GetCurrentTrack"> | |
28 <arg type="i" direction="out" /> | |
29 </method> | |
30 <method name="GetLength"> | |
31 <arg type="i" direction="out" /> | |
32 </method> | |
33 <method name="AddTrack"> | |
34 <arg type="s" direction="in" /> | |
35 <arg type="b" direction="in" /> | |
36 </method> | |
37 <method name="DelTrack"> | |
38 <arg type="i" direction="in" /> | |
39 </method> | |
40 <method name="Loop"> | |
41 <arg type="b" direction="in" /> | |
42 </method> | |
2771
4585019eb82e
[svn] -Renamed MPRIS /TrackList Shuffle method to Random
magma
parents:
2704
diff
changeset
|
43 <method name="Random"> |
2704 | 44 <arg type="b" direction="in" /> |
2703 | 45 </method> |
46 </interface> | |
47 </node> |