diff options
author | Ted Gould <ted@gould.cx> | 2010-10-08 15:55:30 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-10-08 15:55:30 -0600 |
commit | 50440e60b3089bde091776f0c2551cc0182ba33c (patch) | |
tree | 4bf937c24fe06ab89f5577f4dd42444877200fd3 /src/notification-watcher.xml | |
parent | fe08c86fc6b9d9d843149bf195b995d7e38a2c40 (diff) | |
parent | ea206ef1316942b005fd538dc8a251bd239291cd (diff) | |
download | libayatana-appindicator-50440e60b3089bde091776f0c2551cc0182ba33c.tar.gz libayatana-appindicator-50440e60b3089bde091776f0c2551cc0182ba33c.tar.bz2 libayatana-appindicator-50440e60b3089bde091776f0c2551cc0182ba33c.zip |
Fixing the Watcher interface
Diffstat (limited to 'src/notification-watcher.xml')
-rw-r--r-- | src/notification-watcher.xml | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/src/notification-watcher.xml b/src/notification-watcher.xml index 5f19dd2..b03c5e3 100644 --- a/src/notification-watcher.xml +++ b/src/notification-watcher.xml @@ -3,25 +3,18 @@ <interface name="org.kde.StatusNotifierWatcher"> <!-- Properties --> - <!-- None currently --> + <property name="ProtocolVersion" type="i" access="read" /> + <property name="IsStatusNotifierHostRegistered" type="b" access="read" /> + <property name="RegisteredStatusNotifierItems" type="as" access="read" /> <!-- Methods --> <method name="RegisterStatusNotifierItem"> <annotation name="org.freedesktop.DBus.GLib.Async" value="true" /> <arg type="s" name="service" direction="in" /> </method> - <method name="RegisteredStatusNotifierItems"> - <arg type="as" name="services" direction="out" /> - </method> - <method name="ProtocolVersion"> - <arg type="s" name="version" direction="out" /> - </method> - <method name="RegisterNotificationHost"> + <method name="RegisterStatusNotifierHost"> <arg type="s" name="service" direction="in" /> </method> - <method name="IsNotificationHostRegistered"> - <arg type="b" name="hasHost" direction="out" /> - </method> <method name="XAyatanaRegisterNotificationApprover"> <annotation name="org.freedesktop.DBus.GLib.Async" value="true" /> <!-- The path where to find the approver interface --> @@ -31,15 +24,13 @@ </method> <!-- Signals --> - <signal name="ServiceRegistered"> + <signal name="StatusNotifierItemRegistered"> <arg type="s" name="service" direction="out" /> </signal> - <signal name="ServiceUnregistered"> + <signal name="StatusNotifierItemUnregistered"> <arg type="s" name="service" direction="out" /> </signal> - <signal name="NotificationHostRegistered"> - </signal> - <signal name="NotificationHostUnregistered"> + <signal name="StatusNotifierHostRegistered"> </signal> </interface> |