Kaydet (Commit) 17269062 authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl

ooxml export: w14:textOutline element

Change-Id: I76f414471aa6304e6add8274c1fd52375a7a963b
üst a6f73aca
...@@ -1154,7 +1154,8 @@ const NameToId constNameToIdMapping[] = ...@@ -1154,7 +1154,8 @@ const NameToId constNameToIdMapping[] =
{ {
{ OUString("glow"), FSNS( XML_w14, XML_glow ) }, { OUString("glow"), FSNS( XML_w14, XML_glow ) },
{ OUString("shadow"), FSNS( XML_w14, XML_shadow ) }, { OUString("shadow"), FSNS( XML_w14, XML_shadow ) },
{ OUString("reflection"),FSNS( XML_w14, XML_reflection ) }, { OUString("reflection"), FSNS( XML_w14, XML_reflection ) },
{ OUString("textOutline"), FSNS( XML_w14, XML_textOutline ) },
{ OUString("val"), FSNS( XML_w14, XML_val ) }, { OUString("val"), FSNS( XML_w14, XML_val ) },
{ OUString("rad"), FSNS( XML_w14, XML_rad ) }, { OUString("rad"), FSNS( XML_w14, XML_rad ) },
...@@ -1171,6 +1172,18 @@ const NameToId constNameToIdMapping[] = ...@@ -1171,6 +1172,18 @@ const NameToId constNameToIdMapping[] =
{ OUString("kx"), FSNS( XML_w14, XML_kx ) }, { OUString("kx"), FSNS( XML_w14, XML_kx ) },
{ OUString("ky"), FSNS( XML_w14, XML_ky ) }, { OUString("ky"), FSNS( XML_w14, XML_ky ) },
{ OUString("algn"), FSNS( XML_w14, XML_algn ) }, { OUString("algn"), FSNS( XML_w14, XML_algn ) },
{ OUString("w"), FSNS( XML_w14, XML_w ) },
{ OUString("cap"), FSNS( XML_w14, XML_cap ) },
{ OUString("cmpd"), FSNS( XML_w14, XML_cmpd ) },
{ OUString("pos"), FSNS( XML_w14, XML_pos ) },
{ OUString("ang"), FSNS( XML_w14, XML_ang ) },
{ OUString("scaled"), FSNS( XML_w14, XML_scaled ) },
{ OUString("path"), FSNS( XML_w14, XML_path ) },
{ OUString("l"), FSNS( XML_w14, XML_l ) },
{ OUString("t"), FSNS( XML_w14, XML_t ) },
{ OUString("r"), FSNS( XML_w14, XML_r ) },
{ OUString("b"), FSNS( XML_w14, XML_b ) },
{ OUString("lim"), FSNS( XML_w14, XML_lim ) },
{ OUString("schemeClr"), FSNS( XML_w14, XML_schemeClr ) }, { OUString("schemeClr"), FSNS( XML_w14, XML_schemeClr ) },
{ OUString("srgbClr"), FSNS( XML_w14, XML_srgbClr ) }, { OUString("srgbClr"), FSNS( XML_w14, XML_srgbClr ) },
...@@ -1184,6 +1197,19 @@ const NameToId constNameToIdMapping[] = ...@@ -1184,6 +1197,19 @@ const NameToId constNameToIdMapping[] =
{ OUString("lum"), FSNS( XML_w14, XML_lum ) }, { OUString("lum"), FSNS( XML_w14, XML_lum ) },
{ OUString("lumOff"), FSNS( XML_w14, XML_lumOff ) }, { OUString("lumOff"), FSNS( XML_w14, XML_lumOff ) },
{ OUString("lumMod"), FSNS( XML_w14, XML_lumMod ) }, { OUString("lumMod"), FSNS( XML_w14, XML_lumMod ) },
{ OUString("noFill"), FSNS( XML_w14, XML_noFill ) },
{ OUString("solidFill"), FSNS( XML_w14, XML_solidFill ) },
{ OUString("gradFill"), FSNS( XML_w14, XML_gradFill ) },
{ OUString("gsLst"), FSNS( XML_w14, XML_gsLst ) },
{ OUString("gs"), FSNS( XML_w14, XML_gs ) },
{ OUString("pos"), FSNS( XML_w14, XML_pos ) },
{ OUString("lin"), FSNS( XML_w14, XML_lin ) },
{ OUString("path"), FSNS( XML_w14, XML_path ) },
{ OUString("fillToRect"), FSNS( XML_w14, XML_fillToRect ) },
{ OUString("prstDash"), FSNS( XML_w14, XML_prstDash ) },
{ OUString("round"), FSNS( XML_w14, XML_round ) },
{ OUString("bevel"), FSNS( XML_w14, XML_bevel ) },
{ OUString("miter"), FSNS( XML_w14, XML_miter ) },
}; };
boost::optional<sal_Int32> lclGetElementIdForName(const OUString& rName) boost::optional<sal_Int32> lclGetElementIdForName(const OUString& rName)
...@@ -6562,7 +6588,8 @@ void DocxAttributeOutput::CharGrabBag( const SfxGrabBagItem& rItem ) ...@@ -6562,7 +6588,8 @@ void DocxAttributeOutput::CharGrabBag( const SfxGrabBagItem& rItem )
} }
else if (i->first == "CharGlowTextEffect" || else if (i->first == "CharGlowTextEffect" ||
i->first == "CharShadowTextEffect" || i->first == "CharShadowTextEffect" ||
i->first == "CharReflectionTextEffect") i->first == "CharReflectionTextEffect" ||
i->first == "CharTextOutlineTextEffect")
{ {
beans::PropertyValue aPropertyValue; beans::PropertyValue aPropertyValue;
i->second >>= aPropertyValue; i->second >>= aPropertyValue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment