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
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.freedesktop.Notifications">
<annotation name="org.gtk.GDBus.C.Name" value="FdNotificationsGen" />
<method name="CloseNotification">
<arg type="u" name="id" direction="in" />
</method>
<method name="GetCapabilities">
<arg type="as" name="capabilities" 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" />
<arg type="s" name="spec_version" direction="out" />
</method>
<method name="Notify">
<arg type="s" name="app_name" direction="in" />
<arg type="u" name="replaces_id" direction="in" />
<arg type="s" name="app_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="expire_timeout" direction="in" />
<arg type="u" name="id" direction="out" />
</method>
<signal name="ActivationToken">
<arg type="u" name="id" />
<arg type="s" name="activation_token" />
</signal>
<signal name="ActionInvoked">
<arg type="u" name="id" />
<arg type="s" name="action_key" />
</signal>
<signal name="NotificationClosed">
<arg type="u" name="id" />
<arg type="u" name="reason" />
</signal>
</interface>
</node>
|