diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2017-06-19 15:32:16 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-06-28 22:38:49 +0200 |
commit | d72e0cadceb0b43928a9b4f18d75c9d5d30afdda (patch) | |
tree | 13a4359e82a473185c5130cda7aa4efbe822955d /include/svx | |
parent | 91c838a4c9d0d7a8438e2e76a3636dc67a6221bb (diff) |
Watermark: tdf#91687 correct size in the .doc
Export:
* Watermarks saved using Writer were very small in the MSO.
Export fUsegtextFStretch property in the Geometry Text
Boolean Properties.
* tdf#91687: SnapRect contains size of Watermark after rotation.
We have to export size without rotation.
Import:
* When import set height depending on used font and width.
Text will keep the ratio. Remember the padding for export.
* added unit test
* introduced enum to avoid magic numbers for stretch and best fit
properties.
Change-Id: I3427afe78488d499f13c543ca401c096161aaf34
Reviewed-on: https://gerrit.libreoffice.org/38979
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/msdffdef.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/svx/msdffdef.hxx b/include/svx/msdffdef.hxx index 73b9d2c2b095..afabc5ca7c31 100644 --- a/include/svx/msdffdef.hxx +++ b/include/svx/msdffdef.hxx @@ -846,6 +846,13 @@ enum MSO_SYSCOLORINDEX { mso_colorBParamShift = 16 // To extract the parameter value }; +enum MSO_TextGeometryProperties { + use_gtextFBestFit = 0x00000100, + use_gtextFStretch = 0x00000400, + gtextFBestFit = 0x01000000, + gtextFStretch = 0x04000000 +}; + //ALT_TXT_MSINTEROP #define MSPROP_DESCRIPTION_MAX_LEN 4096 |