diff options
author | Ted Gould <ted@gould.cx> | 2011-01-27 15:57:33 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-01-27 15:57:33 -0600 |
commit | 94b8617e7161b6ff2357bca6c863e93e6d5a9a08 (patch) | |
tree | 83ba4d7ab131d11183ed4588c7ae85719dc88df5 /src/gen-application-service.xml.c | |
parent | 1f80de2bdc26fb3b0e432ef154a968abee596abf (diff) | |
parent | 7ac86017b815b015a994bfdf4e91fc5af7e53e10 (diff) | |
download | ayatana-indicator-application-94b8617e7161b6ff2357bca6c863e93e6d5a9a08.tar.gz ayatana-indicator-application-94b8617e7161b6ff2357bca6c863e93e6d5a9a08.tar.bz2 ayatana-indicator-application-94b8617e7161b6ff2357bca6c863e93e6d5a9a08.zip |
Sync to Ubuntu Desktop
Diffstat (limited to 'src/gen-application-service.xml.c')
-rw-r--r-- | src/gen-application-service.xml.c | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/gen-application-service.xml.c b/src/gen-application-service.xml.c new file mode 100644 index 0000000..2a0277a --- /dev/null +++ b/src/gen-application-service.xml.c @@ -0,0 +1,61 @@ +const char * _application_service = +"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +"<!--\n" +"An interface for communication between the service and indicator.\n" +"\n" +"Copyright 2009 Canonical Ltd.\n" +"\n" +"Authors:\n" +" Ted Gould <ted@canonical.com>\n" +"\n" +"This program is free software: you can redistribute it and/or modify it \n" +"under the terms of the GNU General Public License version 3, as published \n" +"by the Free Software Foundation.\n" +"\n" +"This program is distributed in the hope that it will be useful, but \n" +"WITHOUT ANY WARRANTY; without even the implied warranties of \n" +"MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR \n" +"PURPOSE. See the GNU General Public License for more details.\n" +"\n" +"You should have received a copy of the GNU General Public License along \n" +"with this program. If not, see <http://www.gnu.org/licenses/>.\n" +"-->\n" +"<node name=\"/\">\n" +" <interface name=\"com.canonical.indicator.application.service\">\n" +"<!-- Properties -->\n" +" <!-- None currently -->\n" +"\n" +"<!-- Methods -->\n" +" <method name=\"GetApplications\">\n" +" <arg type=\"a(sisosss)\" name=\"applications\" direction=\"out\" />\n" +" </method>\n" +"\n" +"<!-- Signals -->\n" +" <signal name=\"ApplicationAdded\">\n" +" <arg type=\"s\" name=\"iconname\" direction=\"out\" />\n" +" <arg type=\"i\" name=\"position\" direction=\"out\" />\n" +" <arg type=\"s\" name=\"dbusaddress\" direction=\"out\" />\n" +" <arg type=\"o\" name=\"dbusobject\" direction=\"out\" />\n" +" <arg type=\"s\" name=\"iconpath\" direction=\"out\" />\n" +" <arg type=\"s\" name=\"label\" direction=\"out\" />\n" +" <arg type=\"s\" name=\"labelguide\" direction=\"out\" />\n" +" </signal>\n" +" <signal name=\"ApplicationRemoved\">\n" +" <arg type=\"i\" name=\"position\" direction=\"out\" />\n" +" </signal>\n" +" <signal name=\"ApplicationIconChanged\">\n" +" <arg type=\"i\" name=\"position\" direction=\"out\" />\n" +" <arg type=\"s\" name=\"icon_name\" direction=\"out\" />\n" +" </signal>\n" +" <signal name=\"ApplicationIconThemePathChanged\">\n" +" <arg type=\"i\" name=\"position\" direction=\"out\" />\n" +" <arg type=\"s\" name=\"icon_theme_path\" direction=\"out\" />\n" +" </signal>\n" +" <signal name=\"ApplicationLabelChanged\">\n" +" <arg type=\"i\" name=\"position\" direction=\"out\" />\n" +" <arg type=\"s\" name=\"label\" direction=\"out\" />\n" +" <arg type=\"s\" name=\"guide\" direction=\"out\" />\n" +" </signal>\n" +" </interface>\n" +"</node>\n" +; |