xref: /aoo4110/main/sd/sdi/sdslots.sdi (revision b1cdbd2c)
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
24module
25"2DADF501-1F00-101C-A2E4-00001B4C5CE7"
26"33A1C840-1F00-101C-A2E4-00001B4C5CE7"
27StarDraw
28[
29HelpText( "StarDraw Application" )
30SlotIdFile( "sdslots.hrc" )
31ModulePrefix( "Sd" )
32]
33{
34        include "sfx2/sfxitems.sdi"
35        include "sfx2/sfx.sdi"
36        include "svx/svxitems.sdi"
37        include "svx/xoitems.sdi"
38        include "svx/svx.sdi"
39
40		item UINT16 TbxImageItem;
41
42		enum FadeEffect
43		{
44			FADE_EFFECT_NONE ,
45			FADE_EFFECT_FADE_FROM_LEFT ,
46			FADE_EFFECT_FADE_FROM_TOP ,
47			FADE_EFFECT_FADE_FROM_RIGHT ,
48			FADE_EFFECT_FADE_FROM_BOTTOM ,
49			FADE_EFFECT_FADE_TO_CENTER ,
50			FADE_EFFECT_FADE_FROM_CENTER ,
51			FADE_EFFECT_MOVE_FROM_LEFT ,
52			FADE_EFFECT_MOVE_FROM_TOP ,
53			FADE_EFFECT_MOVE_FROM_RIGHT ,
54			FADE_EFFECT_MOVE_FROM_BOTTOM ,
55			FADE_EFFECT_ROLL_FROM_LEFT ,
56			FADE_EFFECT_ROLL_FROM_TOP ,
57			FADE_EFFECT_ROLL_FROM_RIGHT ,
58			FADE_EFFECT_ROLL_FROM_BOTTOM ,
59			FADE_EFFECT_VERTICAL_STRIPES ,
60			FADE_EFFECT_HORIZONTAL_STRIPES ,
61			FADE_EFFECT_OPEN_VERTICAL ,
62			FADE_EFFECT_CLOSE_VERTICAL ,
63			FADE_EFFECT_OPEN_HORIZONTAL ,
64			FADE_EFFECT_CLOSE_HORIZONTAL ,
65			FADE_EFFECT_CLEAR_AWAY ,
66			FADE_EFFECT_OVERLAY
67		}
68
69		enum FadeSpeed
70		{
71			FADE_SPEED_SLOW ,
72			FADE_SPEED_MEDIUM ,
73			FADE_SPEED_FAST
74		}
75
76		enum PresChange
77		{
78			PRESCHANGE_MANUAL,
79			PRESCHANGE_AUTO,
80			PRESCHANGE_SEMIAUTO
81		};
82
83			// Items
84		item UINT32 DiaTimeItem ;
85		item PresChange DiaAutoItem ;
86		item FadeEffect DiaEffectItem ;
87		item FadeSpeed DiaSpeedItem ;
88
89		include "sdraw.sdi"
90		include "app.sdi"
91		include "_drvwsh.sdi"
92		include "drviewsh.sdi"
93		include "outlnvsh.sdi"
94		include "drtxtob.sdi"
95		include "drbezob.sdi"
96		include "_docsh.sdi"
97		include "docshell.sdi"
98		include "drgrfob.sdi"
99        include "SlideSorterController.sdi"
100        include "ViewShellBase.sdi"
101		include "mediaob.sdi"
102		include "tables.sdi"
103        }
104