From 1093c931e9e4c86a47ea5972217719d5fa169b71 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 26 Jan 2021 17:38:23 +0100 Subject: [API CHANGE] PPTX filter: fix lost hide-while-show prop for slide narrations The OOXML markup is , but the UI uses "Hide During Show", which is easier to understand, so use the second naming in the code. With this, the PPTX no longer makes the speaker bitmaps on slides visible while projecting. API change, because the animation node is only available via UNO, though it's likely that no actual external code would ever interact with it directly. (And also add a stub Narration attribute, so that can be implemented in a follow-up commit without an API change.) Change-Id: Ia90a2fb30c2bfdb4cff2901fe11bdf1d4ab38261 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109969 Reviewed-by: Miklos Vajna Tested-by: Jenkins --- offapi/com/sun/star/animations/XAudio.idl | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'offapi/com/sun/star') diff --git a/offapi/com/sun/star/animations/XAudio.idl b/offapi/com/sun/star/animations/XAudio.idl index 00e1deefc4a4..957a842382f0 100644 --- a/offapi/com/sun/star/animations/XAudio.idl +++ b/offapi/com/sun/star/animations/XAudio.idl @@ -32,6 +32,18 @@ interface XAudio : XAnimationNode [attribute] any Source; [attribute] double Volume; + + /** Specifies if the source shape should be hidden during slideshow (defaults to false). + + @since LibreOffice 7.2 + */ + [attribute] boolean HideDuringShow; + + /** Specifies if the source shape is a narration for the slide (defaults to false). + + @since LibreOffice 7.2 + */ + [attribute] boolean Narration; }; -- cgit v1.2.3