~alexlauni/libunity-webapps/multiple-messaging-menu-accounts

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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<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'/>
      <arg type='i' name='interest' direction='in'/>
    </method>
    
    <method name='SetPlaylists'>
      <arg type='as' name='playlist' direction='in'/>
    </method>

    <method name='SetPlaybackState'>
      <arg type='i' name='interest' direction='in'/>
      <arg type='i' name='state' direction='in'/>
    </method>
    <method name='GetPlaybackState'>
      <arg type='i' name='interest' direction='in'/>
      <arg type='i' name='state' direction='out'/>
    </method>

    <method name='SetCanGoPrevious'>
      <arg type='i' name='interest' direction='in'/>
      <arg type='b' name='CanGoPrevious' direction='in'/>
    </method>
    <method name='GetCanGoPrevious'>
      <arg type='i' name='interest' direction='in'/>
      <arg type='b' name='CanGoPrevious' direction='out'/>
    </method>

    <method name='SetCanGoNext'>
      <arg type='i' name='interest' direction='in'/>
      <arg type='b' name='CanGoNext' direction='in'/>
    </method>
    <method name='GetCanGoNext'>
      <arg type='i' name='interest' direction='in'/>
      <arg type='b' name='CanGoNext' direction='out'/>
    </method>

    <method name='SetCanPlay'>
      <arg type='i' name='interest' direction='in'/>
      <arg type='b' name='CanPlay' direction='in'/>
    </method>
    <method name='GetCanPlay'>
      <arg type='i' name='interest' direction='in'/>
      <arg type='b' name='CanPlay' direction='out'/>
    </method>

    <method name='SetCanPause'>
      <arg type='i' name='interest' direction='in'/>
      <arg type='b' name='CanPause' direction='in'/>
    </method>
    <method name='GetCanPause'>
      <arg type='i' name='interest' direction='in'/>
      <arg type='b' name='CanPause' direction='out'/>
    </method>

    <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>