Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / presentation / FadeEffect.idl
blob6d88e4f6819249e3ccdf949d1bc13a17c85334d9
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 .
19 #ifndef __com_sun_star_presentation_FadeEffect_idl__
20 #define __com_sun_star_presentation_FadeEffect_idl__
24 module com { module sun { module star { module presentation {
27 /** specifies the fade effects to fade one page into another.
29 published enum FadeEffect
32 /** use no fade effects.
34 NONE,
37 /** use the fade effect "Fade from Left".
39 FADE_FROM_LEFT,
42 /** use the fade effect "Fade from Top".
44 FADE_FROM_TOP,
47 /** use the fade effect "Fade from Right".
49 FADE_FROM_RIGHT,
52 /** use the fade effect "Fade from Bottom".
54 FADE_FROM_BOTTOM,
57 /** use the fade effect "Fade to Center".
59 FADE_TO_CENTER,
62 /** use the fade effect "Fade from Center".
64 FADE_FROM_CENTER,
67 /** use the fade effect "Move from Left".
69 MOVE_FROM_LEFT,
72 /** use the fade effect "Move from Top".
74 MOVE_FROM_TOP,
77 /** use the fade effect "Move from Right".
79 MOVE_FROM_RIGHT,
82 /** use the fade effect "Move from Bottom".
84 MOVE_FROM_BOTTOM,
87 /** use the fade effect "Roll from Left".
89 ROLL_FROM_LEFT,
92 /** use the fade effect "Roll from Top".
94 ROLL_FROM_TOP,
97 /** use the fade effect "Roll from Right".
99 ROLL_FROM_RIGHT,
102 /** use the fade effect "Roll from Bottom".
104 ROLL_FROM_BOTTOM,
107 /** use the fade effect "Vertical Stripes".
109 VERTICAL_STRIPES,
112 /** use the fade effect "Horizontal Stripes".
114 HORIZONTAL_STRIPES,
117 /** use the fade effect "Clockwise".
119 CLOCKWISE,
122 /** use the fade effect "Counter Clockwise".
124 COUNTERCLOCKWISE,
127 /** use the fade effect "Fade from Upper Left".
129 FADE_FROM_UPPERLEFT,
132 /** use the fade effect "Fade from Upper Right".
134 FADE_FROM_UPPERRIGHT,
137 /** use the fade effect "Fade from Lower Left".
139 FADE_FROM_LOWERLEFT,
142 /** use the fade effect "Fade from Lower Right".
144 FADE_FROM_LOWERRIGHT,
147 /** use the fade effect "Close Vertical".
149 CLOSE_VERTICAL,
152 /** use the fade effect "Close Horizontal".
154 CLOSE_HORIZONTAL,
157 /** use the fade effect "Open Vertical".
159 OPEN_VERTICAL,
162 /** use the fade effect "Open Horizontal".
164 OPEN_HORIZONTAL,
167 /** use the fade effect "Spiral Inward Left".
169 SPIRALIN_LEFT,
172 /** use the fade effect "Spiral Inward Right".
174 SPIRALIN_RIGHT,
177 /** use the fade effect "Spiral Outward Left".
179 SPIRALOUT_LEFT,
182 /** use the fade effect "Spiral Outward Right".
184 SPIRALOUT_RIGHT,
187 /** use the fade effect "Dissolve".
189 DISSOLVE,
192 /** use the fade effect "Wavy Line from Left".
194 WAVYLINE_FROM_LEFT,
197 /** use the fade effect "Wavy Line from Top".
199 WAVYLINE_FROM_TOP,
202 /** use the fade effect "Wavy Line from Right".
204 WAVYLINE_FROM_RIGHT,
207 /** use the fade effect "Wavy Line from Bottom".
209 WAVYLINE_FROM_BOTTOM,
212 /** use the fade effect "Random".
214 RANDOM,
217 /** use the fade effect "Stretch from Left".
219 STRETCH_FROM_LEFT,
222 /** use the fade effect "Stretch from Top".
224 STRETCH_FROM_TOP,
227 /** use the fade effect "Stretch from Right".
229 STRETCH_FROM_RIGHT,
232 /** use the fade effect "Stretch from Bottom".
234 STRETCH_FROM_BOTTOM,
237 /** use the fade effect "Vertical Lines".
239 VERTICAL_LINES,
242 /** use the fade effect "Horizontal Lines".
244 HORIZONTAL_LINES,
247 /** use the fade effect "Move from Upper Left".
249 MOVE_FROM_UPPERLEFT,
252 /** use the fade effect "Move from Upper Right".
254 MOVE_FROM_UPPERRIGHT,
257 /** use the fade effect "Move from Lower Right".
259 MOVE_FROM_LOWERRIGHT,
262 /** use the fade effect "Move from Lower Left".
264 MOVE_FROM_LOWERLEFT,
267 /** use the fade effect "Uncover to Left".
269 UNCOVER_TO_LEFT,
272 /** use the fade effect "Uncover to Upper Left".
274 UNCOVER_TO_UPPERLEFT,
277 /** use the fade effect "Uncover to Top".
279 UNCOVER_TO_TOP,
282 /** use the fade effect "Uncover to Upper Right".
284 UNCOVER_TO_UPPERRIGHT,
287 /** use the fade effect "Uncover to Right".
289 UNCOVER_TO_RIGHT,
292 /** use the fade effect "Uncover to Lower Right".
294 UNCOVER_TO_LOWERRIGHT,
297 /** use the fade effect "Uncover to Bottom".
299 UNCOVER_TO_BOTTOM,
302 /** use the fade effect "Uncover to Lower Left".
304 UNCOVER_TO_LOWERLEFT,
307 /** use the fade effect "Vertical Checkerboard".
309 VERTICAL_CHECKERBOARD,
312 /** use the fade effect "Horizontal Checkerboard".
314 HORIZONTAL_CHECKERBOARD
318 }; }; }; };
320 #endif
322 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */