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