diff options
author | Niklas Johansson <sleeping.pillow@gmail.com> | 2015-01-20 19:20:38 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-01-20 20:35:48 +0000 |
commit | 46f51b4659e772c07c0ebfe5fe64aeb830e2a992 (patch) | |
tree | 55cf20a4003b313ecd95714966e61bb0665f9e5b /offapi | |
parent | 24c7c11cd112d33014653166c6d5b3d012114834 (diff) |
Add documentation for AccessibleStates STALE, OFFSCREEN and COLLAPSE
Change-Id: I6bfcd180f0c1d9e63577f58685ce64c509d91326
Reviewed-on: https://gerrit.libreoffice.org/14055
Tested-by: Michael Stahl <mstahl@redhat.com>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/accessibility/AccessibleStateType.idl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/offapi/com/sun/star/accessibility/AccessibleStateType.idl b/offapi/com/sun/star/accessibility/AccessibleStateType.idl index 25ac3ab5dcb2..99602f13af11 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; }; |