~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
<node>
  <interface name='com.canonical.Unity.Webapps.Launcher'>
    <method name='SetCount'>
      <arg type='i' name="count" direction="in"/>
    </method>
    <method name='ClearCount'>
    </method>
    
    <method name='SetProgress'>
      <arg type='d' name="progress" direction="in"/>
    </method>
    <method name='ClearProgress'>
    </method>
    
    <method name='SetUrgent'>
    </method>

    <method name='AddStaticAction'>
      <arg type='s' name="label" direction="in"/>
      <arg type='s' name="page" direction="in"/>
    </method>
    <method name='RemoveStaticActions'>
    </method>

    <method name='AddAction'>
      <arg type='s' name="label" direction="in"/>
      <arg type="i" name="interest" direction="in"/>
    </method>
    <method name='RemoveAction'>
      <arg type='s' name="label" direction="in"/>
      <arg type="i" name="interest" direction="in"/>
    </method>
    <method name='RemoveActions'>
      <arg type="i" name="interest" direction="in"/>
    </method>
    
    <signal name='ActionInvoked'>
      <arg type="s" name="label" direction="out"/>
      <arg type="i" name="interest" direction="out"/>
    </signal>
	    
  </interface>
</node>