File: rb-playlist-manager.xml

package info (click to toggle)
rhythmbox 0.11.6-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 26,232 kB
  • ctags: 11,434
  • sloc: ansic: 97,824; xml: 36,080; sh: 9,341; python: 4,193; makefile: 2,130; cpp: 153
file content (42 lines) | stat: -rw-r--r-- 1,206 bytes parent folder | download | duplicates (3)
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
<?xml version="1.0" encoding="UTF-8" ?>

<node name="/">
  <interface name="org.gnome.Rhythmbox.PlaylistManager">

    <method name="getPlaylists">
      <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_playlist_manager_get_playlist_names"/>
      <arg type="as" direction="out"/>
    </method>
    
    <method name="createPlaylist">
      <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_playlist_manager_create_static_playlist"/>
      <arg type="s" name="name"/>
    </method>

    <method name="deletePlaylist">
      <arg type="s" name="name"/>
    </method>

    <method name="addToPlaylist">
      <arg type="s" name="playlist"/>
      <arg type="s" name="uri"/>
    </method>

    <method name="removeFromPlaylist">
      <arg type="s" name="playlist"/>
      <arg type="s" name="uri"/>
    </method>

    <method name="exportPlaylist">
      <arg type="s" name="playlist"/>
      <arg type="s" name="uri"/>
      <arg type="b" name="m3u_format"/>
    </method>

    <method name="importPlaylist">
      <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="rb_playlist_manager_parse_file"/>
      <arg type="s" name="uri"/>
    </method>

  </interface>
</node>