diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2022-12-08 10:54:18 +0100 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2022-12-09 16:03:20 +0000 |
commit | 31084ebb59093be7dfe5ab53a20fdb3bcfde34b6 (patch) | |
tree | 5b4708eaca4fe58f585dff29f783287c2e47b197 /offapi | |
parent | e5986baa983e1c7b5e07c45299fd84be2c230fbe (diff) |
tdf#143311 offapi,oox,writerfilter,xmloff,sw: decorative flag on flys
* sw core RES_DECORATIVE as a FRMATR
* sw API SwXFrame property "Decorative"
* UI checkbox "Decorative"
* ODF import/export as loext:decorative on draw:frame
* DOCX export
* DOCX import - very non-obvious how to get it from model.xml to dmapper
* PDF/UA export: tag flys with this flag as Artifact
* test for DOCX filters, ODF filters, PDF export
Change-Id: I1ceb67fdd4e1cfa212aafdeb1c5f4ccd873d433e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143815
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/text/BaseFrameProperties.idl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/offapi/com/sun/star/text/BaseFrameProperties.idl b/offapi/com/sun/star/text/BaseFrameProperties.idl index 72bec7ffe63c..3108067a0ad5 100644 --- a/offapi/com/sun/star/text/BaseFrameProperties.idl +++ b/offapi/com/sun/star/text/BaseFrameProperties.idl @@ -363,6 +363,16 @@ published service BaseFrameProperties @since LibreOffice 7.4 */ [optional, property] string Tooltip; + + /** Determines if the frame is purely decorative. + + If `TRUE`, it is considered not part of the document content, + and may be ignored by assistive technologies. + + @since LibreOffice 7.5 + */ + [optional, property] boolean Decorative; + }; |