summaryrefslogtreecommitdiff
path: root/offapi/com
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2020-05-07 17:46:01 +0200
committerLuboš Luňák <l.lunak@collabora.com>2020-05-08 17:37:26 +0200
commite3d7fdff5ce3089b24b755063da95a3462b0fc30 (patch)
treee15fc59e9af4439a6f22acea1401cc687c4b3237 /offapi/com
parent320cba92847242cfaf34966c3fc32c4e76d45f03 (diff)
implement PowerPoint 'flash' slide transition (API CHANGE)
It's like 'fade', but using white instead of black. It's a separate type in the pptx file (although I actually cannot find it in the spec OOXML, but PowerPoint 2013 generates it). The API change in XTransitionFactory should be fine, I doubt there's anything external using it. Change-Id: I3479840f265ed8227b3b8301ecff56a63d57f493 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93668 Tested-by: Luboš Luňák <l.lunak@collabora.com> Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'offapi/com')
-rw-r--r--offapi/com/sun/star/presentation/XTransitionFactory.idl4
1 files changed, 4 insertions, 0 deletions
diff --git a/offapi/com/sun/star/presentation/XTransitionFactory.idl b/offapi/com/sun/star/presentation/XTransitionFactory.idl
index 008fdfd7b553..1445565260ad 100644
--- a/offapi/com/sun/star/presentation/XTransitionFactory.idl
+++ b/offapi/com/sun/star/presentation/XTransitionFactory.idl
@@ -52,6 +52,9 @@ interface XTransitionFactory : ::com::sun::star::uno::XInterface
@param transitionSubType
Subtype for the transition (@see ::com::sun::star::animations::TransitionSubType)
+ @param transitionFadeColor
+ Color to use (for some transitions)
+
@param view
Slide show view to display on
@@ -63,6 +66,7 @@ interface XTransitionFactory : ::com::sun::star::uno::XInterface
*/
XTransition createTransition( [in] short transitionType,
[in] short transitionSubType,
+ [in] long transitionFadeColor,
[in] XSlideShowView view,
[in] com::sun::star::rendering::XBitmap leavingBitmap,
[in] com::sun::star::rendering::XBitmap enteringBitmap );