xref: /aoo42x/main/sd/source/ui/dlg/sdpreslt.src (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#include "app.hrc"
29#include "sdpreslt.hrc"
30#include "sdcommands.h"
31
32ModalDialog DLG_PRESLT
33{
34	HelpID = CMD_SID_PRESENTATION_LAYOUT ;
35	OutputSize = TRUE ;
36	SVLook = TRUE ;
37	Size = MAP_APPFONT ( 212 , 185 ) ;
38	Moveable = TRUE ;
39	FixedText FT_LAYOUT
40	{
41		Pos = MAP_APPFONT ( 6 , 3 ) ;
42		Size = MAP_APPFONT ( 110 , 10 ) ;
43		/* ### ACHTUNG: Neuer Text in Resource? W�hlen Sie eine ~Seitenvorlage : W�hlen Sie eine ~Seitenvorlage */
44		Text [ en-US ] = "~Select a slide design" ;
45	};
46	Control VS_LAYOUT
47	{
48		Border = TRUE ;
49		Hide = TRUE ;
50		Pos = MAP_APPFONT ( 6 , 14 ) ;
51		Size = MAP_APPFONT ( 144 , 141 ) ;
52		TabStop = TRUE ;
53	};
54	OKButton BTN_OK
55	{
56		Pos = MAP_APPFONT ( 156 , 6 ) ;
57		Size = MAP_APPFONT ( 50 , 14 ) ;
58		TabStop = TRUE ;
59		DefButton = TRUE ;
60	};
61	CancelButton BTN_CANCEL
62	{
63		Pos = MAP_APPFONT ( 156 , 23 ) ;
64		Size = MAP_APPFONT ( 50 , 14 ) ;
65		TabStop = TRUE ;
66	};
67	CheckBox CBX_MASTER_PAGE
68	{
69	    HelpID = "sd:CheckBox:DLG_PRESLT:CBX_MASTER_PAGE";
70		Pos = MAP_APPFONT ( 6 , 158 ) ;
71		Size = MAP_APPFONT ( 120 , 12 ) ;
72		TabStop = TRUE ;
73		Text [ en-US ] = "~Exchange background page" ;
74	};
75	CheckBox CBX_CHECK_MASTERS
76	{
77	    HelpID = "sd:CheckBox:DLG_PRESLT:CBX_CHECK_MASTERS";
78		Pos = MAP_APPFONT ( 6 , 170 ) ;
79		Size = MAP_APPFONT ( 140 , 12 ) ;
80		TabStop = TRUE ;
81		Text [ en-US ] = "~Delete unused backgrounds";
82	};
83	PushButton BTN_LOAD
84	{
85	    HelpID = "sd:PushButton:DLG_PRESLT:BTN_LOAD";
86		Pos = MAP_APPFONT ( 156 , 155 ) ;
87		Size = MAP_APPFONT ( 50 , 14 ) ;
88		TabStop = TRUE ;
89		Text [ en-US ] = "~Load..." ;
90	};
91	HelpButton BTN_HELP
92	{
93		Pos = MAP_APPFONT ( 156 , 53 ) ;
94		Size = MAP_APPFONT ( 50 , 14 ) ;
95		TabStop = TRUE ;
96	};
97	Text [ en-US ] = "Slide Design" ;
98};
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130