aboutsummaryrefslogtreecommitdiffstats
path: root/applets/notify/notification-manager.xml
blob: 8a13ab49cc576bb270bf7ad6a1ae850298e30d8f (plain)
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
<?xml version="1.0" encoding="UTF-8" ?>

<node name="/org/freedesktop/Notifications">
  <interface name="org.freedesktop.Notifications">

    <method name="Notify">
      <arg type="s" name="app_name" direction="in" />
      <arg type="u" name="id" direction="in" />
      <arg type="s" name="icon" direction="in" />
      <arg type="s" name="summary" direction="in" />
      <arg type="s" name="body" direction="in" />
      <arg type="as" name="actions" direction="in" />
      <arg type="a{sv}" name="hints" direction="in" />
      <arg type="i" name="timeout" direction="in" />
      <arg type="u" name="return_id" direction="out" />
    </method>

    <method name="CloseNotification">
      <arg type="u" name="id" direction="in" />
    </method>

    <method name="GetCapabilities">
      <arg type="as" name="caps" direction="out"/>
    </method>

    <method name="GetServerInformation">
      <arg type="s" name="name" direction="out"/>
      <arg type="s" name="vendor" direction="out"/>
      <arg type="s" name="version" direction="out"/>
    </method>

    <signal name="NotificationClosed">
      <arg type="u" name="id"/>
      <arg type="u" name="reason"/>
    </signal>
  </interface>
</node>