From 3eac847927a0cdfa40c3fea38c473ed2ad7faecc Mon Sep 17 00:00:00 2001 From: Balazs Varga Date: Wed, 21 Aug 2024 17:34:23 +0200 Subject: tdf#161826 - Add uniform Glow effect for texts in shapes - Add new text Glow effect properties for shapes - Using TextGlowPrimitive for rendering uniform text glow in shapes - Add/allow new UI Glow Effect for texts in shapes on sidebar (Only for Impress/Draw and Calc) - Import/Export ooxml files with Glow effect on texts in shapes (Only PPTX/XLSX) - Import/Export odf files with Glow effect on texts in shapes - Add unit test for glow text attributes in ODF - Add uni tests for OOXML import/export Note: Also this patch effects on tdf#144061 - Effects: Allow GLOW to apply to Text (as we have for shapes) Change-Id: I16586c01654f197f532129e4e06aa2ef9f214395 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172216 Reviewed-by: Balazs Varga Tested-by: Jenkins Reviewed-by: Regina Henschel --- xmloff/inc/xmlprop.hxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'xmloff/inc') diff --git a/xmloff/inc/xmlprop.hxx b/xmloff/inc/xmlprop.hxx index 5b2793f9b2b6..b7acca175a1d 100644 --- a/xmloff/inc/xmlprop.hxx +++ b/xmloff/inc/xmlprop.hxx @@ -318,6 +318,9 @@ inline constexpr OUString PROP_GapWidth = u"GapWidth"_ustr; inline constexpr OUString PROP_GlowEffectColor = u"GlowEffectColor"_ustr; inline constexpr OUString PROP_GlowEffectRadius = u"GlowEffectRadius"_ustr; inline constexpr OUString PROP_GlowEffectTransparency = u"GlowEffectTransparency"_ustr; +inline constexpr OUString PROP_GlowTextEffectColor = u"GlowTextEffectColor"_ustr; +inline constexpr OUString PROP_GlowTextEffectRadius = u"GlowTextEffectRadius"_ustr; +inline constexpr OUString PROP_GlowTextEffectTransparency = u"GlowTextEffectTransparency"_ustr; inline constexpr OUString PROP_GraphicColorMode = u"GraphicColorMode"_ustr; inline constexpr OUString PROP_GraphicCrop = u"GraphicCrop"_ustr; inline constexpr OUString PROP_GraphicIsInverted = u"GraphicIsInverted"_ustr; -- cgit