bus: follow D-bus policy
[platform/upstream/at-spi2-core.git] / idl / application.didl
1
2 /*
3   An interface identifying an object which is the root of the
4   hierarchy associated with a running application.
5 */
6 interface org.freestandards.atspi.Application {
7
8         /* A string indicating the type of user interface toolkit used by the application. */
9         read property string ToolkitName;
10
11         /* A string indicating the version of the applications accessibility bridge. */
12         read property string Version;
13
14         /* A string indicating the version of the AT-SPI specification
15            supported by the application */
16         read property string AtspiVersion;
17
18         /* Gets the locale in which the application is currently running. */
19         method GetLocale {
20                 LocaleType locale_type;
21         } reply {
22                 string locale;
23         }
24 }