diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2015-11-09 10:51:06 +0100 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2015-11-09 11:00:58 +0100 |
commit | 733846f20c43588478d01c448f622cc9854bc59e (patch) | |
tree | 8b69c00613d8cd38e7b59c8d4d53bcc9205eb365 /sd | |
parent | b3120fd7c408ef0d2f35c2b0a905f5db65eaa294 (diff) |
pptx: export "Ripple" and "Vortex" transition
Change-Id: I7e6683e8d4b461f193f64e2b1f077a5936008c1f
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index 7862bc236aa5..9d412f79a696 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -560,6 +560,16 @@ void PowerPointExport::WriteTransition( FSHelperPtr pFS ) pDirection14 = "r"; bOOXmlSpecificTransition = true; break; + case animations::TransitionSubType::VERTICAL: // Vortex + nTransition = XML_fade; + nTransition14 = XML_vortex; + bOOXmlSpecificTransition = true; + break; + case animations::TransitionSubType::HORIZONTAL: // Ripple + nTransition = XML_fade; + nTransition14 = XML_ripple; + bOOXmlSpecificTransition = true; + break; case animations::TransitionSubType::CORNERSIN: pInverted = "true"; case animations::TransitionSubType::CORNERSOUT: |