Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "commontimenodecontext.hxx"
21 :
22 : #include <algorithm>
23 :
24 : #include "comphelper/anytostring.hxx"
25 : #include "cppuhelper/exc_hlp.hxx"
26 : #include <osl/diagnose.h>
27 :
28 : #include <com/sun/star/animations/XTimeContainer.hpp>
29 : #include <com/sun/star/animations/XAnimationNode.hpp>
30 : #include <com/sun/star/animations/AnimationFill.hpp>
31 : #include <com/sun/star/animations/AnimationRestart.hpp>
32 : #include <com/sun/star/presentation/TextAnimationType.hpp>
33 : #include <com/sun/star/presentation/EffectPresetClass.hpp>
34 : #include <com/sun/star/presentation/EffectNodeType.hpp>
35 :
36 : #include "oox/helper/attributelist.hxx"
37 : #include "oox/core/fragmenthandler.hxx"
38 : #include "oox/ppt/pptimport.hxx"
39 : #include "oox/drawingml/drawingmltypes.hxx"
40 :
41 : #include "animationtypes.hxx"
42 :
43 : using namespace ::oox::core;
44 : using namespace ::com::sun::star::uno;
45 : using namespace ::com::sun::star::animations;
46 : using namespace ::com::sun::star::presentation;
47 : using namespace ::com::sun::star::xml::sax;
48 :
49 :
50 : using ::com::sun::star::beans::NamedValue;
51 :
52 : namespace oox { namespace ppt {
53 :
54 : // BEGIN CUT&PASTE from sd/source/filter/ppt/pptanimations.hxx
55 : struct convert_subtype
56 : {
57 : sal_Int32 mnID;
58 : const sal_Char* mpStrSubType;
59 : };
60 : static const convert_subtype gConvertArray[] =
61 : {
62 : // fly in
63 : { 1, "from-top" },
64 : { 2, "from-right" },
65 : { 3, "from-top-right" },
66 : { 4, "from-bottom" },
67 : { 5, "horizontal" },
68 : { 6, "from-bottom-right" },
69 : { 8, "from-left" },
70 : { 9, "from-top-left" },
71 : { 10, "vertical" },
72 : { 12, "from-bottom-left" },
73 : { 16, "in" },
74 : { 21, "vertical-in" },
75 : { 26, "horizontal-in" },
76 : { 32, "out" },
77 : { 36, "out-from-screen-center" },
78 : { 37, "vertical-out" },
79 : { 42, "horizontal-out" },
80 : { 272, "in-slightly" },
81 : { 288, "out-slightly" },
82 : { 528, "in-from-screen-center" },
83 : { 0, 0 }
84 : };
85 :
86 :
87 : struct preset_maping
88 : {
89 : sal_Int32 mnPresetClass;
90 : sal_Int32 mnPresetId;
91 : const sal_Char* mpStrPresetId;
92 : };
93 :
94 : static const preset_maping gPresetMaping[] =
95 : {
96 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 1 ,"ooo-entrance-appear" },
97 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 2 ,"ooo-entrance-fly-in" },
98 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 3 ,"ooo-entrance-venetian-blinds" },
99 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 4 ,"ooo-entrance-box" },
100 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 5 ,"ooo-entrance-checkerboard" },
101 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 6 ,"ooo-entrance-circle" },
102 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 7 ,"ooo-entrance-fly-in-slow" },
103 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 8 ,"ooo-entrance-diamond" },
104 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 9 ,"ooo-entrance-dissolve-in" },
105 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 10 ,"ooo-entrance-fade-in" },
106 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 11 ,"ooo-entrance-flash-once" },
107 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 12 ,"ooo-entrance-peek-in" },
108 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 13 ,"ooo-entrance-plus" },
109 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 14 ,"ooo-entrance-random-bars" },
110 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 15 ,"ooo-entrance-spiral-in" },
111 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 16 ,"ooo-entrance-split" },
112 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 17 ,"ooo-entrance-stretchy" },
113 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 18 ,"ooo-entrance-diagonal-squares" },
114 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 19 ,"ooo-entrance-swivel" },
115 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 20 ,"ooo-entrance-wedge" },
116 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 21 ,"ooo-entrance-wheel" },
117 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 22 ,"ooo-entrance-wipe" },
118 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 23 ,"ooo-entrance-zoom" },
119 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 24 ,"ooo-entrance-random" },
120 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 25 ,"ooo-entrance-boomerang" },
121 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 26 ,"ooo-entrance-bounce" },
122 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 27 ,"ooo-entrance-colored-lettering" },
123 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 28 ,"ooo-entrance-movie-credits" },
124 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 29 ,"ooo-entrance-ease-in" },
125 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 30 ,"ooo-entrance-float" },
126 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 31 ,"ooo-entrance-turn-and-grow" },
127 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 34 ,"ooo-entrance-breaks" },
128 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 35 ,"ooo-entrance-pinwheel" },
129 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 37 ,"ooo-entrance-rise-up" },
130 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 38 ,"ooo-entrance-falling-in" },
131 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 39 ,"ooo-entrance-thread" },
132 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 40 ,"ooo-entrance-unfold" },
133 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 41 ,"ooo-entrance-whip" },
134 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 42 ,"ooo-entrance-ascend" },
135 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 43 ,"ooo-entrance-center-revolve" },
136 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 45 ,"ooo-entrance-fade-in-and-swivel" },
137 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 47 ,"ooo-entrance-descend" },
138 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 48 ,"ooo-entrance-sling" },
139 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 49 ,"ooo-entrance-spin-in" },
140 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 50 ,"ooo-entrance-compress" },
141 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 51 ,"ooo-entrance-magnify" },
142 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 52 ,"ooo-entrance-curve-up" },
143 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 53 ,"ooo-entrance-fade-in-and-zoom" },
144 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 54 ,"ooo-entrance-glide" },
145 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 55 ,"ooo-entrance-expand" },
146 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 56 ,"ooo-entrance-flip" },
147 : { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 58 ,"ooo-entrance-fold" },
148 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 1 ,"ooo-emphasis-fill-color" },
149 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 2 ,"ooo-emphasis-font" },
150 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 3 ,"ooo-emphasis-font-color" },
151 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 4 ,"ooo-emphasis-font-size" },
152 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 5 ,"ooo-emphasis-font-style" },
153 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 6 ,"ooo-emphasis-grow-and-shrink" },
154 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 7 ,"ooo-emphasis-line-color" },
155 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 8 ,"ooo-emphasis-spin" },
156 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 9 ,"ooo-emphasis-transparency" },
157 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 10 ,"ooo-emphasis-bold-flash" },
158 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 14 ,"ooo-emphasis-blast" },
159 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 15 ,"ooo-emphasis-bold-reveal" },
160 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 16 ,"ooo-emphasis-color-over-by-word" },
161 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 18 ,"ooo-emphasis-reveal-underline" },
162 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 19 ,"ooo-emphasis-color-blend" },
163 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 20 ,"ooo-emphasis-color-over-by-letter" },
164 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 21 ,"ooo-emphasis-complementary-color" },
165 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 22 ,"ooo-emphasis-complementary-color-2" },
166 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 23 ,"ooo-emphasis-contrasting-color" },
167 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 24 ,"ooo-emphasis-darken" },
168 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 25 ,"ooo-emphasis-desaturate" },
169 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 26 ,"ooo-emphasis-flash-bulb" },
170 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 27 ,"ooo-emphasis-flicker" },
171 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 28 ,"ooo-emphasis-grow-with-color" },
172 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 30 ,"ooo-emphasis-lighten" },
173 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 31 ,"ooo-emphasis-style-emphasis" },
174 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 32 ,"ooo-emphasis-teeter" },
175 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 33 ,"ooo-emphasis-vertical-highlight" },
176 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 34 ,"ooo-emphasis-wave" },
177 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 35 ,"ooo-emphasis-blink" },
178 : { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 36 ,"ooo-emphasis-shimmer" },
179 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 1 ,"ooo-exit-disappear" },
180 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 2 ,"ooo-exit-fly-out" },
181 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 3 ,"ooo-exit-venetian-blinds" },
182 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 4 ,"ooo-exit-box" },
183 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 5 ,"ooo-exit-checkerboard" },
184 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 6 ,"ooo-exit-circle" },
185 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 7 ,"ooo-exit-crawl-out" },
186 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 8 ,"ooo-exit-diamond" },
187 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 9 ,"ooo-exit-dissolve" },
188 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 10 ,"ooo-exit-fade-out" },
189 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 11 ,"ooo-exit-flash-once" },
190 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 12 ,"ooo-exit-peek-out" },
191 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 13 ,"ooo-exit-plus" },
192 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 14 ,"ooo-exit-random-bars" },
193 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 15 ,"ooo-exit-spiral-out" },
194 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 16 ,"ooo-exit-split" },
195 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 17 ,"ooo-exit-collapse" },
196 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 18 ,"ooo-exit-diagonal-squares" },
197 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 19 ,"ooo-exit-swivel" },
198 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 20 ,"ooo-exit-wedge" },
199 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 21 ,"ooo-exit-wheel" },
200 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 22 ,"ooo-exit-wipe" },
201 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 23 ,"ooo-exit-zoom" },
202 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 24 ,"ooo-exit-random" },
203 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 25 ,"ooo-exit-boomerang" },
204 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 26 ,"ooo-exit-bounce" },
205 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 27 ,"ooo-exit-colored-lettering" },
206 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 28 ,"ooo-exit-movie-credits" },
207 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 29 ,"ooo-exit-ease-out" },
208 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 30 ,"ooo-exit-float" },
209 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 31 ,"ooo-exit-turn-and-grow" },
210 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 34 ,"ooo-exit-breaks" },
211 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 35 ,"ooo-exit-pinwheel" },
212 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 37 ,"ooo-exit-sink-down" },
213 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 38 ,"ooo-exit-swish" },
214 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 39 ,"ooo-exit-thread" },
215 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 40 ,"ooo-exit-unfold" },
216 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 41 ,"ooo-exit-whip" },
217 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 42 ,"ooo-exit-descend" },
218 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 43 ,"ooo-exit-center-revolve" },
219 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 45 ,"ooo-exit-fade-out-and-swivel" },
220 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 47 ,"ooo-exit-ascend" },
221 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 48 ,"ooo-exit-sling" },
222 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 53 ,"ooo-exit-fade-out-and-zoom" },
223 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 55 ,"ooo-exit-contract" },
224 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 49 ,"ooo-exit-spin-out" },
225 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 50 ,"ooo-exit-stretchy" },
226 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 51 ,"ooo-exit-magnify" },
227 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 52 ,"ooo-exit-curve-down" },
228 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 54 ,"ooo-exit-glide" },
229 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 56 ,"ooo-exit-flip" },
230 : { ::com::sun::star::presentation::EffectPresetClass::EXIT, 58 ,"ooo-exit-fold" },
231 :
232 :
233 :
234 :
235 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 16 ,"ooo-motionpath-4-point-star" },
236 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 5 ,"ooo-motionpath-5-point-star" },
237 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 11 ,"ooo-motionpath-6-point-star" },
238 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 17 ,"ooo-motionpath-8-point-star" },
239 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 1 ,"ooo-motionpath-circle" },
240 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 6 ,"ooo-motionpath-crescent-moon" },
241 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 3 ,"ooo-motionpath-diamond" },
242 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 13 ,"ooo-motionpath-equal-triangle" },
243 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 12 ,"ooo-motionpath-oval" },
244 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 9 ,"ooo-motionpath-heart" },
245 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 4 ,"ooo-motionpath-hexagon" },
246 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 10 ,"ooo-motionpath-octagon" },
247 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 14 ,"ooo-motionpath-parallelogram" },
248 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 15 ,"ooo-motionpath-pentagon" },
249 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 2 ,"ooo-motionpath-right-triangle" },
250 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 7 ,"ooo-motionpath-square" },
251 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 18 ,"ooo-motionpath-teardrop" },
252 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 8 ,"ooo-motionpath-trapezoid" },
253 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 37 ,"ooo-motionpath-arc-down" },
254 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 51 ,"ooo-motionpath-arc-left" },
255 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 58 ,"ooo-motionpath-arc-right" },
256 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 44 ,"ooo-motionpath-arc-up" },
257 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 41 ,"ooo-motionpath-bounce-left" },
258 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 54 ,"ooo-motionpath-bounce-right" },
259 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 48 ,"ooo-motionpath-curvy-left" },
260 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 61 ,"ooo-motionpath-curvy-right" },
261 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 60 ,"ooo-motionpath-decaying-wave" },
262 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 49 ,"ooo-motionpath-diagonal-down-right" },
263 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 56 ,"ooo-motionpath-diagonal-up-right" },
264 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 42 ,"ooo-motionpath-down" },
265 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 52 ,"ooo-motionpath-funnel" },
266 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 53 ,"ooo-motionpath-spring" },
267 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 62 ,"ooo-motionpath-stairs-down" },
268 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 50 ,"ooo-motionpath-turn-down" },
269 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 36 ,"ooo-motionpath-turn-down-right" },
270 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 43 ,"ooo-motionpath-turn-up" },
271 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 57 ,"ooo-motionpath-turn-up-right" },
272 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 64 ,"ooo-motionpath-up" },
273 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 47 ,"ooo-motionpath-wave" },
274 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 38 ,"ooo-motionpath-zigzag" },
275 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 31 ,"ooo-motionpath-bean" },
276 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 25 ,"ooo-motionpath-buzz-saw" },
277 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 20 ,"ooo-motionpath-curved-square" },
278 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 21 ,"ooo-motionpath-curved-x" },
279 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 23 ,"ooo-motionpath-curvy-star" },
280 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 28 ,"ooo-motionpath-figure-8-four" },
281 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 26 ,"ooo-motionpath-horizontal-figure-8" },
282 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 34 ,"ooo-motionpath-inverted-square" },
283 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 33 ,"ooo-motionpath-inverted-triangle" },
284 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 24 ,"ooo-motionpath-loop-de-loop" },
285 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 29 ,"ooo-motionpath-neutron" },
286 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 27 ,"ooo-motionpath-peanut" },
287 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 32 ,"ooo-motionpath-clover" },
288 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 19 ,"ooo-motionpath-pointy-star" },
289 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 30 ,"ooo-motionpath-swoosh" },
290 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 22 ,"ooo-motionpath-vertical-figure-8" },
291 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 35 ,"ooo-motionpath-left" },
292 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 63 ,"ooo-motionpath-right" },
293 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 55 ,"ooo-motionpath-spiral-left" },
294 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 46 ,"ooo-motionpath-spiral-right" },
295 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 40 ,"ooo-motionpath-sine-wave" },
296 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 59 ,"ooo-motionpath-s-curve-1" },
297 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 39 ,"ooo-motionpath-s-curve-2" },
298 : { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 45 ,"ooo-motionpath-heartbeat" },
299 :
300 :
301 : { 0,0,0 }
302 : };
303 :
304 : // from sd/source/filter/ppt/pptinanimations.cxx
305 0 : static OUString getConvertedSubType( sal_Int16 nPresetClass, sal_Int32 nPresetId, sal_Int32 nPresetSubType )
306 : {
307 0 : const sal_Char* pStr = 0;
308 :
309 0 : if( (nPresetClass == EffectPresetClass::ENTRANCE) || (nPresetClass == EffectPresetClass::EXIT) )
310 : {
311 : // skip wheel effect
312 0 : if( nPresetId != 21 )
313 : {
314 0 : if( nPresetId == 5 )
315 : {
316 : // checkerboard
317 0 : switch( nPresetSubType )
318 : {
319 0 : case 5: pStr = "downward"; break;
320 0 : case 10: pStr = "across"; break;
321 : }
322 : }
323 0 : else if( nPresetId == 17 )
324 : {
325 : // stretch
326 0 : if( nPresetSubType == 10 )
327 0 : pStr = "across";
328 : }
329 0 : else if( nPresetId == 18 )
330 : {
331 : // strips
332 0 : switch( nPresetSubType )
333 : {
334 0 : case 3: pStr = "right-to-top"; break;
335 0 : case 6: pStr = "right-to-bottom"; break;
336 0 : case 9: pStr = "left-to-top"; break;
337 0 : case 12: pStr = "left-to-bottom"; break;
338 : }
339 : }
340 :
341 0 : if( pStr == 0 )
342 : {
343 0 : const convert_subtype* p = gConvertArray;
344 :
345 0 : while( p->mpStrSubType )
346 : {
347 0 : if( p->mnID == nPresetSubType )
348 : {
349 0 : pStr = p->mpStrSubType;
350 0 : break;
351 : }
352 0 : p++;
353 : }
354 : }
355 : }
356 : }
357 :
358 0 : if( pStr )
359 0 : return OUString::createFromAscii( pStr );
360 : else
361 0 : return OUString::number( nPresetSubType );
362 : }
363 :
364 : // END
365 :
366 0 : CommonTimeNodeContext::CommonTimeNodeContext(
367 : FragmentHandler2& rParent,
368 : sal_Int32 aElement,
369 : const Reference< XFastAttributeList >& xAttribs,
370 : const TimeNodePtr & pNode )
371 : : TimeNodeContext( rParent, aElement, xAttribs, pNode )
372 0 : , mbIterate( false )
373 : {
374 0 : AttributeList attribs( xAttribs );
375 : sal_Int32 nInt; // some temporary int value for float conversions
376 :
377 0 : NodePropertyMap & aProps = pNode->getNodeProperties();
378 0 : TimeNode::UserDataMap & aUserData = pNode->getUserData();
379 :
380 0 : if( attribs.hasAttribute( XML_accel ) )
381 : {
382 0 : double dPercent = ::oox::drawingml::GetPositiveFixedPercentage( xAttribs->getOptionalValue( XML_accel ) );
383 0 : aProps[ NP_ACCELERATION ] <<= dPercent;
384 : }
385 :
386 0 : if( attribs.hasAttribute( XML_afterEffect ) )
387 : {
388 0 : aUserData[ "after-effect" ]
389 0 : = makeAny( attribs.getBool( XML_afterEffect, false ) );
390 : }
391 0 : aProps[ NP_AUTOREVERSE ] = makeAny( attribs.getBool( XML_autoRev, false ) );
392 :
393 : // TODO
394 0 : if( attribs.hasAttribute( XML_bldLvl ) )
395 : {
396 0 : attribs.getInteger( XML_bldLvl, 0 );
397 : }
398 0 : if( attribs.hasAttribute( XML_decel ) )
399 : {
400 0 : double dPercent = ::oox::drawingml::GetPositiveFixedPercentage( xAttribs->getOptionalValue( XML_decel ) );
401 0 : aProps[ NP_DECELERATE ] <<= dPercent;
402 : }
403 : // TODO
404 0 : if( attribs.hasAttribute( XML_display ) )
405 : {
406 0 : aProps[ NP_DISPLAY ] <<= attribs.getBool( XML_display, true );
407 : }
408 0 : if( attribs.hasAttribute( XML_dur ) )
409 : {
410 0 : aProps[ NP_DURATION ] = GetTime( xAttribs->getOptionalValue( XML_dur) );
411 : }
412 : // TODO
413 0 : if( attribs.hasAttribute( XML_evtFilter ) )
414 : {
415 0 : xAttribs->getOptionalValue( XML_evtFilter );
416 : }
417 : // ST_TLTimeNodeFillType
418 0 : if( attribs.hasAttribute( XML_fill ) )
419 : {
420 0 : nInt = xAttribs->getOptionalValueToken( XML_fill, 0 );
421 0 : if( nInt != 0 )
422 : {
423 : sal_Int16 nEnum;
424 0 : switch( nInt )
425 : {
426 : case XML_remove:
427 0 : nEnum = AnimationFill::REMOVE;
428 0 : break;
429 : case XML_freeze:
430 0 : nEnum = AnimationFill::FREEZE;
431 0 : break;
432 : case XML_hold:
433 0 : nEnum = AnimationFill::HOLD;
434 0 : break;
435 : case XML_transition:
436 0 : nEnum = AnimationFill::TRANSITION;
437 0 : break;
438 : default:
439 0 : nEnum = AnimationFill::DEFAULT;
440 0 : break;
441 : }
442 0 : aProps[ NP_FILL ] <<= (sal_Int16)nEnum;
443 : }
444 : }
445 0 : if( attribs.hasAttribute( XML_grpId ) )
446 : {
447 0 : attribs.getUnsigned( XML_grpId, 0 );
448 : }
449 : // ST_TLTimeNodeID
450 0 : if( attribs.hasAttribute( XML_id ) )
451 : {
452 0 : sal_uInt32 nId = attribs.getUnsigned( XML_id, 0 );
453 0 : pNode->setId( nId );
454 : }
455 : // ST_TLTimeNodeMasterRelation
456 0 : nInt = xAttribs->getOptionalValueToken( XML_masterRel, 0 );
457 0 : if( nInt )
458 : {
459 : // TODO
460 0 : switch(nInt)
461 : {
462 : case XML_sameClick:
463 : case XML_lastClick:
464 : case XML_nextClick:
465 0 : break;
466 : }
467 : }
468 :
469 : // TODO
470 0 : if( attribs.hasAttribute( XML_nodePh ) )
471 : {
472 0 : attribs.getBool( XML_nodePh, false );
473 : }
474 : // ST_TLTimeNodeType
475 0 : nInt = xAttribs->getOptionalValueToken( XML_nodeType, 0 );
476 0 : if( nInt != 0 )
477 : {
478 : sal_Int16 nEnum;
479 0 : switch( nInt )
480 : {
481 : case XML_clickEffect:
482 : case XML_clickPar:
483 0 : nEnum = EffectNodeType::ON_CLICK;
484 0 : break;
485 : case XML_withEffect:
486 : case XML_withGroup:
487 0 : nEnum = EffectNodeType::WITH_PREVIOUS;
488 0 : break;
489 : case XML_mainSeq:
490 0 : nEnum = EffectNodeType::MAIN_SEQUENCE;
491 0 : break;
492 : case XML_interactiveSeq:
493 0 : nEnum = EffectNodeType::INTERACTIVE_SEQUENCE;
494 0 : break;
495 : case XML_afterGroup:
496 : case XML_afterEffect:
497 0 : nEnum = EffectNodeType::AFTER_PREVIOUS;
498 0 : break;
499 : case XML_tmRoot:
500 0 : nEnum = EffectNodeType::TIMING_ROOT;
501 0 : break;
502 : default:
503 0 : nEnum = EffectNodeType::DEFAULT;
504 0 : break;
505 : }
506 0 : aUserData[ "node-type" ] <<= nEnum;
507 : }
508 :
509 : // ST_TLTimeNodePresetClassType
510 0 : nInt = xAttribs->getOptionalValueToken( XML_presetClass, 0 );
511 0 : if( nInt != 0 )
512 : {
513 0 : sal_Int16 nEffectPresetClass = 0;
514 : // TODO put that in a function
515 0 : switch( nInt )
516 : {
517 : case XML_entr:
518 0 : nEffectPresetClass = EffectPresetClass::ENTRANCE;
519 0 : break;
520 : case XML_exit:
521 0 : nEffectPresetClass = EffectPresetClass::EXIT;
522 0 : break;
523 : case XML_emph:
524 0 : nEffectPresetClass = EffectPresetClass::EMPHASIS;
525 0 : break;
526 : case XML_path:
527 0 : nEffectPresetClass = EffectPresetClass::MOTIONPATH;
528 0 : break;
529 : case XML_verb:
530 : // TODO check that the value below is correct
531 0 : nEffectPresetClass = EffectPresetClass::OLEACTION;
532 0 : break;
533 : case XML_mediacall:
534 0 : nEffectPresetClass = EffectPresetClass::MEDIACALL;
535 0 : break;
536 : default:
537 0 : nEffectPresetClass = 0;
538 0 : break;
539 : }
540 0 : aUserData[ "preset-class" ] = makeAny( nEffectPresetClass );
541 0 : if( attribs.hasAttribute( XML_presetID ) )
542 : {
543 0 : sal_Int32 nPresetId = attribs.getInteger( XML_presetID, 0 );
544 0 : const preset_maping* p = gPresetMaping;
545 0 : while( p->mpStrPresetId && ((p->mnPresetClass != nEffectPresetClass) || (p->mnPresetId != nPresetId )) )
546 0 : p++;
547 :
548 0 : aUserData[ "preset-id" ]
549 0 : = makeAny( OUString::createFromAscii( p->mpStrPresetId ) );
550 0 : sal_Int32 nPresetSubType = attribs.getInteger( XML_presetSubtype, 0 );
551 0 : if( nPresetSubType )
552 : {
553 0 : aUserData[ "preset-sub-type" ] = makeAny( getConvertedSubType( nEffectPresetClass, nPresetId, nPresetSubType ) );
554 : }
555 : }
556 : }
557 0 : if( attribs.hasAttribute( XML_repeatCount ) )
558 : {
559 0 : aProps[ NP_REPEATCOUNT ] = GetTime( xAttribs->getOptionalValue( XML_repeatCount ) );
560 : }
561 : /* see pptinanimation */
562 : // aProps[ NP_REPEATCOUNT ] <<= (fCount < ((float)3.40282346638528860e+38)) ? makeAny( (double)fCount ) : makeAny( Timing_INDEFINITE );
563 0 : if( attribs.hasAttribute( XML_repeatDur ) )
564 : {
565 0 : aProps[ NP_REPEATDURATION ] = GetTime( xAttribs->getOptionalValue( XML_repeatDur ) );
566 : }
567 : // TODO repeatDur is otherwise the same as dur. What shall we do? -- Hub
568 :
569 : // ST_TLTimeNodeRestartType
570 0 : nInt = xAttribs->getOptionalValueToken( XML_restart, 0 );
571 0 : if( nInt != 0 )
572 : {
573 : // TODO put that in a function
574 : sal_Int16 nEnum;
575 0 : switch( nInt )
576 : {
577 : case XML_always:
578 0 : nEnum = AnimationRestart::ALWAYS;
579 0 : break;
580 : case XML_whenNotActive:
581 0 : nEnum = AnimationRestart::WHEN_NOT_ACTIVE;
582 0 : break;
583 : case XML_never:
584 0 : nEnum = AnimationRestart::NEVER;
585 0 : break;
586 : default:
587 0 : nEnum = AnimationRestart::DEFAULT;
588 0 : break;
589 : }
590 0 : aProps[ NP_RESTART ] <<= (sal_Int16)nEnum;
591 : }
592 : // ST_Percentage TODO
593 0 : xAttribs->getOptionalValue( XML_spd /*"10000" */ );
594 : // ST_TLTimeNodeSyncType TODO
595 0 : xAttribs->getOptionalValue( XML_syncBehavior );
596 : // TODO (string)
597 0 : xAttribs->getOptionalValue( XML_tmFilter );
598 0 : }
599 :
600 :
601 0 : CommonTimeNodeContext::~CommonTimeNodeContext( ) throw ( )
602 : {
603 0 : }
604 :
605 :
606 0 : void CommonTimeNodeContext::onEndElement()
607 : {
608 0 : if( isCurrentElement( PPT_TOKEN( iterate ) ) )
609 : {
610 0 : mbIterate = false;
611 : }
612 0 : }
613 :
614 :
615 0 : ::oox::core::ContextHandlerRef CommonTimeNodeContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs )
616 : {
617 :
618 0 : switch ( aElementToken )
619 : {
620 : case PPT_TOKEN( childTnLst ):
621 : case PPT_TOKEN( subTnLst ):
622 0 : return new TimeNodeListContext( *this, mpNode->getChildren() );
623 :
624 : case PPT_TOKEN( stCondLst ):
625 0 : return new CondListContext( *this, aElementToken, rAttribs.getFastAttributeList(), mpNode, mpNode->getStartCondition() );
626 : case PPT_TOKEN( endCondLst ):
627 0 : return new CondListContext( *this, aElementToken, rAttribs.getFastAttributeList(), mpNode, mpNode->getEndCondition() );
628 :
629 : case PPT_TOKEN( endSync ):
630 0 : return new CondContext( *this, rAttribs.getFastAttributeList(), mpNode, mpNode->getEndSyncValue() );
631 : case PPT_TOKEN( iterate ):
632 : {
633 0 : sal_Int32 nVal = rAttribs.getToken( XML_type, XML_el );
634 0 : if( nVal != 0 )
635 : {
636 : // TODO put that in a function
637 : sal_Int16 nEnum;
638 0 : switch( nVal )
639 : {
640 : case XML_el:
641 0 : nEnum = TextAnimationType::BY_PARAGRAPH;
642 0 : break;
643 : case XML_lt:
644 0 : nEnum = TextAnimationType::BY_LETTER;
645 0 : break;
646 : case XML_wd:
647 0 : nEnum = TextAnimationType::BY_WORD;
648 0 : break;
649 : default:
650 : // default is BY_WORD. See Ppt97Animation::GetTextAnimationType()
651 : // in sd/source/filter/ppt/ppt97animations.cxx:297
652 0 : nEnum = TextAnimationType::BY_WORD;
653 0 : break;
654 : }
655 0 : mpNode->getNodeProperties()[ NP_ITERATETYPE ] <<= nEnum;
656 : }
657 : // in case of exception we ignore the whole tag.
658 : // TODO what to do with this
659 0 : /*bool bBackwards =*/ rAttribs.getBool( XML_backwards, false );
660 0 : mbIterate = true;
661 0 : return this;
662 : }
663 : case PPT_TOKEN( tmAbs ):
664 0 : if( mbIterate )
665 : {
666 0 : double fTime = rAttribs.getUnsigned( XML_val, 0 );
667 : // time in ms. property is in % TODO
668 0 : mpNode->getNodeProperties()[ NP_ITERATEINTERVAL ] <<= fTime;
669 : }
670 0 : return this;
671 : case PPT_TOKEN( tmPct ):
672 0 : if( mbIterate )
673 : {
674 0 : double fPercent = (double)rAttribs.getUnsigned( XML_val, 0 ) / 100000.0;
675 0 : mpNode->getNodeProperties()[ NP_ITERATEINTERVAL ] <<= fPercent;
676 : }
677 0 : return this;
678 : default:
679 0 : break;
680 : }
681 :
682 0 : return this;
683 : }
684 :
685 0 : } }
686 :
687 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|