xref: /aoo41x/main/sd/sdi/sdgslots.sdi (revision 7aab1a1c)
1*4b0f5a03SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*4b0f5a03SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*4b0f5a03SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*4b0f5a03SAndrew Rist * distributed with this work for additional information
6*4b0f5a03SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*4b0f5a03SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*4b0f5a03SAndrew Rist * "License"); you may not use this file except in compliance
9*4b0f5a03SAndrew Rist * with the License.  You may obtain a copy of the License at
10*4b0f5a03SAndrew Rist *
11*4b0f5a03SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*4b0f5a03SAndrew Rist *
13*4b0f5a03SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*4b0f5a03SAndrew Rist * software distributed under the License is distributed on an
15*4b0f5a03SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*4b0f5a03SAndrew Rist * KIND, either express or implied.  See the License for the
17*4b0f5a03SAndrew Rist * specific language governing permissions and limitations
18*4b0f5a03SAndrew Rist * under the License.
19*4b0f5a03SAndrew Rist *
20*4b0f5a03SAndrew Rist *************************************************************/
21*4b0f5a03SAndrew Rist
22*4b0f5a03SAndrew Rist
23cdf0e10cSrcweirmodule
24cdf0e10cSrcweir"2DADF501-1F00-101C-A2E4-00001B4C5CE7"
25cdf0e10cSrcweir"33A1C840-1F00-101C-A2E4-00001B4C5CE7"
26cdf0e10cSrcweirStarDraw
27cdf0e10cSrcweir[
28cdf0e10cSrcweirHelpText( "StarDraw Application" )
29cdf0e10cSrcweirSlotIdFile( "sdslots.hrc" )
30cdf0e10cSrcweirModulePrefix( "Sd" )
31cdf0e10cSrcweir]
32cdf0e10cSrcweir{
33cdf0e10cSrcweir        include "sfx2/sfxitems.sdi"
34cdf0e10cSrcweir        include "sfx2/sfx.sdi"
35cdf0e10cSrcweir        include "svx/svxitems.sdi"
36cdf0e10cSrcweir        include "svx/xoitems.sdi"
37cdf0e10cSrcweir        include "svx/svx.sdi"
38cdf0e10cSrcweir
39cdf0e10cSrcweir		item UINT16 TbxImageItem;
40cdf0e10cSrcweir
41cdf0e10cSrcweir		enum FadeEffect
42cdf0e10cSrcweir		{
43cdf0e10cSrcweir			FADE_EFFECT_NONE ,
44cdf0e10cSrcweir			FADE_EFFECT_FADE_FROM_LEFT ,
45cdf0e10cSrcweir			FADE_EFFECT_FADE_FROM_TOP ,
46cdf0e10cSrcweir			FADE_EFFECT_FADE_FROM_RIGHT ,
47cdf0e10cSrcweir			FADE_EFFECT_FADE_FROM_BOTTOM ,
48cdf0e10cSrcweir			FADE_EFFECT_FADE_TO_CENTER ,
49cdf0e10cSrcweir			FADE_EFFECT_FADE_FROM_CENTER ,
50cdf0e10cSrcweir			FADE_EFFECT_MOVE_FROM_LEFT ,
51cdf0e10cSrcweir			FADE_EFFECT_MOVE_FROM_TOP ,
52cdf0e10cSrcweir			FADE_EFFECT_MOVE_FROM_RIGHT ,
53cdf0e10cSrcweir			FADE_EFFECT_MOVE_FROM_BOTTOM ,
54cdf0e10cSrcweir			FADE_EFFECT_ROLL_FROM_LEFT ,
55cdf0e10cSrcweir			FADE_EFFECT_ROLL_FROM_TOP ,
56cdf0e10cSrcweir			FADE_EFFECT_ROLL_FROM_RIGHT ,
57cdf0e10cSrcweir			FADE_EFFECT_ROLL_FROM_BOTTOM ,
58cdf0e10cSrcweir			FADE_EFFECT_VERTICAL_STRIPES ,
59cdf0e10cSrcweir			FADE_EFFECT_HORIZONTAL_STRIPES ,
60cdf0e10cSrcweir			FADE_EFFECT_OPEN_VERTICAL ,
61cdf0e10cSrcweir			FADE_EFFECT_CLOSE_VERTICAL ,
62cdf0e10cSrcweir			FADE_EFFECT_OPEN_HORIZONTAL ,
63cdf0e10cSrcweir			FADE_EFFECT_CLOSE_HORIZONTAL ,
64cdf0e10cSrcweir			FADE_EFFECT_CLEAR_AWAY ,
65cdf0e10cSrcweir			FADE_EFFECT_OVERLAY
66cdf0e10cSrcweir		}
67cdf0e10cSrcweir
68cdf0e10cSrcweir		enum FadeSpeed
69cdf0e10cSrcweir		{
70cdf0e10cSrcweir			FADE_SPEED_SLOW ,
71cdf0e10cSrcweir			FADE_SPEED_MEDIUM ,
72cdf0e10cSrcweir			FADE_SPEED_FAST
73cdf0e10cSrcweir		}
74cdf0e10cSrcweir
75cdf0e10cSrcweir		enum PresChange
76cdf0e10cSrcweir		{
77cdf0e10cSrcweir			PRESCHANGE_MANUAL,
78cdf0e10cSrcweir			PRESCHANGE_AUTO,
79cdf0e10cSrcweir			PRESCHANGE_SEMIAUTO
80cdf0e10cSrcweir		};
81cdf0e10cSrcweir
82cdf0e10cSrcweir			// Items
83cdf0e10cSrcweir		item UINT32 DiaTimeItem ;
84cdf0e10cSrcweir		item PresChange DiaAutoItem ;
85cdf0e10cSrcweir		item FadeEffect DiaEffectItem ;
86cdf0e10cSrcweir		item FadeSpeed DiaSpeedItem ;
87cdf0e10cSrcweir
88cdf0e10cSrcweir		include "sdraw.sdi"
89cdf0e10cSrcweir		include "app.sdi"
90cdf0e10cSrcweir		include "_drvwsh.sdi"
91cdf0e10cSrcweir		include "grviewsh.sdi"
92cdf0e10cSrcweir		include "outlnvsh.sdi"
93cdf0e10cSrcweir		include "drtxtob.sdi"
94cdf0e10cSrcweir		include "drbezob.sdi"
95cdf0e10cSrcweir		include "_docsh.sdi"
96cdf0e10cSrcweir		include "grdocsh.sdi"
97cdf0e10cSrcweir		include "drgrfob.sdi"
98cdf0e10cSrcweir		include "mediaob.sdi"
99cdf0e10cSrcweir		include "tables.sdi"
100cdf0e10cSrcweir}
101cdf0e10cSrcweir
102