aboutsummaryrefslogtreecommitdiff
path: root/src/application-service.xml
blob: f3164efbaafc3151c108273fefed739ffc543165 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<!--
An interface for communication between the service and indicator.

Copyright 2009 Canonical Ltd.

Authors:
    Ted Gould <ted@canonical.com>

This program is free software: you can redistribute it and/or modify it 
under the terms of the GNU General Public License version 3, as published 
by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but 
WITHOUT ANY WARRANTY; without even the implied warranties of 
MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along 
with this program.  If not, see <http://www.gnu.org/licenses/>.
-->
<node name="/">
	<interface name="com.canonical.indicator.application.service">
<!-- Properties -->
		<!-- None currently -->

<!-- Methods -->
		<method name="GetApplications">
			<arg type="a(sisossss)" name="applications" direction="out" />
		</method>
		<method name="ApplicationScrollEvent">
			<arg type="s" name="dbusaddress" direction="in" />
			<arg type="s" name="dbusobject" direction="in" />
			<arg type="i" name="delta" direction="in" />
			<arg type="u" name="direction" direction="in" />
		</method>

<!-- Signals -->
		<signal name="ApplicationAdded">
			<arg type="s" name="iconname" direction="out" />
			<arg type="i" name="position" direction="out" />
			<arg type="s" name="dbusaddress" direction="out" />
			<arg type="o" name="dbusobject" direction="out" />
			<arg type="s" name="iconpath" direction="out" />
			<arg type="s" name="label" direction="out" />
			<arg type="s" name="labelguide" direction="out" />
			<arg type="s" name="accessibledesc" direction="out" />
		</signal>
		<signal name="ApplicationRemoved">
			<arg type="i" name="position" direction="out" />
		</signal>
		<signal name="ApplicationIconChanged">
			<arg type="i" name="position" direction="out" />
			<arg type="s" name="icon_name" direction="out" />
			<arg type="s" name="icon_desc" direction="out" />
		</signal>
		<signal name="ApplicationIconThemePathChanged">
			<arg type="i" name="position" direction="out" />
			<arg type="s" name="icon_theme_path" direction="out" />
		</signal>
		<signal name="ApplicationLabelChanged">
			<arg type="i" name="position" direction="out" />
			<arg type="s" name="label" direction="out" />
			<arg type="s" name="guide" direction="out" />
		</signal>
	</interface>
</node>