Kaydet (Commit) 46f51b46 authored tarafından Niklas Johansson's avatar Niklas Johansson Kaydeden (comit) Michael Stahl

Add documentation for AccessibleStates STALE, OFFSCREEN and COLLAPSE

Change-Id: I6bfcd180f0c1d9e63577f58685ce64c509d91326
Reviewed-on: https://gerrit.libreoffice.org/14055Tested-by: 's avatarMichael Stahl <mstahl@redhat.com>
Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst 24c7c11c
......@@ -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;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment