diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2020-05-07 17:46:01 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2020-05-08 17:37:26 +0200 |
commit | e3d7fdff5ce3089b24b755063da95a3462b0fc30 (patch) | |
tree | e15fc59e9af4439a6f22acea1401cc687c4b3237 /officecfg | |
parent | 320cba92847242cfaf34966c3fc32c4e76d45f03 (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 'officecfg')
-rw-r--r-- | officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu b/officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu index 1f385b61c540..1f9267d958e1 100644 --- a/officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu +++ b/officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu @@ -1658,6 +1658,11 @@ <value xml:lang="en-US">Through Black</value> </prop> </node> + <node oor:name="through-white" oor:op="replace"> + <prop oor:name="Label" oor:type="xs:string"> + <value xml:lang="en-US">Through White</value> + </prop> + </node> <node oor:name="left-right" oor:op="replace"> <prop oor:name="Label" oor:type="xs:string"> <value xml:lang="en-US">Left to Right</value> @@ -2020,6 +2025,14 @@ <value>through-black</value> </prop> </node> + <node oor:name="fade-through-white" oor:op="replace"> + <prop oor:name="Set" oor:type="xs:string"> + <value>fade</value> + </prop> + <prop oor:name="Variant" oor:type="xs:string"> + <value>through-white</value> + </prop> + </node> <node oor:name="zoom-rotate-in" oor:op="replace"> <prop oor:name="Set" oor:type="xs:string"> <value>newsflash</value> |