summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-02-23 23:37:28 +0100
committerTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-02-24 00:11:23 +0100
commita086a19714555ea7493e0c9ce71ee85bbc9a3664 (patch)
tree20ee5f6036757d35fdcc64ff391445735f2abe7b /sw
parent155720819b58f745443ed09a5885159e27480ba6 (diff)
ooxml export: w14:reflection element
Change-Id: I84cd2cd13b56a2fa369fc4c1e98c5be519a50e78
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.cxx10
1 files changed, 9 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index b34ce931ad20..d37fe60a4ec3 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -1124,6 +1124,7 @@ void DocxAttributeOutput::InitCollectedRunProperties()
FSNS( XML_w, XML_rPrChange ),
FSNS( XML_w14, XML_glow ),
FSNS( XML_w14, XML_shadow ),
+ FSNS( XML_w14, XML_reflection ),
};
// postpone the output so that we can later [in EndParagraphProperties()]
@@ -1150,12 +1151,18 @@ const NameToId constNameToIdMapping[] =
{
{ OUString("glow"), FSNS( XML_w14, XML_glow ) },
{ OUString("shadow"), FSNS( XML_w14, XML_shadow ) },
+ { OUString("reflection"),FSNS( XML_w14, XML_reflection ) },
{ OUString("val"), FSNS( XML_w14, XML_val ) },
{ OUString("rad"), FSNS( XML_w14, XML_rad ) },
{ OUString("blurRad"), FSNS( XML_w14, XML_blurRad ) },
+ { OUString("stA"), FSNS( XML_w14, XML_stA ) },
+ { OUString("stPos"), FSNS( XML_w14, XML_stPos ) },
+ { OUString("endA"), FSNS( XML_w14, XML_endA ) },
+ { OUString("endPos"), FSNS( XML_w14, XML_endPos ) },
{ OUString("dist"), FSNS( XML_w14, XML_dist ) },
{ OUString("dir"), FSNS( XML_w14, XML_dir ) },
+ { OUString("fadeDir"), FSNS( XML_w14, XML_fadeDir ) },
{ OUString("sx"), FSNS( XML_w14, XML_sx ) },
{ OUString("sy"), FSNS( XML_w14, XML_sy ) },
{ OUString("kx"), FSNS( XML_w14, XML_kx ) },
@@ -6465,7 +6472,8 @@ void DocxAttributeOutput::CharGrabBag( const SfxGrabBagItem& rItem )
// just skip these, they were processed before
}
else if (i->first == "CharGlowTextEffect" ||
- i->first == "CharShadowTextEffect")
+ i->first == "CharShadowTextEffect" ||
+ i->first == "CharReflectionTextEffect")
{
beans::PropertyValue aPropertyValue;
i->second >>= aPropertyValue;