blob: 0a1c0d1720b3d2658579cdb144ea25e8c5cd9eb0 (
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
|
const char * _messages_service =
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<node name=\"/\">\n"
" <interface name=\"com.canonical.indicator.messages.service\">\n"
"\n"
"<!-- Methods -->\n"
" <method name=\"Watch\">\n"
" <annotation name=\"org.freedesktop.DBus.GLib.Async\" value=\"true\" />\n"
" </method>\n"
" <method name=\"AttentionRequested\">\n"
" <arg type=\"b\" name=\"dot\" direction=\"out\" />\n"
" </method>\n"
" <method name=\"IconShown\">\n"
" <arg type=\"b\" name=\"hidden\" direction=\"out\" />\n"
" </method>\n"
"\n"
"<!-- Signals -->\n"
" <signal name=\"AttentionChanged\">\n"
" <arg type=\"b\" name=\"dot\" direction=\"out\" />\n"
" </signal>\n"
" <signal name=\"IconChanged\">\n"
" <arg type=\"b\" name=\"hidden\" direction=\"out\" />\n"
" </signal>\n"
"\n"
" </interface>\n"
"</node>\n"
;
|