[Libreoffice-commits] core.git: offapi/com
Niklas Johansson
sleeping.pillow at gmail.com
Tue Jan 20 12:36:21 PST 2015
offapi/com/sun/star/accessibility/AccessibleStateType.idl | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
New commits:
commit 46f51b4659e772c07c0ebfe5fe64aeb830e2a992
Author: Niklas Johansson <sleeping.pillow at gmail.com>
Date: Tue Jan 20 19:20:38 2015 +0100
Add documentation for AccessibleStates STALE, OFFSCREEN and COLLAPSE
Change-Id: I6bfcd180f0c1d9e63577f58685ce64c509d91326
Reviewed-on: https://gerrit.libreoffice.org/14055
Tested-by: Michael Stahl <mstahl at redhat.com>
Reviewed-by: Michael Stahl <mstahl at redhat.com>
diff --git a/offapi/com/sun/star/accessibility/AccessibleStateType.idl b/offapi/com/sun/star/accessibility/AccessibleStateType.idl
index 25ac3ab..99602f1 100644
--- a/offapi/com/sun/star/accessibility/AccessibleStateType.idl
+++ b/offapi/com/sun/star/accessibility/AccessibleStateType.idl
@@ -189,7 +189,10 @@ constants AccessibleStateType
*/
const short SINGLE_LINE = 26;
- /** ???
+ /** Object information is stale and might not be up to date
+
+ <p>Indicates that the information that is returned from this object
+ might be out of sync with with the application.</p>
*/
const short STALE = 27;
@@ -225,10 +228,14 @@ constants AccessibleStateType
// OFFSCREEN only exists in MSAA/IA2, but not in ATK/JAA/NSAccessibility.
// MT: Shouldn't this be the same like !SHOWING in UAA/ATK?
+ /** Indicates the object is outside of the screen area
+ */
const short OFFSCREEN = 33;
// COLLAPSED exists in MSAA/IA2, and now also in JAA, but not in ATK/NSAccessibility. In NSAccessibility, there is a notification for collapse.
// In opposite to MSAA, UAA has EXPANDABLE, so EXPANDABLE && !EXPANDED should be the same like COLLAPSED.
+ /** Indicates that the object is collapsed
+ */
const short COLLAPSE = 34;
};
More information about the Libreoffice-commits
mailing list