1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef __com_sun_star_animations_TransitionType_idl__
24#define __com_sun_star_animations_TransitionType_idl__
25
26//=============================================================================
27
28 module com {  module sun {  module star {  module animations {
29
30//=============================================================================
31
32/**	@see http://www.w3.org/TR/smil20/smil-transitions.html#Table%201:%20Taxonomy%20Table
33*/
34constants TransitionType
35{
36	const short BARWIPE = 1;
37	const short BOXWIPE = 2;
38	const short FOURBOXWIPE = 3;
39	const short BARNDOORWIPE = 4;
40	const short DIAGONALWIPE = 5;
41	const short BOWTIEWIPE = 6;
42	const short MISCDIAGONALWIPE = 7;
43	const short VEEWIPE = 8;
44	const short BARNVEEWIPE = 9;
45	const short ZIGZAGWIPE = 10;
46	const short BARNZIGZAGWIPE = 11;
47	const short IRISWIPE = 12;
48	const short TRIANGLEWIPE = 13;
49	const short ARROWHEADWIPE = 14;
50	const short PENTAGONWIPE = 15;
51	const short HEXAGONWIPE = 16;
52	const short ELLIPSEWIPE = 17;
53	const short EYEWIPE = 18;
54	const short ROUNDRECTWIPE = 19;
55	const short STARWIPE = 20;
56	const short MISCSHAPEWIPE = 21;
57	const short CLOCKWIPE = 22;
58	const short PINWHEELWIPE = 23;
59	const short SINGLESWEEPWIPE = 24;
60	const short FANWIPE = 25;
61	const short DOUBLEFANWIPE = 26;
62	const short DOUBLESWEEPWIPE = 27;
63	const short SALOONDOORWIPE = 28;
64	const short WINDSHIELDWIPE = 29;
65	const short SNAKEWIPE = 30;
66	const short SPIRALWIPE = 31;
67	const short PARALLELSNAKESWIPE = 32;
68	const short BOXSNAKESWIPE = 33;
69	const short WATERFALLWIPE = 34;
70	const short PUSHWIPE = 35;
71	const short SLIDEWIPE = 36;
72	const short FADE = 37;
73
74	// new
75	const short RANDOMBARWIPE = 38;
76	const short CHECKERBOARDWIPE = 39;
77	const short DISSOLVE = 40;
78    const short BLINDSWIPE = 41;
79	const short RANDOM = 42;
80	const short ZOOM = 43;
81};
82
83//=============================================================================
84
85}; }; }; };
86
87#endif
88