diff options
author | Attila Szűcs <attila.szucs@collabora.com> | 2024-02-08 15:46:07 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-02-16 13:07:18 +0100 |
commit | f846efa507252b0584d2753a251f2dd99c34541a (patch) | |
tree | a474277fabbca8c5687e1c5e1def2fb548d41760 /offapi | |
parent | 4897792975453024db8369c3d8c5f2e65c956d73 (diff) |
tdf#67347 pptx import: stacked text, minimal impl.
Display Stacked text, and
Import/Export Stacked property from/to pptx.
It is a minimal implementation, it does not import/export to .odp,
there is no user interface to set this property.
Multiline Stacked text is rendered as 1 line text.
XML_wordArtVertRtl is mapped to XML_wordArtVert.
Editing of text containing space character seems to
not work correctly.
Change-Id: I535da45e3a2f2d1550bad2a40e9909e0d561d0ef
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163121
Tested-by: Jenkins
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/text/WritingMode2.idl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/offapi/com/sun/star/text/WritingMode2.idl b/offapi/com/sun/star/text/WritingMode2.idl index f75108337a69..065912858de5 100644 --- a/offapi/com/sun/star/text/WritingMode2.idl +++ b/offapi/com/sun/star/text/WritingMode2.idl @@ -91,6 +91,16 @@ published constants WritingMode2 @since LibreOffice 7.5 */ const short TB_RL90 = 6; + + /** 'T' text within a line is written top-to-bottom, but characters are + 'E' not rotated. + 'X' This is like LR_TB where 1 Character fit in every line. + 'T' Only 1 line display is implemented. + This corresponds to OOXML attribute vert="wordArtVert" for shapes. + + @since LibreOffice 24.8 + */ + const short STACKED = 7; }; |