bump product version to 4.1.6.2
[LibreOffice.git] / oox / source / ppt / commontimenodecontext.cxx
blobddc4c14aeb3aced04cb19c09149bb4eb632fee84
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "commontimenodecontext.hxx"
22 #include <algorithm>
24 #include "comphelper/anytostring.hxx"
25 #include "cppuhelper/exc_hlp.hxx"
26 #include <osl/diagnose.h>
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>
36 #include "oox/helper/attributelist.hxx"
37 #include "oox/core/fragmenthandler.hxx"
38 #include "oox/ppt/pptimport.hxx"
39 #include "oox/drawingml/drawingmltypes.hxx"
41 #include "animationtypes.hxx"
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;
50 using ::com::sun::star::beans::NamedValue;
52 namespace oox { namespace ppt {
54 // BEGIN CUT&PASTE from sd/source/filter/ppt/pptanimations.hxx
55 struct convert_subtype
57 sal_Int32 mnID;
58 const sal_Char* mpStrSubType;
60 static const convert_subtype gConvertArray[] =
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 }
87 struct preset_maping
89 sal_Int32 mnPresetClass;
90 sal_Int32 mnPresetId;
91 const sal_Char* mpStrPresetId;
94 static const preset_maping gPresetMaping[] =
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" },
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" },
301 { 0,0,0 }
304 // from sd/source/filter/ppt/pptinanimations.cxx
305 static OUString getConvertedSubType( sal_Int16 nPresetClass, sal_Int32 nPresetId, sal_Int32 nPresetSubType )
307 const sal_Char* pStr = 0;
309 if( (nPresetClass == EffectPresetClass::ENTRANCE) || (nPresetClass == EffectPresetClass::EXIT) )
311 // skip wheel effect
312 if( nPresetId != 21 )
314 if( nPresetId == 5 )
316 // checkerboard
317 switch( nPresetSubType )
319 case 5: pStr = "downward"; break;
320 case 10: pStr = "across"; break;
323 else if( nPresetId == 17 )
325 // stretch
326 if( nPresetSubType == 10 )
327 pStr = "across";
329 else if( nPresetId == 18 )
331 // strips
332 switch( nPresetSubType )
334 case 3: pStr = "right-to-top"; break;
335 case 6: pStr = "right-to-bottom"; break;
336 case 9: pStr = "left-to-top"; break;
337 case 12: pStr = "left-to-bottom"; break;
341 if( pStr == 0 )
343 const convert_subtype* p = gConvertArray;
345 while( p->mpStrSubType )
347 if( p->mnID == nPresetSubType )
349 pStr = p->mpStrSubType;
350 break;
352 p++;
358 if( pStr )
359 return OUString::createFromAscii( pStr );
360 else
361 return OUString::valueOf( nPresetSubType );
364 // END
366 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 , mbIterate( false )
374 AttributeList attribs( xAttribs );
375 sal_Int32 nInt; // some temporary int value for float conversions
377 NodePropertyMap & aProps = pNode->getNodeProperties();
378 TimeNode::UserDataMap & aUserData = pNode->getUserData();
380 if( attribs.hasAttribute( XML_accel ) )
382 double dPercent = ::oox::drawingml::GetPositiveFixedPercentage( xAttribs->getOptionalValue( XML_accel ) );
383 aProps[ NP_ACCELERATION ] <<= dPercent;
386 if( attribs.hasAttribute( XML_afterEffect ) )
388 aUserData[ "after-effect" ]
389 = makeAny( attribs.getBool( XML_afterEffect, false ) );
391 aProps[ NP_AUTOREVERSE ] = makeAny( attribs.getBool( XML_autoRev, false ) );
393 // TODO
394 if( attribs.hasAttribute( XML_bldLvl ) )
396 attribs.getInteger( XML_bldLvl, 0 );
398 if( attribs.hasAttribute( XML_decel ) )
400 double dPercent = ::oox::drawingml::GetPositiveFixedPercentage( xAttribs->getOptionalValue( XML_decel ) );
401 aProps[ NP_DECELERATE ] <<= dPercent;
403 // TODO
404 if( attribs.hasAttribute( XML_display ) )
406 aProps[ NP_DISPLAY ] <<= attribs.getBool( XML_display, true );
408 if( attribs.hasAttribute( XML_dur ) )
410 aProps[ NP_DURATION ] = GetTime( xAttribs->getOptionalValue( XML_dur) );
412 // TODO
413 if( attribs.hasAttribute( XML_evtFilter ) )
415 xAttribs->getOptionalValue( XML_evtFilter );
417 // ST_TLTimeNodeFillType
418 if( attribs.hasAttribute( XML_fill ) )
420 nInt = xAttribs->getOptionalValueToken( XML_fill, 0 );
421 if( nInt != 0 )
423 sal_Int16 nEnum;
424 switch( nInt )
426 case XML_remove:
427 nEnum = AnimationFill::REMOVE;
428 break;
429 case XML_freeze:
430 nEnum = AnimationFill::FREEZE;
431 break;
432 case XML_hold:
433 nEnum = AnimationFill::HOLD;
434 break;
435 case XML_transition:
436 nEnum = AnimationFill::TRANSITION;
437 break;
438 default:
439 nEnum = AnimationFill::DEFAULT;
440 break;
442 aProps[ NP_FILL ] <<= (sal_Int16)nEnum;
445 if( attribs.hasAttribute( XML_grpId ) )
447 attribs.getUnsigned( XML_grpId, 0 );
449 // ST_TLTimeNodeID
450 if( attribs.hasAttribute( XML_id ) )
452 sal_uInt32 nId = attribs.getUnsigned( XML_id, 0 );
453 pNode->setId( nId );
455 // ST_TLTimeNodeMasterRelation
456 nInt = xAttribs->getOptionalValueToken( XML_masterRel, 0 );
457 if( nInt )
459 // TODO
460 switch(nInt)
462 case XML_sameClick:
463 case XML_lastClick:
464 case XML_nextClick:
465 break;
469 // TODO
470 if( attribs.hasAttribute( XML_nodePh ) )
472 attribs.getBool( XML_nodePh, false );
474 // ST_TLTimeNodeType
475 nInt = xAttribs->getOptionalValueToken( XML_nodeType, 0 );
476 if( nInt != 0 )
478 sal_Int16 nEnum;
479 switch( nInt )
481 case XML_clickEffect:
482 case XML_clickPar:
483 nEnum = EffectNodeType::ON_CLICK;
484 break;
485 case XML_withEffect:
486 case XML_withGroup:
487 nEnum = EffectNodeType::WITH_PREVIOUS;
488 break;
489 case XML_mainSeq:
490 nEnum = EffectNodeType::MAIN_SEQUENCE;
491 break;
492 case XML_interactiveSeq:
493 nEnum = EffectNodeType::INTERACTIVE_SEQUENCE;
494 break;
495 case XML_afterGroup:
496 case XML_afterEffect:
497 nEnum = EffectNodeType::AFTER_PREVIOUS;
498 break;
499 case XML_tmRoot:
500 nEnum = EffectNodeType::TIMING_ROOT;
501 break;
502 default:
503 nEnum = EffectNodeType::DEFAULT;
504 break;
506 aUserData[ "node-type" ] <<= nEnum;
509 // ST_TLTimeNodePresetClassType
510 nInt = xAttribs->getOptionalValueToken( XML_presetClass, 0 );
511 if( nInt != 0 )
513 sal_Int16 nEffectPresetClass = 0;
514 // TODO put that in a function
515 switch( nInt )
517 case XML_entr:
518 nEffectPresetClass = EffectPresetClass::ENTRANCE;
519 break;
520 case XML_exit:
521 nEffectPresetClass = EffectPresetClass::EXIT;
522 break;
523 case XML_emph:
524 nEffectPresetClass = EffectPresetClass::EMPHASIS;
525 break;
526 case XML_path:
527 nEffectPresetClass = EffectPresetClass::MOTIONPATH;
528 break;
529 case XML_verb:
530 // TODO check that the value below is correct
531 nEffectPresetClass = EffectPresetClass::OLEACTION;
532 break;
533 case XML_mediacall:
534 nEffectPresetClass = EffectPresetClass::MEDIACALL;
535 break;
536 default:
537 nEffectPresetClass = 0;
538 break;
540 aUserData[ "preset-class" ] = makeAny( nEffectPresetClass );
541 if( attribs.hasAttribute( XML_presetID ) )
543 sal_Int32 nPresetId = attribs.getInteger( XML_presetID, 0 );
544 const preset_maping* p = gPresetMaping;
545 while( p->mpStrPresetId && ((p->mnPresetClass != nEffectPresetClass) || (p->mnPresetId != nPresetId )) )
546 p++;
548 aUserData[ "preset-id" ]
549 = makeAny( OUString::createFromAscii( p->mpStrPresetId ) );
550 sal_Int32 nPresetSubType = attribs.getInteger( XML_presetSubtype, 0 );
551 if( nPresetSubType )
553 aUserData[ "preset-sub-type" ] = makeAny( getConvertedSubType( nEffectPresetClass, nPresetId, nPresetSubType ) );
557 if( attribs.hasAttribute( XML_repeatCount ) )
559 aProps[ NP_REPEATCOUNT ] = GetTime( xAttribs->getOptionalValue( XML_repeatCount ) );
561 /* see pptinanimation */
562 // aProps[ NP_REPEATCOUNT ] <<= (fCount < ((float)3.40282346638528860e+38)) ? makeAny( (double)fCount ) : makeAny( Timing_INDEFINITE );
563 if( attribs.hasAttribute( XML_repeatDur ) )
565 aProps[ NP_REPEATDURATION ] = GetTime( xAttribs->getOptionalValue( XML_repeatDur ) );
567 // TODO repeatDur is otherwise the same as dur. What shall we do? -- Hub
569 // ST_TLTimeNodeRestartType
570 nInt = xAttribs->getOptionalValueToken( XML_restart, 0 );
571 if( nInt != 0 )
573 // TODO put that in a function
574 sal_Int16 nEnum;
575 switch( nInt )
577 case XML_always:
578 nEnum = AnimationRestart::ALWAYS;
579 break;
580 case XML_whenNotActive:
581 nEnum = AnimationRestart::WHEN_NOT_ACTIVE;
582 break;
583 case XML_never:
584 nEnum = AnimationRestart::NEVER;
585 break;
586 default:
587 nEnum = AnimationRestart::DEFAULT;
588 break;
590 aProps[ NP_RESTART ] <<= (sal_Int16)nEnum;
592 // ST_Percentage TODO
593 xAttribs->getOptionalValue( XML_spd /*"10000" */ );
594 // ST_TLTimeNodeSyncType TODO
595 xAttribs->getOptionalValue( XML_syncBehavior );
596 // TODO (string)
597 xAttribs->getOptionalValue( XML_tmFilter );
601 CommonTimeNodeContext::~CommonTimeNodeContext( ) throw ( )
606 void CommonTimeNodeContext::onEndElement()
608 if( isCurrentElement( PPT_TOKEN( iterate ) ) )
610 mbIterate = false;
615 ::oox::core::ContextHandlerRef CommonTimeNodeContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs )
618 switch ( aElementToken )
620 case PPT_TOKEN( childTnLst ):
621 case PPT_TOKEN( subTnLst ):
622 return new TimeNodeListContext( *this, mpNode->getChildren() );
624 case PPT_TOKEN( stCondLst ):
625 return new CondListContext( *this, aElementToken, rAttribs.getFastAttributeList(), mpNode, mpNode->getStartCondition() );
626 case PPT_TOKEN( endCondLst ):
627 return new CondListContext( *this, aElementToken, rAttribs.getFastAttributeList(), mpNode, mpNode->getEndCondition() );
629 case PPT_TOKEN( endSync ):
630 return new CondContext( *this, rAttribs.getFastAttributeList(), mpNode, mpNode->getEndSyncValue() );
631 case PPT_TOKEN( iterate ):
633 sal_Int32 nVal = rAttribs.getToken( XML_type, XML_el );
634 if( nVal != 0 )
636 // TODO put that in a function
637 sal_Int16 nEnum;
638 switch( nVal )
640 case XML_el:
641 nEnum = TextAnimationType::BY_PARAGRAPH;
642 break;
643 case XML_lt:
644 nEnum = TextAnimationType::BY_LETTER;
645 break;
646 case XML_wd:
647 nEnum = TextAnimationType::BY_WORD;
648 break;
649 default:
650 // default is BY_WORD. See Ppt97Animation::GetTextAnimationType()
651 // in sd/source/filter/ppt/ppt97animations.cxx:297
652 nEnum = TextAnimationType::BY_WORD;
653 break;
655 mpNode->getNodeProperties()[ NP_ITERATETYPE ] <<= nEnum;
657 // in case of exception we ignore the whole tag.
658 // TODO what to do with this
659 /*bool bBackwards =*/ rAttribs.getBool( XML_backwards, false );
660 mbIterate = true;
661 return this;
663 case PPT_TOKEN( tmAbs ):
664 if( mbIterate )
666 double fTime = rAttribs.getUnsigned( XML_val, 0 );
667 // time in ms. property is in % TODO
668 mpNode->getNodeProperties()[ NP_ITERATEINTERVAL ] <<= fTime;
670 return this;
671 case PPT_TOKEN( tmPct ):
672 if( mbIterate )
674 double fPercent = (double)rAttribs.getUnsigned( XML_val, 0 ) / 100000.0;
675 mpNode->getNodeProperties()[ NP_ITERATEINTERVAL ] <<= fPercent;
677 return this;
678 default:
679 break;
682 return this;
687 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */