merge the formfield patch from ooo-build
[ooovba.git] / oox / source / ppt / commontimenodecontext.cxx
blob1312bbea59abbff7faa325b6589a2670ce664739
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: commontimenodecontext.cxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #include "commontimenodecontext.hxx"
33 #include <algorithm>
35 #include "comphelper/anytostring.hxx"
36 #include "cppuhelper/exc_hlp.hxx"
37 #include <osl/diagnose.h>
39 #include <com/sun/star/animations/XTimeContainer.hpp>
40 #include <com/sun/star/animations/XAnimationNode.hpp>
41 #include <com/sun/star/animations/AnimationFill.hpp>
42 #include <com/sun/star/animations/AnimationRestart.hpp>
43 #include <com/sun/star/presentation/TextAnimationType.hpp>
44 #include <com/sun/star/presentation/EffectPresetClass.hpp>
45 #include <com/sun/star/presentation/EffectNodeType.hpp>
47 #include "oox/helper/attributelist.hxx"
48 #include "oox/core/namespaces.hxx"
49 #include "oox/core/fragmenthandler.hxx"
50 #include "oox/ppt/pptimport.hxx"
51 #include "oox/drawingml/drawingmltypes.hxx"
53 #include "animationtypes.hxx"
54 #include "tokens.hxx"
56 using namespace ::oox::core;
57 using namespace ::com::sun::star::uno;
58 using namespace ::com::sun::star::animations;
59 using namespace ::com::sun::star::presentation;
60 using namespace ::com::sun::star::xml::sax;
63 using ::rtl::OUString;
64 using ::com::sun::star::beans::NamedValue;
66 namespace oox { namespace ppt {
68 // BEGIN CUT&PASTE from sd/source/filter/ppt/pptanimations.hxx
69 struct convert_subtype
71 sal_Int32 mnID;
72 const sal_Char* mpStrSubType;
74 static const convert_subtype gConvertArray[] =
76 // fly in
77 { 1, "from-top" },
78 { 2, "from-right" },
79 { 3, "from-top-right" },
80 { 4, "from-bottom" },
81 { 5, "horizontal" },
82 { 6, "from-bottom-right" },
83 { 8, "from-left" },
84 { 9, "from-top-left" },
85 { 10, "vertical" },
86 { 12, "from-bottom-left" },
87 { 16, "in" },
88 { 21, "vertical-in" },
89 { 26, "horizontal-in" },
90 { 32, "out" },
91 { 36, "out-from-screen-center" },
92 { 37, "vertical-out" },
93 { 42, "horizontal-out" },
94 { 272, "in-slightly" },
95 { 288, "out-slightly" },
96 { 528, "in-from-screen-center" },
97 { 0, 0 }
101 struct preset_maping
103 sal_Int32 mnPresetClass;
104 sal_Int32 mnPresetId;
105 const sal_Char* mpStrPresetId;
108 static const preset_maping gPresetMaping[] =
110 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 1 ,"ooo-entrance-appear" },
111 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 2 ,"ooo-entrance-fly-in" },
112 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 3 ,"ooo-entrance-venetian-blinds" },
113 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 4 ,"ooo-entrance-box" },
114 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 5 ,"ooo-entrance-checkerboard" },
115 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 6 ,"ooo-entrance-circle" },
116 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 7 ,"ooo-entrance-fly-in-slow" },
117 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 8 ,"ooo-entrance-diamond" },
118 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 9 ,"ooo-entrance-dissolve-in" },
119 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 10 ,"ooo-entrance-fade-in" },
120 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 11 ,"ooo-entrance-flash-once" },
121 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 12 ,"ooo-entrance-peek-in" },
122 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 13 ,"ooo-entrance-plus" },
123 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 14 ,"ooo-entrance-random-bars" },
124 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 15 ,"ooo-entrance-spiral-in" },
125 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 16 ,"ooo-entrance-split" },
126 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 17 ,"ooo-entrance-stretchy" },
127 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 18 ,"ooo-entrance-diagonal-squares" },
128 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 19 ,"ooo-entrance-swivel" },
129 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 20 ,"ooo-entrance-wedge" },
130 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 21 ,"ooo-entrance-wheel" },
131 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 22 ,"ooo-entrance-wipe" },
132 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 23 ,"ooo-entrance-zoom" },
133 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 24 ,"ooo-entrance-random" },
134 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 25 ,"ooo-entrance-boomerang" },
135 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 26 ,"ooo-entrance-bounce" },
136 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 27 ,"ooo-entrance-colored-lettering" },
137 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 28 ,"ooo-entrance-movie-credits" },
138 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 29 ,"ooo-entrance-ease-in" },
139 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 30 ,"ooo-entrance-float" },
140 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 31 ,"ooo-entrance-turn-and-grow" },
141 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 34 ,"ooo-entrance-breaks" },
142 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 35 ,"ooo-entrance-pinwheel" },
143 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 37 ,"ooo-entrance-rise-up" },
144 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 38 ,"ooo-entrance-falling-in" },
145 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 39 ,"ooo-entrance-thread" },
146 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 40 ,"ooo-entrance-unfold" },
147 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 41 ,"ooo-entrance-whip" },
148 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 42 ,"ooo-entrance-ascend" },
149 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 43 ,"ooo-entrance-center-revolve" },
150 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 45 ,"ooo-entrance-fade-in-and-swivel" },
151 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 47 ,"ooo-entrance-descend" },
152 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 48 ,"ooo-entrance-sling" },
153 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 49 ,"ooo-entrance-spin-in" },
154 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 50 ,"ooo-entrance-compress" },
155 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 51 ,"ooo-entrance-magnify" },
156 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 52 ,"ooo-entrance-curve-up" },
157 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 53 ,"ooo-entrance-fade-in-and-zoom" },
158 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 54 ,"ooo-entrance-glide" },
159 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 55 ,"ooo-entrance-expand" },
160 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 56 ,"ooo-entrance-flip" },
161 { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 58 ,"ooo-entrance-fold" },
162 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 1 ,"ooo-emphasis-fill-color" },
163 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 2 ,"ooo-emphasis-font" },
164 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 3 ,"ooo-emphasis-font-color" },
165 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 4 ,"ooo-emphasis-font-size" },
166 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 5 ,"ooo-emphasis-font-style" },
167 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 6 ,"ooo-emphasis-grow-and-shrink" },
168 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 7 ,"ooo-emphasis-line-color" },
169 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 8 ,"ooo-emphasis-spin" },
170 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 9 ,"ooo-emphasis-transparency" },
171 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 10 ,"ooo-emphasis-bold-flash" },
172 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 14 ,"ooo-emphasis-blast" },
173 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 15 ,"ooo-emphasis-bold-reveal" },
174 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 16 ,"ooo-emphasis-color-over-by-word" },
175 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 18 ,"ooo-emphasis-reveal-underline" },
176 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 19 ,"ooo-emphasis-color-blend" },
177 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 20 ,"ooo-emphasis-color-over-by-letter" },
178 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 21 ,"ooo-emphasis-complementary-color" },
179 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 22 ,"ooo-emphasis-complementary-color-2" },
180 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 23 ,"ooo-emphasis-contrasting-color" },
181 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 24 ,"ooo-emphasis-darken" },
182 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 25 ,"ooo-emphasis-desaturate" },
183 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 26 ,"ooo-emphasis-flash-bulb" },
184 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 27 ,"ooo-emphasis-flicker" },
185 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 28 ,"ooo-emphasis-grow-with-color" },
186 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 30 ,"ooo-emphasis-lighten" },
187 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 31 ,"ooo-emphasis-style-emphasis" },
188 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 32 ,"ooo-emphasis-teeter" },
189 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 33 ,"ooo-emphasis-vertical-highlight" },
190 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 34 ,"ooo-emphasis-wave" },
191 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 35 ,"ooo-emphasis-blink" },
192 { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 36 ,"ooo-emphasis-shimmer" },
193 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 1 ,"ooo-exit-disappear" },
194 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 2 ,"ooo-exit-fly-out" },
195 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 3 ,"ooo-exit-venetian-blinds" },
196 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 4 ,"ooo-exit-box" },
197 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 5 ,"ooo-exit-checkerboard" },
198 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 6 ,"ooo-exit-circle" },
199 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 7 ,"ooo-exit-crawl-out" },
200 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 8 ,"ooo-exit-diamond" },
201 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 9 ,"ooo-exit-dissolve" },
202 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 10 ,"ooo-exit-fade-out" },
203 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 11 ,"ooo-exit-flash-once" },
204 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 12 ,"ooo-exit-peek-out" },
205 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 13 ,"ooo-exit-plus" },
206 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 14 ,"ooo-exit-random-bars" },
207 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 15 ,"ooo-exit-spiral-out" },
208 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 16 ,"ooo-exit-split" },
209 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 17 ,"ooo-exit-collapse" },
210 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 18 ,"ooo-exit-diagonal-squares" },
211 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 19 ,"ooo-exit-swivel" },
212 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 20 ,"ooo-exit-wedge" },
213 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 21 ,"ooo-exit-wheel" },
214 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 22 ,"ooo-exit-wipe" },
215 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 23 ,"ooo-exit-zoom" },
216 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 24 ,"ooo-exit-random" },
217 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 25 ,"ooo-exit-boomerang" },
218 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 26 ,"ooo-exit-bounce" },
219 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 27 ,"ooo-exit-colored-lettering" },
220 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 28 ,"ooo-exit-movie-credits" },
221 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 29 ,"ooo-exit-ease-out" },
222 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 30 ,"ooo-exit-float" },
223 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 31 ,"ooo-exit-turn-and-grow" },
224 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 34 ,"ooo-exit-breaks" },
225 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 35 ,"ooo-exit-pinwheel" },
226 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 37 ,"ooo-exit-sink-down" },
227 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 38 ,"ooo-exit-swish" },
228 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 39 ,"ooo-exit-thread" },
229 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 40 ,"ooo-exit-unfold" },
230 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 41 ,"ooo-exit-whip" },
231 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 42 ,"ooo-exit-descend" },
232 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 43 ,"ooo-exit-center-revolve" },
233 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 45 ,"ooo-exit-fade-out-and-swivel" },
234 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 47 ,"ooo-exit-ascend" },
235 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 48 ,"ooo-exit-sling" },
236 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 53 ,"ooo-exit-fade-out-and-zoom" },
237 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 55 ,"ooo-exit-contract" },
238 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 49 ,"ooo-exit-spin-out" },
239 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 50 ,"ooo-exit-stretchy" },
240 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 51 ,"ooo-exit-magnify" },
241 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 52 ,"ooo-exit-curve-down" },
242 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 54 ,"ooo-exit-glide" },
243 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 56 ,"ooo-exit-flip" },
244 { ::com::sun::star::presentation::EffectPresetClass::EXIT, 58 ,"ooo-exit-fold" },
249 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 16 ,"ooo-motionpath-4-point-star" },
250 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 5 ,"ooo-motionpath-5-point-star" },
251 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 11 ,"ooo-motionpath-6-point-star" },
252 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 17 ,"ooo-motionpath-8-point-star" },
253 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 1 ,"ooo-motionpath-circle" },
254 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 6 ,"ooo-motionpath-crescent-moon" },
255 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 3 ,"ooo-motionpath-diamond" },
256 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 13 ,"ooo-motionpath-equal-triangle" },
257 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 12 ,"ooo-motionpath-oval" },
258 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 9 ,"ooo-motionpath-heart" },
259 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 4 ,"ooo-motionpath-hexagon" },
260 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 10 ,"ooo-motionpath-octagon" },
261 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 14 ,"ooo-motionpath-parallelogram" },
262 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 15 ,"ooo-motionpath-pentagon" },
263 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 2 ,"ooo-motionpath-right-triangle" },
264 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 7 ,"ooo-motionpath-square" },
265 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 18 ,"ooo-motionpath-teardrop" },
266 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 8 ,"ooo-motionpath-trapezoid" },
267 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 37 ,"ooo-motionpath-arc-down" },
268 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 51 ,"ooo-motionpath-arc-left" },
269 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 58 ,"ooo-motionpath-arc-right" },
270 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 44 ,"ooo-motionpath-arc-up" },
271 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 41 ,"ooo-motionpath-bounce-left" },
272 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 54 ,"ooo-motionpath-bounce-right" },
273 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 48 ,"ooo-motionpath-curvy-left" },
274 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 61 ,"ooo-motionpath-curvy-right" },
275 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 60 ,"ooo-motionpath-decaying-wave" },
276 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 49 ,"ooo-motionpath-diagonal-down-right" },
277 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 56 ,"ooo-motionpath-diagonal-up-right" },
278 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 42 ,"ooo-motionpath-down" },
279 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 52 ,"ooo-motionpath-funnel" },
280 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 53 ,"ooo-motionpath-spring" },
281 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 62 ,"ooo-motionpath-stairs-down" },
282 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 50 ,"ooo-motionpath-turn-down" },
283 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 36 ,"ooo-motionpath-turn-down-right" },
284 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 43 ,"ooo-motionpath-turn-up" },
285 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 57 ,"ooo-motionpath-turn-up-right" },
286 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 64 ,"ooo-motionpath-up" },
287 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 47 ,"ooo-motionpath-wave" },
288 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 38 ,"ooo-motionpath-zigzag" },
289 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 31 ,"ooo-motionpath-bean" },
290 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 25 ,"ooo-motionpath-buzz-saw" },
291 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 20 ,"ooo-motionpath-curved-square" },
292 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 21 ,"ooo-motionpath-curved-x" },
293 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 23 ,"ooo-motionpath-curvy-star" },
294 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 28 ,"ooo-motionpath-figure-8-four" },
295 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 26 ,"ooo-motionpath-horizontal-figure-8" },
296 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 34 ,"ooo-motionpath-inverted-square" },
297 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 33 ,"ooo-motionpath-inverted-triangle" },
298 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 24 ,"ooo-motionpath-loop-de-loop" },
299 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 29 ,"ooo-motionpath-neutron" },
300 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 27 ,"ooo-motionpath-peanut" },
301 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 32 ,"ooo-motionpath-clover" },
302 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 19 ,"ooo-motionpath-pointy-star" },
303 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 30 ,"ooo-motionpath-swoosh" },
304 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 22 ,"ooo-motionpath-vertical-figure-8" },
305 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 35 ,"ooo-motionpath-left" },
306 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 63 ,"ooo-motionpath-right" },
307 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 55 ,"ooo-motionpath-spiral-left" },
308 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 46 ,"ooo-motionpath-spiral-right" },
309 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 40 ,"ooo-motionpath-sine-wave" },
310 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 59 ,"ooo-motionpath-s-curve-1" },
311 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 39 ,"ooo-motionpath-s-curve-2" },
312 { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 45 ,"ooo-motionpath-heartbeat" },
315 { 0,0,0 }
318 // from sd/source/filter/ppt/pptinanimations.cxx
319 static OUString getConvertedSubType( sal_Int16 nPresetClass, sal_Int32 nPresetId, sal_Int32 nPresetSubType )
321 const sal_Char* pStr = 0;
323 if( (nPresetClass == EffectPresetClass::ENTRANCE) || (nPresetClass == EffectPresetClass::EXIT) )
325 // skip wheel effect
326 if( nPresetId != 21 )
328 if( nPresetId == 5 )
330 // checkerboard
331 switch( nPresetSubType )
333 case 5: pStr = "downward"; break;
334 case 10: pStr = "across"; break;
337 else if( nPresetId == 17 )
339 // stretch
340 if( nPresetSubType == 10 )
341 pStr = "across";
343 else if( nPresetId == 18 )
345 // strips
346 switch( nPresetSubType )
348 case 3: pStr = "right-to-top"; break;
349 case 6: pStr = "right-to-bottom"; break;
350 case 9: pStr = "left-to-top"; break;
351 case 12: pStr = "left-to-bottom"; break;
355 if( pStr == 0 )
357 const convert_subtype* p = gConvertArray;
359 while( p->mpStrSubType )
361 if( p->mnID == nPresetSubType )
363 pStr = p->mpStrSubType;
364 break;
366 p++;
372 if( pStr )
373 return OUString::createFromAscii( pStr );
374 else
375 return OUString::valueOf( nPresetSubType );
378 // END
380 CommonTimeNodeContext::CommonTimeNodeContext(
381 ContextHandler& rParent,
382 sal_Int32 aElement,
383 const Reference< XFastAttributeList >& xAttribs,
384 const TimeNodePtr & pNode )
385 : TimeNodeContext( rParent, aElement, xAttribs, pNode )
386 , mbIterate( false )
388 AttributeList attribs( xAttribs );
389 sal_Int32 nInt; // some temporary int value for float conversions
391 NodePropertyMap & aProps = pNode->getNodeProperties();
392 TimeNode::UserDataMap & aUserData = pNode->getUserData();
394 if( attribs.hasAttribute( XML_accel ) )
396 double dPercent = ::oox::drawingml::GetPositiveFixedPercentage( xAttribs->getOptionalValue( XML_accel ) );
397 aProps[ NP_ACCELERATION ] <<= dPercent;
400 if( attribs.hasAttribute( XML_afterEffect ) )
402 aUserData[ CREATE_OUSTRING( "after-effect" ) ]
403 = makeAny( attribs.getBool( XML_afterEffect, false ) );
405 aProps[ NP_AUTOREVERSE ] = makeAny( attribs.getBool( XML_autoRev, false ) );
407 // TODO
408 if( attribs.hasAttribute( XML_bldLvl ) )
410 attribs.getInteger( XML_bldLvl, 0 );
412 if( attribs.hasAttribute( XML_decel ) )
414 double dPercent = ::oox::drawingml::GetPositiveFixedPercentage( xAttribs->getOptionalValue( XML_decel ) );
415 aProps[ NP_DECELERATE ] <<= dPercent;
417 // TODO
418 if( attribs.hasAttribute( XML_display ) )
420 aProps[ NP_DISPLAY ] <<= attribs.getBool( XML_display, true );
422 if( attribs.hasAttribute( XML_dur ) )
424 aProps[ NP_DURATION ] = GetTime( xAttribs->getOptionalValue( XML_dur) );
426 // TODO
427 if( attribs.hasAttribute( XML_evtFilter ) )
429 xAttribs->getOptionalValue( XML_evtFilter );
431 // ST_TLTimeNodeFillType
432 if( attribs.hasAttribute( XML_fill ) )
434 nInt = xAttribs->getOptionalValueToken( XML_fill, 0 );
435 if( nInt != 0 )
437 sal_Int16 nEnum;
438 switch( nInt )
440 case XML_remove:
441 nEnum = AnimationFill::REMOVE;
442 break;
443 case XML_freeze:
444 nEnum = AnimationFill::FREEZE;
445 break;
446 case XML_hold:
447 nEnum = AnimationFill::HOLD;
448 break;
449 case XML_transition:
450 nEnum = AnimationFill::TRANSITION;
451 break;
452 default:
453 nEnum = AnimationFill::DEFAULT;
454 break;
456 aProps[ NP_FILL ] <<= (sal_Int16)nEnum;
459 if( attribs.hasAttribute( XML_grpId ) )
461 attribs.getUnsigned( XML_grpId, 0 );
463 // ST_TLTimeNodeID
464 if( attribs.hasAttribute( XML_id ) )
466 sal_uInt32 nId = attribs.getUnsigned( XML_id, 0 );
467 pNode->setId( nId );
469 // ST_TLTimeNodeMasterRelation
470 nInt = xAttribs->getOptionalValueToken( XML_masterRel, 0 );
471 if( nInt )
473 // TODO
474 switch(nInt)
476 case XML_sameClick:
477 case XML_lastClick:
478 case XML_nextClick:
479 break;
483 // TODO
484 if( attribs.hasAttribute( XML_nodePh ) )
486 attribs.getBool( XML_nodePh, false );
488 // ST_TLTimeNodeType
489 nInt = xAttribs->getOptionalValueToken( XML_nodeType, 0 );
490 if( nInt != 0 )
492 sal_Int16 nEnum;
493 switch( nInt )
495 case XML_clickEffect:
496 case XML_clickPar:
497 nEnum = EffectNodeType::ON_CLICK;
498 break;
499 case XML_withEffect:
500 case XML_withGroup:
501 nEnum = EffectNodeType::WITH_PREVIOUS;
502 break;
503 case XML_mainSeq:
504 nEnum = EffectNodeType::MAIN_SEQUENCE;
505 break;
506 case XML_interactiveSeq:
507 nEnum = EffectNodeType::INTERACTIVE_SEQUENCE;
508 break;
509 case XML_afterGroup:
510 case XML_afterEffect:
511 nEnum = EffectNodeType::AFTER_PREVIOUS;
512 break;
513 case XML_tmRoot:
514 nEnum = EffectNodeType::TIMING_ROOT;
515 break;
516 default:
517 nEnum = EffectNodeType::DEFAULT;
518 break;
520 aUserData[ CREATE_OUSTRING( "node-type" ) ] <<= nEnum;
523 // ST_TLTimeNodePresetClassType
524 nInt = xAttribs->getOptionalValueToken( XML_presetClass, 0 );
525 sal_Int16 nEffectPresetClass = 0;
526 sal_Int32 nPresetId = 0;
527 sal_Int32 nPresetSubType = 0;
528 if( nInt != 0 )
530 // TODO put that in a function
531 switch( nInt )
533 case XML_entr:
534 nEffectPresetClass = EffectPresetClass::ENTRANCE;
535 break;
536 case XML_exit:
537 nEffectPresetClass = EffectPresetClass::EXIT;
538 break;
539 case XML_emph:
540 nEffectPresetClass = EffectPresetClass::EMPHASIS;
541 break;
542 case XML_path:
543 nEffectPresetClass = EffectPresetClass::MOTIONPATH;
544 break;
545 case XML_verb:
546 // TODO check that the value below is correct
547 nEffectPresetClass = EffectPresetClass::OLEACTION;
548 break;
549 case XML_mediacall:
550 nEffectPresetClass = EffectPresetClass::MEDIACALL;
551 break;
552 default:
553 nEffectPresetClass = 0;
554 break;
556 aUserData[ CREATE_OUSTRING( "preset-class" ) ] = makeAny( nEffectPresetClass );
557 if( attribs.hasAttribute( XML_presetID ) )
559 nPresetId = attribs.getInteger( XML_presetID, 0 );
560 const preset_maping* p = gPresetMaping;
561 while( p->mpStrPresetId && ((p->mnPresetClass != nEffectPresetClass) || (p->mnPresetId != nPresetId )) )
562 p++;
564 aUserData[ CREATE_OUSTRING( "preset-id" ) ]
565 = makeAny( OUString::createFromAscii( p->mpStrPresetId ) );
566 nPresetSubType = attribs.getInteger( XML_presetSubtype, 0 );
567 if( nPresetSubType )
569 aUserData[ CREATE_OUSTRING( "preset-sub-type" ) ]
570 = makeAny( getConvertedSubType( nEffectPresetClass, nPresetId, nPresetSubType ) );
574 if( attribs.hasAttribute( XML_repeatCount ) )
576 aProps[ NP_REPEATCOUNT ] = GetTime( xAttribs->getOptionalValue( XML_repeatCount ) );
578 /* see pptinanimation */
579 // aProps[ NP_REPEATCOUNT ] <<= (fCount < ((float)3.40282346638528860e+38)) ? makeAny( (double)fCount ) : makeAny( Timing_INDEFINITE );
580 if( attribs.hasAttribute( XML_repeatDur ) )
582 aProps[ NP_REPEATDURATION ] = GetTime( xAttribs->getOptionalValue( XML_repeatDur ) );
584 // TODO repeatDur is otherwise the same as dur. What shall we do? -- Hub
586 // ST_TLTimeNodeRestartType
587 nInt = xAttribs->getOptionalValueToken( XML_restart, 0 );
588 if( nInt != 0 )
590 // TODO put that in a function
591 sal_Int16 nEnum;
592 switch( nInt )
594 case XML_always:
595 nEnum = AnimationRestart::ALWAYS;
596 break;
597 case XML_whenNotActive:
598 nEnum = AnimationRestart::WHEN_NOT_ACTIVE;
599 break;
600 case XML_never:
601 nEnum = AnimationRestart::NEVER;
602 break;
603 default:
604 nEnum = AnimationRestart::DEFAULT;
605 break;
607 aProps[ NP_RESTART ] <<= (sal_Int16)nEnum;
609 // ST_Percentage TODO
610 xAttribs->getOptionalValue( XML_spd /*"10000" */ );
611 // ST_TLTimeNodeSyncType TODO
612 xAttribs->getOptionalValue( XML_syncBehavior );
613 // TODO (string)
614 xAttribs->getOptionalValue( XML_tmFilter );
618 CommonTimeNodeContext::~CommonTimeNodeContext( ) throw ( )
623 void SAL_CALL CommonTimeNodeContext::endFastElement( sal_Int32 aElement ) throw ( SAXException, RuntimeException)
625 if( aElement == ( NMSP_PPT|XML_iterate ) )
627 mbIterate = false;
632 Reference< XFastContextHandler > SAL_CALL CommonTimeNodeContext::createFastChildContext( ::sal_Int32 aElementToken, const Reference< XFastAttributeList >& xAttribs ) throw ( SAXException, RuntimeException )
634 Reference< XFastContextHandler > xRet;
636 switch ( aElementToken )
638 case NMSP_PPT|XML_childTnLst:
639 case NMSP_PPT|XML_subTnLst:
640 xRet.set( new TimeNodeListContext( *this, mpNode->getChildren() ) );
641 break;
643 case NMSP_PPT|XML_stCondLst:
644 xRet.set( new CondListContext( *this, aElementToken, xAttribs, mpNode, mpNode->getStartCondition() ) );
645 break;
646 case NMSP_PPT|XML_endCondLst:
647 xRet.set( new CondListContext( *this, aElementToken, xAttribs, mpNode, mpNode->getEndCondition() ) );
648 break;
650 case NMSP_PPT|XML_endSync:
651 xRet.set( new CondContext( *this, xAttribs, mpNode, mpNode->getEndSyncValue() ) );
652 break;
653 case NMSP_PPT|XML_iterate:
655 sal_Int32 nVal = xAttribs->getOptionalValueToken( XML_type, XML_el );
656 if( nVal != 0 )
658 // TODO put that in a function
659 sal_Int16 nEnum;
660 switch( nVal )
662 case XML_el:
663 nEnum = TextAnimationType::BY_PARAGRAPH;
664 break;
665 case XML_lt:
666 nEnum = TextAnimationType::BY_LETTER;
667 break;
668 case XML_wd:
669 nEnum = TextAnimationType::BY_WORD;
670 break;
671 default:
672 // default is BY_WORD. See Ppt97Animation::GetTextAnimationType()
673 // in sd/source/filter/ppt/ppt97animations.cxx:297
674 nEnum = TextAnimationType::BY_WORD;
675 break;
677 mpNode->getNodeProperties()[ NP_ITERATETYPE ] <<= nEnum;
679 // in case of exception we ignore the whole tag.
680 AttributeList attribs( xAttribs );
681 // TODO what to do with this
682 /*bool bBackwards =*/ attribs.getBool( XML_backwards, false );
683 mbIterate = true;
684 break;
686 case NMSP_PPT|XML_tmAbs:
687 if( mbIterate )
689 AttributeList attribs( xAttribs );
690 double fTime = attribs.getUnsigned( XML_val, 0 );
691 // time in ms. property is in % TODO
692 mpNode->getNodeProperties()[ NP_ITERATEINTERVAL ] <<= fTime;
694 break;
695 case NMSP_PPT|XML_tmPct:
696 if( mbIterate )
698 AttributeList attribs( xAttribs );
699 double fPercent = (double)attribs.getUnsigned( XML_val, 0 ) / 100000.0;
700 mpNode->getNodeProperties()[ NP_ITERATEINTERVAL ] <<= fPercent;
702 break;
703 default:
704 break;
707 if( !xRet.is() )
708 xRet.set( this );
710 return xRet;