diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-01-06 10:17:44 -0500 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-01-06 10:17:44 -0500 |
commit | 9d5b3b0e989c12c8ed600272aa895390b277c0dc (patch) | |
tree | 8e415a8e7136d6e135ec88d6cd186f1ae04e35e2 /src/gen-notification-watcher.xml.c | |
parent | 54c9e642092a203b35f63acf915eef78d2cb1ef0 (diff) | |
parent | 2437d4ba20b168534165456ed0ed989a9f5f2695 (diff) | |
download | libayatana-appindicator-9d5b3b0e989c12c8ed600272aa895390b277c0dc.tar.gz libayatana-appindicator-9d5b3b0e989c12c8ed600272aa895390b277c0dc.tar.bz2 libayatana-appindicator-9d5b3b0e989c12c8ed600272aa895390b277c0dc.zip |
* Merged changes from ~ubuntu-desktop package
* Intial release.
* debian/rules
- Changes to build targets to get it building multipass for
python 2.6 and 2.7
Diffstat (limited to 'src/gen-notification-watcher.xml.c')
-rw-r--r-- | src/gen-notification-watcher.xml.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/gen-notification-watcher.xml.c b/src/gen-notification-watcher.xml.c new file mode 100644 index 0000000..605195c --- /dev/null +++ b/src/gen-notification-watcher.xml.c @@ -0,0 +1,39 @@ +const char * _notification_watcher = +"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +"<node name=\"/StatusNotifierWatcher\">\n" +" <interface name=\"org.kde.StatusNotifierWatcher\">\n" +"\n" +"<!-- Properties -->\n" +" <property name=\"ProtocolVersion\" type=\"i\" access=\"read\" />\n" +" <property name=\"IsStatusNotifierHostRegistered\" type=\"b\" access=\"read\" />\n" +" <property name=\"RegisteredStatusNotifierItems\" type=\"as\" access=\"read\" />\n" +"\n" +"<!-- Methods -->\n" +" <method name=\"RegisterStatusNotifierItem\">\n" +" <annotation name=\"org.freedesktop.DBus.GLib.Async\" value=\"true\" />\n" +" <arg type=\"s\" name=\"service\" direction=\"in\" />\n" +" </method>\n" +" <method name=\"RegisterStatusNotifierHost\">\n" +" <arg type=\"s\" name=\"service\" direction=\"in\" />\n" +" </method>\n" +" <method name=\"XAyatanaRegisterNotificationApprover\">\n" +" <annotation name=\"org.freedesktop.DBus.GLib.Async\" value=\"true\" />\n" +" <!-- The path where to find the approver interface -->\n" +" <arg type=\"o\" name=\"path\" direction=\"in\" />\n" +" <!-- List of categories to approve, none represents all -->\n" +" <arg type=\"as\" name=\"categories\" direction=\"in\" />\n" +" </method>\n" +"\n" +"<!-- Signals -->\n" +" <signal name=\"StatusNotifierItemRegistered\">\n" +" <arg type=\"s\" name=\"service\" direction=\"out\" />\n" +" </signal>\n" +" <signal name=\"StatusNotifierItemUnregistered\">\n" +" <arg type=\"s\" name=\"service\" direction=\"out\" />\n" +" </signal>\n" +" <signal name=\"StatusNotifierHostRegistered\">\n" +" </signal>\n" +"\n" +" </interface>\n" +"</node>\n" +; |