diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2021-12-13 08:41:10 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-12-13 10:10:10 +0100 |
commit | 7d1e4d12baa85d47f5945872a3bc186dd6ce1889 (patch) | |
tree | 8a93e32e5bf381addea2aefac964b2b0a48b1869 /include | |
parent | 416e38c589635b6817a550cb9272e68ddc9bc9e9 (diff) |
ODP import/export: refer to theme from shape text color with effects
Handle luminance modulation and offset (i.e. lighter and darker colors).
Change-Id: I536bbca1ed994e991c7ceac153d6a47cb6ef35f9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126722
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/colritem.hxx | 4 | ||||
-rw-r--r-- | include/xmloff/xmltoken.hxx | 2 | ||||
-rw-r--r-- | include/xmloff/xmltypes.hxx | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/include/editeng/colritem.hxx b/include/editeng/colritem.hxx index cd223d2777bc..99ebed218748 100644 --- a/include/editeng/colritem.hxx +++ b/include/editeng/colritem.hxx @@ -83,6 +83,10 @@ public: maTintShade = nTintOrShade; } + sal_Int16 GetLumMod() const { return mnLumMod; } + + sal_Int16 GetLumOff() const { return mnLumOff; } + void dumpAsXml(xmlTextWriterPtr pWriter) const override; }; diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx index 67885e78cc21..c17ffe8af69a 100644 --- a/include/xmloff/xmltoken.hxx +++ b/include/xmloff/xmltoken.hxx @@ -3454,6 +3454,8 @@ namespace xmloff::token { XML_ACCENT6, XML_HLINK, XML_FOLHLINK, + XML_COLOR_LUM_MOD, + XML_COLOR_LUM_OFF, XML_TOKEN_END }; diff --git a/include/xmloff/xmltypes.hxx b/include/xmloff/xmltypes.hxx index 3711e5d5db52..13e7c3fcc6c0 100644 --- a/include/xmloff/xmltypes.hxx +++ b/include/xmloff/xmltypes.hxx @@ -153,6 +153,7 @@ #define XML_TYPE_NEG_PERCENT16 0x00002023 // (100-x) #define XML_TYPE_DOUBLE_PERCENT 0x00002024 // 50% (source is a double from 0.0 to 1.0) #define XML_TYPE_HEX 0x00002025 // 00544F1B +#define XML_TYPE_PERCENT100 0x00002026 // 100th percent // special basic types #define XML_TYPE_RECTANGLE_LEFT 0x00000100 // the Left member of an awt::Rectangle as a measure |