Mercurial > audlegacy
annotate src/audacious/mpris_player.xml @ 4778:dde7262d0a35
Moved HACKING and TODO under doc/.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Mon, 22 Sep 2008 20:14:12 +0300 |
parents | 904c58081f0a |
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:
2769
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:
2769
diff
changeset
|
18 - along with this program. If not, see <http://www.gnu.org/licenses>. |
2703 | 19 --> |
20 | |
2705 | 21 <node name="/Player"> |
2703 | 22 <interface name="org.freedesktop.MediaPlayer"> |
2769
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
23 <method name="Next"> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
24 <annotation name="org.freedesktop.DBus.GLib.NoReply" value=""/> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
25 </method> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
26 <method name="Prev"> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
27 <annotation name="org.freedesktop.DBus.GLib.NoReply" value=""/> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
28 </method> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
29 <method name="Pause"> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
30 <annotation name="org.freedesktop.DBus.GLib.NoReply" value=""/> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
31 </method> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
32 <method name="Stop"> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
33 <annotation name="org.freedesktop.DBus.GLib.NoReply" value=""/> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
34 </method> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
35 <method name="Play"> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
36 <annotation name="org.freedesktop.DBus.GLib.NoReply" value=""/> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
37 </method> |
3268
8af43e099cce
Added function prototypes for Disconnect and GetMetadata methods, and a prototype for the Disconnected signal.
Ben Tucker <ben.tucker@gmail.com>
parents:
3261
diff
changeset
|
38 <method name="Repeat"> |
8af43e099cce
Added function prototypes for Disconnect and GetMetadata methods, and a prototype for the Disconnected signal.
Ben Tucker <ben.tucker@gmail.com>
parents:
3261
diff
changeset
|
39 <annotation name="org.freedesktop.DBus.GLib.NoReply" value=""/> |
8af43e099cce
Added function prototypes for Disconnect and GetMetadata methods, and a prototype for the Disconnected signal.
Ben Tucker <ben.tucker@gmail.com>
parents:
3261
diff
changeset
|
40 <arg type="b" direction="in" /> |
8af43e099cce
Added function prototypes for Disconnect and GetMetadata methods, and a prototype for the Disconnected signal.
Ben Tucker <ben.tucker@gmail.com>
parents:
3261
diff
changeset
|
41 </method> |
2769
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
42 <method name="Quit"> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
43 <annotation name="org.freedesktop.DBus.GLib.NoReply" value=""/> |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
44 </method> |
2705 | 45 <method name="GetStatus"> |
2704 | 46 <arg type="i" direction="out" /> |
47 </method> | |
3261
cbe86be4f19b
-Changed copyright notice
Ben Tucker <ben.tucker@gmail.com>
parents:
3121
diff
changeset
|
48 <method name="GetMetadata"> |
cbe86be4f19b
-Changed copyright notice
Ben Tucker <ben.tucker@gmail.com>
parents:
3121
diff
changeset
|
49 <arg type="a{sv}" direction="out" /> |
cbe86be4f19b
-Changed copyright notice
Ben Tucker <ben.tucker@gmail.com>
parents:
3121
diff
changeset
|
50 </method> |
2705 | 51 <method name="GetCaps"> |
2704 | 52 <arg type="i" direction="out" /> |
53 </method> | |
2705 | 54 <method name="VolumeSet"> |
2769
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
55 <annotation name="org.freedesktop.DBus.GLib.NoReply" value=""/> |
2705 | 56 <arg type="i" direction="in" /> |
2704 | 57 </method> |
2705 | 58 <method name="VolumeGet"> |
59 <arg type="i" direction="out" /> | |
60 </method> | |
61 <method name="PositionSet"> | |
2769
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2705
diff
changeset
|
62 <annotation name="org.freedesktop.DBus.GLib.NoReply" value=""/> |
2704 | 63 <arg type="i" direction="in" /> |
64 </method> | |
2705 | 65 <method name="PositionGet"> |
66 <arg type="i" direction="out" /> | |
2704 | 67 </method> |
2705 | 68 |
69 <signal name="TrackChange"> | |
70 <arg type="a{sv}" /> | |
71 </signal> | |
72 <signal name="StatusChange"> | |
73 <arg type="i" /> | |
74 </signal> | |
3268
8af43e099cce
Added function prototypes for Disconnect and GetMetadata methods, and a prototype for the Disconnected signal.
Ben Tucker <ben.tucker@gmail.com>
parents:
3261
diff
changeset
|
75 <signal name="CapsChange"> |
8af43e099cce
Added function prototypes for Disconnect and GetMetadata methods, and a prototype for the Disconnected signal.
Ben Tucker <ben.tucker@gmail.com>
parents:
3261
diff
changeset
|
76 <arg type="i" /> |
3261
cbe86be4f19b
-Changed copyright notice
Ben Tucker <ben.tucker@gmail.com>
parents:
3121
diff
changeset
|
77 </signal> |
2703 | 78 </interface> |
79 </node> |