From e3d7fdff5ce3089b24b755063da95a3462b0fc30 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Thu, 7 May 2020 17:46:01 +0200 Subject: implement PowerPoint 'flash' slide transition (API CHANGE) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-by: Luboš Luňák --- offapi/com/sun/star/presentation/XTransitionFactory.idl | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'offapi/com/sun') 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 ); -- cgit