summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>2003-12-04 23:07:12 +0000
committerbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>2003-12-04 23:07:12 +0000
commitbf33393914582819faad2e404291c7deb53bec98 (patch)
treee34f23161b2a039be30bfc04cfa2dc4bbba2494d /idl
parent1b83d2d61e41423e6d48a1dc23df006c30e354bb (diff)
downloadat-spi2-core-bf33393914582819faad2e404291c7deb53bec98.tar.gz
Revved to 1.3.8. Fix for 121974. Added Application_getLocale.
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@570 e2bd861d-eb25-0410-b326-f6ed22b6b98c
Diffstat (limited to 'idl')
-rw-r--r--idl/Accessibility_Application.idl22
1 files changed, 21 insertions, 1 deletions
diff --git a/idl/Accessibility_Application.idl b/idl/Accessibility_Application.idl
index e62a7b82..33b4998d 100644
--- a/idl/Accessibility_Application.idl
+++ b/idl/Accessibility_Application.idl
@@ -27,6 +27,16 @@
#include <Accessibility_Accessible.idl>
module Accessibility {
+
+ enum LOCALE_TYPE {
+ LOCALE_TYPE_MESSAGES,
+ LOCALE_TYPE_COLLATE,
+ LOCALE_TYPE_CTYPE,
+ LOCALE_TYPE_MONETARY,
+ LOCALE_TYPE_NUMERIC,
+ LOCALE_TYPE_TIME
+ };
+
interface Application : Accessible {
/**
@@ -100,10 +110,20 @@ module Accessibility {
**/
boolean resume ();
+ /**
+ * getLocale:
+ *
+ * @lctype: the LocaleType for which the locale is queried.
+ * Gets the locale in which the application is currently operating.
+ * For the current message locale, use @lctype LOCALE_TYPE_MESSAGES.
+ *
+ * Returns: a string compliant with the POSIX standard for locale description.
+ **/
+ string getLocale (in LOCALE_TYPE lctype);
+
void unImplemented_ ();
void unImplemented2_ ();
void unImplemented3_ ();
- void unImplemented4_ ();
};
};