1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 module com
{ module sun
{ module star
{ module presentation
{
25 /** specifies the fade effects to fade one page into another.
27 published
enum FadeEffect
30 /** use no fade effects.
35 /** use the fade effect "Fade from Left".
40 /** use the fade effect "Fade from Top".
45 /** use the fade effect "Fade from Right".
50 /** use the fade effect "Fade from Bottom".
55 /** use the fade effect "Fade to Center".
60 /** use the fade effect "Fade from Center".
65 /** use the fade effect "Move from Left".
70 /** use the fade effect "Move from Top".
75 /** use the fade effect "Move from Right".
80 /** use the fade effect "Move from Bottom".
85 /** use the fade effect "Roll from Left".
90 /** use the fade effect "Roll from Top".
95 /** use the fade effect "Roll from Right".
100 /** use the fade effect "Roll from Bottom".
105 /** use the fade effect "Vertical Stripes".
110 /** use the fade effect "Horizontal Stripes".
115 /** use the fade effect "Clockwise".
120 /** use the fade effect "Counter Clockwise".
125 /** use the fade effect "Fade from Upper Left".
130 /** use the fade effect "Fade from Upper Right".
132 FADE_FROM_UPPERRIGHT
,
135 /** use the fade effect "Fade from Lower Left".
140 /** use the fade effect "Fade from Lower Right".
142 FADE_FROM_LOWERRIGHT
,
145 /** use the fade effect "Close Vertical".
150 /** use the fade effect "Close Horizontal".
155 /** use the fade effect "Open Vertical".
160 /** use the fade effect "Open Horizontal".
165 /** use the fade effect "Spiral Inward Left".
170 /** use the fade effect "Spiral Inward Right".
175 /** use the fade effect "Spiral Outward Left".
180 /** use the fade effect "Spiral Outward Right".
185 /** use the fade effect "Dissolve".
190 /** use the fade effect "Wavy Line from Left".
195 /** use the fade effect "Wavy Line from Top".
200 /** use the fade effect "Wavy Line from Right".
205 /** use the fade effect "Wavy Line from Bottom".
207 WAVYLINE_FROM_BOTTOM
,
210 /** use the fade effect "Random".
215 /** use the fade effect "Stretch from Left".
220 /** use the fade effect "Stretch from Top".
225 /** use the fade effect "Stretch from Right".
230 /** use the fade effect "Stretch from Bottom".
235 /** use the fade effect "Vertical Lines".
240 /** use the fade effect "Horizontal Lines".
245 /** use the fade effect "Move from Upper Left".
250 /** use the fade effect "Move from Upper Right".
252 MOVE_FROM_UPPERRIGHT
,
255 /** use the fade effect "Move from Lower Right".
257 MOVE_FROM_LOWERRIGHT
,
260 /** use the fade effect "Move from Lower Left".
265 /** use the fade effect "Uncover to Left".
270 /** use the fade effect "Uncover to Upper Left".
272 UNCOVER_TO_UPPERLEFT
,
275 /** use the fade effect "Uncover to Top".
280 /** use the fade effect "Uncover to Upper Right".
282 UNCOVER_TO_UPPERRIGHT
,
285 /** use the fade effect "Uncover to Right".
290 /** use the fade effect "Uncover to Lower Right".
292 UNCOVER_TO_LOWERRIGHT
,
295 /** use the fade effect "Uncover to Bottom".
300 /** use the fade effect "Uncover to Lower Left".
302 UNCOVER_TO_LOWERLEFT
,
305 /** use the fade effect "Vertical Checkerboard".
307 VERTICAL_CHECKERBOARD
,
310 /** use the fade effect "Horizontal Checkerboard".
312 HORIZONTAL_CHECKERBOARD
318 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */