offapi/com/sun/star/drawing/Shape.idl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+)
New commits: commit 66bb8f8f0f11d4cb3db1933af0d25fbb85eb3028 Author: Michael Stahl <michael.st...@allotropia.de> AuthorDate: Wed Jul 5 13:06:15 2023 +0200 Commit: Michael Stahl <michael.st...@allotropia.de> CommitDate: Wed Jul 5 19:12:43 2023 +0200 offapi: add Title/Description properties from CWS aw038 (OOo 2.2) Change-Id: I2a851ef76b840d1fa5479dcb182a63590a2d4065 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154052 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.st...@allotropia.de> (cherry picked from commit a67675e7e248e056637be8b70d620379cdfb682e) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154040 diff --git a/offapi/com/sun/star/drawing/Shape.idl b/offapi/com/sun/star/drawing/Shape.idl index e2faa4fbec48..118031488426 100644 --- a/offapi/com/sun/star/drawing/Shape.idl +++ b/offapi/com/sun/star/drawing/Shape.idl @@ -182,6 +182,26 @@ published service Shape @since LibreOffice 4.3 */ [optional, property] short RelativeWidthRelation; + + /** contains short title for the object + + <p>This short title is visible as an alternative tag in HTML format. + Accessibility tools can read this text.</p> + + @since OOo 2.2 + */ + [optional, property] string Title; + + /** contains description for the object + + <p>The long description text can be entered to describe an object in + more detail to users with screen reader software. The description is + visible as an alternative tag for accessibility tools.</p> + + @since OOo 2.2 + */ + [optional, property] string Description; + };