Blame idl/application.didl

Packit 8b6d7a
Packit 8b6d7a
/*
Packit 8b6d7a
  An interface identifying an object which is the root of the
Packit 8b6d7a
  hierarchy associated with a running application.
Packit 8b6d7a
*/
Packit 8b6d7a
interface org.freestandards.atspi.Application {
Packit 8b6d7a
Packit 8b6d7a
	/* A string indicating the type of user interface toolkit used by the application. */
Packit 8b6d7a
	read property string ToolkitName;
Packit 8b6d7a
Packit 8b6d7a
	/* A string indicating the version of the applications accessibility bridge. */
Packit 8b6d7a
	read property string Version;
Packit 8b6d7a
Packit 8b6d7a
	/* A string indicating the version of the AT-SPI specification
Packit 8b6d7a
           supported by the application */
Packit 8b6d7a
	read property string AtspiVersion;
Packit 8b6d7a
Packit 8b6d7a
	/* Gets the locale in which the application is currently running. */
Packit 8b6d7a
	method GetLocale {
Packit 8b6d7a
		LocaleType locale_type;
Packit 8b6d7a
	} reply {
Packit 8b6d7a
		string locale;
Packit 8b6d7a
	}
Packit 8b6d7a
}