~robertcarr/libunity-webapps/fix-1059846-happy-october

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
<node>
  <interface name='com.canonical.Unity.Webapps.MusicPlayer'>
    <method name='SetTrack'>
      <arg type='s' name='artist' direction='in'/>
      <arg type='s' name='album' direction = 'in'/>
      <arg type='s' name='title' direction='in'/>
      <arg type='s' name='iconurl' direction='in'/>
    </method>
    
    <method name='SetPlaylists'>
      <arg type='as' name='playlist' direction='in'/>
    </method>

    <property name="PlaybackState" type="i" access="readwrite"></property>
    <property name="CanGoPrevious" type="b" access="readwrite"></property>
    <property name="CanGoNext" type="b" access="readwrite"></property>
    <property name="CanPlay" type="b" access="readwrite"></property>
    <property name="CanPause" type="b" access="readwrite"></property>
    
    <signal name='PlayPause'>
    </signal>
    <signal name='Previous'>
    </signal>
    <signal name='Next'>
    </signal>

    <signal name="PlaylistActivated">
      <arg type='s' name='playlist' direction='out'/>
    </signal>
    
    
  </interface>
</node>