diff options
author | Samuel Thibault <sthibault@hypra.fr> | 2018-08-08 13:34:18 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2018-08-14 12:06:41 +0200 |
commit | 4917430c1c5e8105987e81d65d31df21955ad60e (patch) | |
tree | 83d242a3cb224327e5f984d6e093b47725e21f44 /offapi | |
parent | ed77565f1487ed93e2557b562c10e0f4e8673c6a (diff) |
tdf#116542 a11y: introduce STATIC role
This should be used for brief non-editable text which is not meant to have a
relation with another object (as opposed to text or label).
Change-Id: I46bfa56042a51295e9fa0d332babdbb40668ff0b
Reviewed-on: https://gerrit.libreoffice.org/58734
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/accessibility/AccessibleRole.idl | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/offapi/com/sun/star/accessibility/AccessibleRole.idl b/offapi/com/sun/star/accessibility/AccessibleRole.idl index ca3b79bb8b5c..681da637052a 100644 --- a/offapi/com/sun/star/accessibility/AccessibleRole.idl +++ b/offapi/com/sun/star/accessibility/AccessibleRole.idl @@ -248,6 +248,7 @@ constants AccessibleRole const short INTERNAL_FRAME = 29; /** An object used to present an icon or short string in an interface. + <p>See also TEXT and STATIC.</p> */ const short LABEL = 30; @@ -500,9 +501,9 @@ constants AccessibleRole /** Text role. <p>An object that presents text to the user. The text is usually - editable by the user as opposed to a label.</p> + editable by the user as opposed to a label or static text.</p> - <p>See also LABEL.</p> + <p>See also LABEL and STATIC.</p> */ const short TEXT = 60; @@ -729,6 +730,17 @@ constants AccessibleRole */ const short DOCUMENT_TEXT = 85; + /** Static text role. + + <p>An object that presents a brief amount of information to the user. + The text is not editable by the user as opposed to a text, and not + meant to have a relation with another object as opposed to a + label.</p> + + <p>See also LABEL and TEXT.</p> + */ + const short STATIC = 86; + }; }; }; }; }; |