xref: /AOO41X/main/sd/source/ui/dlg/present.src (revision e33492276f639ebe26fc2b5c7b0b687b13d47e4b)
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#include "helpids.h"
24#include <svx/svxids.hrc>
25#include "present.hrc"
26
27#define DISTANCE    23
28#define DISTANCE2   ((DISTANCE) + 81)
29
30ModalDialog DLG_START_PRESENTATION
31{
32    HelpID = CMD_SID_PRESENTATION ;
33    OutputSize = TRUE ;
34    SVLook = TRUE ;
35    Size = MAP_APPFONT ( 256, 205 ) ;
36    /* ### ACHTUNG: Neuer Text in Resource? Bildschirmpr�sentation : Bildschirmpr�sentation */
37    Text [ en-US ] = "Slide Show" ;
38    Moveable = TRUE ;
39
40    OKButton BTN_OK
41    {
42        Pos = MAP_APPFONT ( 200, 6 ) ;
43        Size = MAP_APPFONT ( 50, 14 ) ;
44        TabStop = TRUE ;
45        DefButton = TRUE ;
46    };
47    CancelButton BTN_CANCEL
48    {
49        Pos = MAP_APPFONT ( 200, 23 ) ;
50        Size = MAP_APPFONT ( 50, 14 ) ;
51        TabStop = TRUE ;
52    };
53    HelpButton BTN_HELP
54    {
55        Pos = MAP_APPFONT ( 200, 43 ) ;
56        Size = MAP_APPFONT ( 50, 14 ) ;
57        TabStop = TRUE ;
58    };
59
60    FixedLine GRP_RANGE
61    {
62        Pos = MAP_APPFONT ( 6 , 3 ) ;
63        Size = MAP_APPFONT ( 187, 8 ) ;
64        Text [ en-US ] = "Range" ;
65    };
66    RadioButton RBT_ALL
67    {
68        HelpID = "sd:RadioButton:DLG_START_PRESENTATION:RBT_ALL";
69        Pos = MAP_APPFONT ( 12 , 14 ) ;
70        Size = MAP_APPFONT ( 80 , 12 ) ;
71        Text [ en-US ] = "All ~slides" ;
72        TabStop = TRUE ;
73    };
74    RadioButton RBT_AT_DIA
75    {
76        HelpID = "sd:RadioButton:DLG_START_PRESENTATION:RBT_AT_DIA";
77        Pos = MAP_APPFONT ( 12 , 26 ) ;
78        Size = MAP_APPFONT ( 60 , 12 ) ;
79        Text [ en-US ] = "~From:" ;
80        TabStop = TRUE ;
81    };
82    ListBox LB_DIAS
83    {
84        HelpID = "sd:ListBox:DLG_START_PRESENTATION:LB_DIAS";
85        Border = TRUE ;
86        Pos = MAP_APPFONT ( 82, 24 ) ;
87        Size = MAP_APPFONT ( 111, 80 ) ;
88        TabStop = TRUE ;
89        DropDown = TRUE ;
90         //DDExtraWidth = TRUE;
91    };
92    RadioButton RBT_CUSTOMSHOW
93    {
94        HelpID = "sd:RadioButton:DLG_START_PRESENTATION:RBT_CUSTOMSHOW";
95        Pos = MAP_APPFONT ( 12 , 38 ) ;
96        Size = MAP_APPFONT ( 130 , 12 ) ;
97        TabStop = TRUE ;
98        Text [ en-US ] = "~Custom Slide Show" ;
99    };
100    ListBox LB_CUSTOMSHOW
101    {
102        HelpID = "sd:ListBox:DLG_START_PRESENTATION:LB_CUSTOMSHOW";
103        Border = TRUE ;
104        Pos = MAP_APPFONT ( 32, 53 ) ;
105        Size = MAP_APPFONT ( 161, 80 ) ;
106        TabStop = TRUE ;
107        DropDown = TRUE ;
108    };
109
110    FixedLine GRP_KIND
111    {
112        Pos = MAP_APPFONT ( 6, 73 ) ;
113        Size = MAP_APPFONT ( 90, 8 );
114        Text [ en-US ] = "Type" ;
115    };
116    RadioButton RBT_STANDARD
117    {
118        HelpID = "sd:RadioButton:DLG_START_PRESENTATION:RBT_STANDARD";
119        Pos = MAP_APPFONT ( 12, 84 ) ;
120        Size = MAP_APPFONT ( 81, 12 ) ;
121        Text [ en-US ] = "~Default" ;
122        TabStop = TRUE ;
123    };
124    RadioButton RBT_WINDOW
125    {
126        HelpID = "sd:RadioButton:DLG_START_PRESENTATION:RBT_WINDOW";
127        Pos = MAP_APPFONT ( 12 , 96 ) ;
128        Size = MAP_APPFONT ( 81 , 12 ) ;
129        Text [ en-US ] = "~Window" ;
130        TabStop = TRUE ;
131    };
132    RadioButton RBT_AUTO
133    {
134        HelpID = "sd:RadioButton:DLG_START_PRESENTATION:RBT_AUTO";
135        Pos = MAP_APPFONT ( 12 , 108 ) ;
136        Size = MAP_APPFONT ( 81 , 12 ) ;
137        Text [ en-US ] = "A~uto" ;
138        TabStop = TRUE ;
139    };
140/*
141    FixedText FT_PAUSE
142    {
143        Pos = MAP_APPFONT ( 32, 124 ) ;
144        Size = MAP_APPFONT ( 25, 12 ) ;
145        Text [ en-US ] = "Pause:" ;
146    };
147*/
148    TimeField TMF_PAUSE
149    {
150        HelpID = "sd:TimeField:DLG_START_PRESENTATION:TMF_PAUSE";
151        Pos = MAP_APPFONT ( 32, 120 ) ;
152        Size = MAP_APPFONT ( 50, 12 ) ;
153        Border = TRUE ;
154        TabStop = TRUE ;
155        Repeat = TRUE ;
156        Spin = TRUE ;
157        Duration = TRUE ;
158        StrictFormat = TRUE ;
159        Maximum = Time
160        {
161            Hour = 23 ;
162            Minute = 59 ;
163            Second = 59 ;
164        };
165        Last = Time
166        {
167            Hour = 23 ;
168            Minute = 59 ;
169            Second = 59 ;
170        };
171        QuickHelpText [ en-US ] = "Duration of pause" ;
172    };
173    CheckBox CBX_AUTOLOGO
174    {
175        HelpID = "sd:CheckBox:DLG_START_PRESENTATION:CBX_AUTOLOGO";
176        Pos = MAP_APPFONT ( 32 , 138 ) ;
177        Size = MAP_APPFONT ( 61 , 12 ) ;
178        TabStop = TRUE ;
179        Text [ en-US ] = "Show ~logo" ;
180    };
181
182    FixedLine GRP_OPTIONS
183    {
184        Pos = MAP_APPFONT ( 102 , 73 ) ;
185        Size = MAP_APPFONT ( 148, 8 );
186        Text [ en-US ] = "Options" ;
187    };
188    CheckBox CBX_MANUEL
189    {
190        HelpID = "sd:CheckBox:DLG_START_PRESENTATION:CBX_MANUEL";
191        Pos = MAP_APPFONT ( 108 , 84 ) ;
192        Size = MAP_APPFONT ( 139 , 12 ) ;
193        TabStop = TRUE ;
194        Text [ en-US ] = "Change slides ~manually" ;
195    };
196    CheckBox CBX_MOUSEPOINTER
197    {
198        HelpID = "sd:CheckBox:DLG_START_PRESENTATION:CBX_MOUSEPOINTER";
199        Pos = MAP_APPFONT ( 108, 96 ) ;
200        Size = MAP_APPFONT ( 139, 12 ) ;
201        Text [ en-US ] = "Mouse pointer ~visible" ;
202        TabStop = TRUE ;
203    };
204    CheckBox CBX_PEN
205    {
206        HelpID = "sd:CheckBox:DLG_START_PRESENTATION:CBX_PEN";
207        Pos = MAP_APPFONT ( 108, 108 ) ;
208        Size = MAP_APPFONT ( 139, 12 ) ;
209        Text [ en-US ] = "Mouse pointer as ~pen" ;
210        TabStop = TRUE ;
211    };
212    CheckBox CBX_NAVIGATOR
213    {
214        HelpID = "sd:CheckBox:DLG_START_PRESENTATION:CBX_NAVIGATOR";
215        Pos = MAP_APPFONT ( 108, 120 ) ;
216        Size = MAP_APPFONT ( 139, 12 ) ;
217        TabStop = TRUE ;
218        Text [ en-US ] = "~Navigator visible" ;
219    };
220    CheckBox CBX_ANIMATION_ALLOWED
221    {
222        HelpID = "sd:CheckBox:DLG_START_PRESENTATION:CBX_ANIMATION_ALLOWED";
223        Pos = MAP_APPFONT ( 108, 132 ) ;
224        Size = MAP_APPFONT ( 139, 12 ) ;
225        TabStop = TRUE ;
226        Text [ en-US ] = "~Animations allowed" ;
227    };
228    CheckBox CBX_CHANGE_PAGE
229    {
230        HelpID = "sd:CheckBox:DLG_START_PRESENTATION:CBX_CHANGE_PAGE";
231        Pos = MAP_APPFONT ( 108, 144 ) ;
232        Size = MAP_APPFONT ( 139, 12 ) ;
233        TabStop = TRUE ;
234        Text [ en-US ] = "Change slides by clic~king on background" ;
235    };
236    CheckBox CBX_ALWAYS_ON_TOP
237    {
238        HelpID = "sd:CheckBox:DLG_START_PRESENTATION:CBX_ALWAYS_ON_TOP";
239        Pos = MAP_APPFONT ( 108, 156 ) ;
240        Size = MAP_APPFONT ( 145, 12 ) ;
241        /* ### ACHTUNG: Neuer Text in Resource? Pr�sentation immer im ~Vordergrund : Pr�sentation immer im ~Vordergrund */
242        TabStop = TRUE ;
243        Text [ en-US ] = "Presentation always ~on top" ;
244    };
245
246    FixedLine GRP_MONITOR
247    {
248        Pos = MAP_APPFONT ( 6, 174 ) ;
249        Size = MAP_APPFONT ( 244, 8 );
250        Hide = TRUE;
251        Text [ en-US ] = "Multiple displays" ;
252    };
253
254    FixedText FT_MONITOR
255    {
256        OutputSize = TRUE;
257        Pos = MAP_APPFONT ( 12 , 185 + 2  ) ;
258        Size = MAP_APPFONT( 70, 8 );
259        Hide = TRUE;
260        Text [ en-US ] = "P~resentation display" ;
261    };
262
263    ListBox LB_MONITOR
264    {
265        Pos = MAP_APPFONT ( 82 , 185 ) ;
266        Size = MAP_APPFONT ( 111, 100 );
267        HelpId = HID_SD_SLIDESHOW_DISPLAY;
268        Hide = TRUE;
269        TabStop = TRUE ;
270        Border = TRUE ;
271        DropDown = TRUE ;
272        ClipChildren = TRUE;
273    };
274
275    String STR_PRIMARY_MONITOR
276    {
277        Text [ en-US ] = "Display %1 (primary)";
278    };
279
280    String STR_MONITOR
281    {
282        Text [ en-US ] = "Display %1";
283    };
284
285    String STR_ALL_MONITORS
286    {
287        Text [ en-US ] = "All displays";
288    };
289
290};
291