diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2021-12-09 08:43:27 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-12-09 09:34:39 +0100 |
commit | 91f649a119d4b7ece26f9737a38663664953a57a (patch) | |
tree | b2d3d85cd532ed21a1b1f86b942659b4a2407ada /include/xmloff | |
parent | 27487243c3ee31927e17a0859614ffa0df7881d7 (diff) |
ODP import/export: refer to theme from shape text color
Refer to the 12 pre-defined colors by name + don't write the attribute
for the case when there is no theme.
Change-Id: Ib6ab5b7b34d896a36e04309bf0cb410998acce01
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126566
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include/xmloff')
-rw-r--r-- | include/xmloff/xmltoken.hxx | 13 | ||||
-rw-r--r-- | include/xmloff/xmltypes.hxx | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx index dfdacf58c5ff..67885e78cc21 100644 --- a/include/xmloff/xmltoken.hxx +++ b/include/xmloff/xmltoken.hxx @@ -3441,6 +3441,19 @@ namespace xmloff::token { XML_LINKED_STYLE_NAME, XML_THEME, + XML_THEME_COLOR, + XML_DK1, + XML_LT1, + XML_DK2, + XML_LT2, + XML_ACCENT1, + XML_ACCENT2, + XML_ACCENT3, + XML_ACCENT4, + XML_ACCENT5, + XML_ACCENT6, + XML_HLINK, + XML_FOLHLINK, XML_TOKEN_END }; diff --git a/include/xmloff/xmltypes.hxx b/include/xmloff/xmltypes.hxx index 625e3a5b9c68..3711e5d5db52 100644 --- a/include/xmloff/xmltypes.hxx +++ b/include/xmloff/xmltypes.hxx @@ -293,6 +293,7 @@ #define XML_TYPE_GRAPHIC (XML_TEXT_TYPES_START + 127) #define XML_SW_TYPE_PRESPAGE_BACKSIZE (XML_TEXT_TYPES_START + 128) #define XML_SW_TYPE_RTLGUTTER (XML_TEXT_TYPES_START + 129) +#define XML_TYPE_THEME_COLOR (XML_TEXT_TYPES_START + 130) #endif // INCLUDED_XMLOFF_XMLTYPES_HXX |