xref: /aoo41x/main/sd/source/ui/dlg/copydlg.src (revision e3349227)
1*66220049SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*66220049SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*66220049SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*66220049SAndrew Rist * distributed with this work for additional information
6*66220049SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*66220049SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*66220049SAndrew Rist * "License"); you may not use this file except in compliance
9*66220049SAndrew Rist * with the License.  You may obtain a copy of the License at
10*66220049SAndrew Rist *
11*66220049SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*66220049SAndrew Rist *
13*66220049SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*66220049SAndrew Rist * software distributed under the License is distributed on an
15*66220049SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*66220049SAndrew Rist * KIND, either express or implied.  See the License for the
17*66220049SAndrew Rist * specific language governing permissions and limitations
18*66220049SAndrew Rist * under the License.
19*66220049SAndrew Rist *
20*66220049SAndrew Rist *************************************************************/
21*66220049SAndrew Rist
22*66220049SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "app.hrc"
25cdf0e10cSrcweir#include "res_bmp.hrc"
26cdf0e10cSrcweir#include "copydlg.hrc"
27cdf0e10cSrcweir#include "helpids.h"
28cdf0e10cSrcweir
29cdf0e10cSrcweirModalDialog DLG_COPY
30cdf0e10cSrcweir{
31cdf0e10cSrcweir	HelpID = CMD_SID_COPYOBJECTS ;
32cdf0e10cSrcweir	OutputSize = TRUE ;
33cdf0e10cSrcweir	SVLook = TRUE ;
34cdf0e10cSrcweir    Size = MAP_APPFONT ( 204 , 177 ) ;
35cdf0e10cSrcweir	Text [ en-US ] = "Duplicate" ;
36cdf0e10cSrcweir	Moveable = TRUE ;
37cdf0e10cSrcweir	OKButton BTN_OK
38cdf0e10cSrcweir	{
39cdf0e10cSrcweir		Pos = MAP_APPFONT ( 148 , 6  ) ;
40cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
41cdf0e10cSrcweir		TabStop = TRUE ;
42cdf0e10cSrcweir		DefButton = TRUE ;
43cdf0e10cSrcweir	};
44cdf0e10cSrcweir	CancelButton BTN_CANCEL
45cdf0e10cSrcweir	{
46cdf0e10cSrcweir		Pos = MAP_APPFONT ( 148 , 23  ) ;
47cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
48cdf0e10cSrcweir		TabStop = TRUE ;
49cdf0e10cSrcweir	};
50cdf0e10cSrcweir	HelpButton BTN_HELP
51cdf0e10cSrcweir	{
52cdf0e10cSrcweir		Pos = MAP_APPFONT ( 148 , 43  ) ;
53cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
54cdf0e10cSrcweir		TabStop = TRUE ;
55cdf0e10cSrcweir	};
56cdf0e10cSrcweir	FixedText FT_COPIES
57cdf0e10cSrcweir	{
58cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 9 ) ;
59cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 8 ) ;
60cdf0e10cSrcweir		Text [ en-US ] = "Number of ~copies" ;
61cdf0e10cSrcweir	};
62cdf0e10cSrcweir	NumericField NUM_FLD_COPIES
63cdf0e10cSrcweir	{
64cdf0e10cSrcweir	    HelpID = "sd:NumericField:DLG_COPY:NUM_FLD_COPIES";
65cdf0e10cSrcweir		Border = TRUE ;
66cdf0e10cSrcweir        Pos = MAP_APPFONT ( 76 , 7 ) ;
67cdf0e10cSrcweir        Size = MAP_APPFONT ( 35 , 12 ) ;
68cdf0e10cSrcweir		TabStop = TRUE ;
69cdf0e10cSrcweir		Repeat = TRUE ;
70cdf0e10cSrcweir		Spin = TRUE ;
71cdf0e10cSrcweir		Minimum = 1 ;
72cdf0e10cSrcweir		Maximum = 999 ;
73cdf0e10cSrcweir		StrictFormat = TRUE ;
74cdf0e10cSrcweir		First = 1 ;
75cdf0e10cSrcweir		Last = 999 ;
76cdf0e10cSrcweir		SpinSize = 1 ;
77cdf0e10cSrcweir	};
78cdf0e10cSrcweir	ImageButton BTN_SET_VIEWDATA
79cdf0e10cSrcweir	{
80cdf0e10cSrcweir	    HelpID = "sd:ImageButton:DLG_COPY:BTN_SET_VIEWDATA";
81cdf0e10cSrcweir        Pos = MAP_APPFONT ( 122 , 6 ) ;
82cdf0e10cSrcweir		Size = MAP_APPFONT ( 14 , 14 ) ;
83cdf0e10cSrcweir		ButtonImage = Image
84cdf0e10cSrcweir		{
85cdf0e10cSrcweir			ImageBitmap = Bitmap { File = "pipette.bmp" ; };
86cdf0e10cSrcweir			MaskColor = IMAGE_MASK_STDCOLOR;
87cdf0e10cSrcweir		};
88cdf0e10cSrcweir		TabStop = TRUE ;
89cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Values from Selection" ;
90cdf0e10cSrcweir	};
91cdf0e10cSrcweir	PushButton BTN_SET_DEFAULT
92cdf0e10cSrcweir	{
93cdf0e10cSrcweir	    HelpID = "sd:PushButton:DLG_COPY:BTN_SET_DEFAULT";
94cdf0e10cSrcweir		Pos = MAP_APPFONT ( 148 , 63  ) ;
95cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
96cdf0e10cSrcweir		TabStop = TRUE ;
97cdf0e10cSrcweir		Text [ en-US ] = "~Default";
98cdf0e10cSrcweir	};
99cdf0e10cSrcweir	MetricField MTR_FLD_ANGLE
100cdf0e10cSrcweir	{
101cdf0e10cSrcweir	    HelpID = "sd:MetricField:DLG_COPY:MTR_FLD_ANGLE";
102cdf0e10cSrcweir		Border = TRUE ;
103cdf0e10cSrcweir        Pos = MAP_APPFONT ( 76 , 69 ) ;
104cdf0e10cSrcweir        Size = MAP_APPFONT ( 45 , 12 ) ;
105cdf0e10cSrcweir		TabStop = TRUE ;
106cdf0e10cSrcweir		Repeat = TRUE ;
107cdf0e10cSrcweir		Spin = TRUE ;
108cdf0e10cSrcweir		Maximum = 359 ;
109cdf0e10cSrcweir		StrictFormat = TRUE ;
110cdf0e10cSrcweir		Unit = FUNIT_CUSTOM ;
111cdf0e10cSrcweir		Last = 359 ;
112cdf0e10cSrcweir		SpinSize = 5 ;
113cdf0e10cSrcweir		CustomUnitText [ en-US ] = " degrees" ;
114cdf0e10cSrcweir	};
115cdf0e10cSrcweir	FixedText FT_ANGLE
116cdf0e10cSrcweir	{
117cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 71 ) ;
118cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 8 ) ;
119cdf0e10cSrcweir		Text [ en-US ] = "~Angle" ;
120cdf0e10cSrcweir	};
121cdf0e10cSrcweir	FixedText FT_MOVE_X
122cdf0e10cSrcweir	{
123cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 39 ) ;
124cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 8 ) ;
125cdf0e10cSrcweir		Text [ en-US ] = "~X axis" ;
126cdf0e10cSrcweir	};
127cdf0e10cSrcweir	MetricField MTR_FLD_MOVE_X
128cdf0e10cSrcweir	{
129cdf0e10cSrcweir	    HelpID = "sd:MetricField:DLG_COPY:MTR_FLD_MOVE_X";
130cdf0e10cSrcweir		Border = TRUE ;
131cdf0e10cSrcweir        Pos = MAP_APPFONT ( 76 , 37 ) ;
132cdf0e10cSrcweir        Size = MAP_APPFONT ( 45 , 12 ) ;
133cdf0e10cSrcweir		TabStop = TRUE ;
134cdf0e10cSrcweir		Repeat = TRUE ;
135cdf0e10cSrcweir		Spin = TRUE ;
136cdf0e10cSrcweir		Minimum = -120000 ;
137cdf0e10cSrcweir		Maximum = 120000 ;
138cdf0e10cSrcweir		StrictFormat = TRUE ;
139cdf0e10cSrcweir		DecimalDigits = 2 ;
140cdf0e10cSrcweir		Unit = FUNIT_MM ;
141cdf0e10cSrcweir		First = -120000 ;
142cdf0e10cSrcweir		Last = 120000 ;
143cdf0e10cSrcweir		SpinSize = 100 ;
144cdf0e10cSrcweir	};
145cdf0e10cSrcweir	MetricField MTR_FLD_MOVE_Y
146cdf0e10cSrcweir	{
147cdf0e10cSrcweir	    HelpID = "sd:MetricField:DLG_COPY:MTR_FLD_MOVE_Y";
148cdf0e10cSrcweir		Border = TRUE ;
149cdf0e10cSrcweir        Pos = MAP_APPFONT ( 76 , 53 ) ;
150cdf0e10cSrcweir        Size = MAP_APPFONT ( 45 , 12 ) ;
151cdf0e10cSrcweir		TabStop = TRUE ;
152cdf0e10cSrcweir		Repeat = TRUE ;
153cdf0e10cSrcweir		Spin = TRUE ;
154cdf0e10cSrcweir		Minimum = -120000 ;
155cdf0e10cSrcweir		Maximum = 120000 ;
156cdf0e10cSrcweir		StrictFormat = TRUE ;
157cdf0e10cSrcweir		DecimalDigits = 2 ;
158cdf0e10cSrcweir		Unit = FUNIT_MM ;
159cdf0e10cSrcweir		First = -120000 ;
160cdf0e10cSrcweir		Last = 120000 ;
161cdf0e10cSrcweir		SpinSize = 100 ;
162cdf0e10cSrcweir	};
163cdf0e10cSrcweir	MetricField MTR_FLD_WIDTH
164cdf0e10cSrcweir	{
165cdf0e10cSrcweir	    HelpID = "sd:MetricField:DLG_COPY:MTR_FLD_WIDTH";
166cdf0e10cSrcweir		Border = TRUE ;
167cdf0e10cSrcweir        Pos = MAP_APPFONT ( 76 , 98 ) ;
168cdf0e10cSrcweir        Size = MAP_APPFONT ( 45 , 12 ) ;
169cdf0e10cSrcweir		TabStop = TRUE ;
170cdf0e10cSrcweir		Repeat = TRUE ;
171cdf0e10cSrcweir		Spin = TRUE ;
172cdf0e10cSrcweir		Minimum = -120000 ;
173cdf0e10cSrcweir		Maximum = 120000 ;
174cdf0e10cSrcweir		StrictFormat = TRUE ;
175cdf0e10cSrcweir		DecimalDigits = 2 ;
176cdf0e10cSrcweir		Unit = FUNIT_MM ;
177cdf0e10cSrcweir		First = -120000 ;
178cdf0e10cSrcweir		Last = 120000 ;
179cdf0e10cSrcweir		SpinSize = 100 ;
180cdf0e10cSrcweir	};
181cdf0e10cSrcweir	MetricField MTR_FLD_HEIGHT
182cdf0e10cSrcweir	{
183cdf0e10cSrcweir	    HelpID = "sd:MetricField:DLG_COPY:MTR_FLD_HEIGHT";
184cdf0e10cSrcweir		Border = TRUE ;
185cdf0e10cSrcweir        Pos = MAP_APPFONT ( 76 , 114 ) ;
186cdf0e10cSrcweir        Size = MAP_APPFONT ( 45 , 12 ) ;
187cdf0e10cSrcweir		TabStop = TRUE ;
188cdf0e10cSrcweir		Repeat = TRUE ;
189cdf0e10cSrcweir		Spin = TRUE ;
190cdf0e10cSrcweir		Minimum = -120000 ;
191cdf0e10cSrcweir		Maximum = 120000 ;
192cdf0e10cSrcweir		StrictFormat = TRUE ;
193cdf0e10cSrcweir		DecimalDigits = 2 ;
194cdf0e10cSrcweir		Unit = FUNIT_MM ;
195cdf0e10cSrcweir		First = -120000 ;
196cdf0e10cSrcweir		Last = 120000 ;
197cdf0e10cSrcweir		SpinSize = 100 ;
198cdf0e10cSrcweir	};
199cdf0e10cSrcweir	FixedText FT_MOVE_Y
200cdf0e10cSrcweir	{
201cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 55 ) ;
202cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 8 ) ;
203cdf0e10cSrcweir		Text [ en-US ] = "~Y axis" ;
204cdf0e10cSrcweir	};
205cdf0e10cSrcweir	FixedText FT_WIDTH
206cdf0e10cSrcweir	{
207cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 100 ) ;
208cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 8 ) ;
209cdf0e10cSrcweir		Text [ en-US ] = "~Width" ;
210cdf0e10cSrcweir	};
211cdf0e10cSrcweir	FixedText FT_HEIGHT
212cdf0e10cSrcweir	{
213cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 116 ) ;
214cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 8 ) ;
215cdf0e10cSrcweir		Text [ en-US ] = "~Height" ;
216cdf0e10cSrcweir	};
217cdf0e10cSrcweir	FixedLine GRP_MOVEMENT
218cdf0e10cSrcweir	{
219cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 26 ) ;
220cdf0e10cSrcweir		Size = MAP_APPFONT ( 136 , 8 ) ;
221cdf0e10cSrcweir		Text [ en-US ] = "Placement" ;
222cdf0e10cSrcweir	};
223cdf0e10cSrcweir	FixedLine GRP_ENLARGEMENT
224cdf0e10cSrcweir	{
225cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 87 ) ;
226cdf0e10cSrcweir		Size = MAP_APPFONT ( 136 , 8 ) ;
227cdf0e10cSrcweir		Text [ en-US ] = "Enlargement" ;
228cdf0e10cSrcweir	};
229cdf0e10cSrcweir	FixedLine GRP_COLOR
230cdf0e10cSrcweir	{
231cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 132 ) ;
232cdf0e10cSrcweir		Size = MAP_APPFONT ( 136 , 8 ) ;
233cdf0e10cSrcweir		Text [ en-US ] = "Colors" ;
234cdf0e10cSrcweir	};
235cdf0e10cSrcweir	ListBox LB_START_COLOR
236cdf0e10cSrcweir	{
237cdf0e10cSrcweir	    HelpID = "sd:ListBox:DLG_COPY:LB_START_COLOR";
238cdf0e10cSrcweir		Border = TRUE ;
239cdf0e10cSrcweir        Pos = MAP_APPFONT ( 76 , 143 ) ;
240cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 90 ) ;
241cdf0e10cSrcweir		TabStop = TRUE ;
242cdf0e10cSrcweir		DropDown = TRUE ;
243cdf0e10cSrcweir		DDExtraWidth = TRUE ;
244cdf0e10cSrcweir	};
245cdf0e10cSrcweir	FixedText FT_START_COLOR
246cdf0e10cSrcweir	{
247cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 145 ) ;
248cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 8 ) ;
249cdf0e10cSrcweir		Text [ en-US ] = "~Start" ;
250cdf0e10cSrcweir	};
251cdf0e10cSrcweir	ListBox LB_END_COLOR
252cdf0e10cSrcweir	{
253cdf0e10cSrcweir	    HelpID = "sd:ListBox:DLG_COPY:LB_END_COLOR";
254cdf0e10cSrcweir		Border = TRUE ;
255cdf0e10cSrcweir        Pos = MAP_APPFONT ( 76 , 159 ) ;
256cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 90 ) ;
257cdf0e10cSrcweir		TabStop = TRUE ;
258cdf0e10cSrcweir		DropDown = TRUE ;
259cdf0e10cSrcweir		DDExtraWidth = TRUE ;
260cdf0e10cSrcweir	};
261cdf0e10cSrcweir	FixedText FT_END_COLOR
262cdf0e10cSrcweir	{
263cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 161 ) ;
264cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 8 ) ;
265cdf0e10cSrcweir		Text [ en-US ] = "~End" ;
266cdf0e10cSrcweir	};
267cdf0e10cSrcweir};
268cdf0e10cSrcweir
269cdf0e10cSrcweir
270cdf0e10cSrcweir
271cdf0e10cSrcweir
272cdf0e10cSrcweir
273cdf0e10cSrcweir
274cdf0e10cSrcweir
275cdf0e10cSrcweir
276cdf0e10cSrcweir
277cdf0e10cSrcweir
278cdf0e10cSrcweir
279cdf0e10cSrcweir
280cdf0e10cSrcweir
281cdf0e10cSrcweir
282cdf0e10cSrcweir
283cdf0e10cSrcweir
284cdf0e10cSrcweir
285cdf0e10cSrcweir
286cdf0e10cSrcweir
287cdf0e10cSrcweir
288cdf0e10cSrcweir
289cdf0e10cSrcweir
290cdf0e10cSrcweir
291cdf0e10cSrcweir
292cdf0e10cSrcweir
293cdf0e10cSrcweir
294cdf0e10cSrcweir
295cdf0e10cSrcweir
296cdf0e10cSrcweir
297cdf0e10cSrcweir
298cdf0e10cSrcweir
299cdf0e10cSrcweir
300cdf0e10cSrcweir
301cdf0e10cSrcweir
302cdf0e10cSrcweir
303cdf0e10cSrcweir
304cdf0e10cSrcweir
305cdf0e10cSrcweir
306cdf0e10cSrcweir
307cdf0e10cSrcweir
308cdf0e10cSrcweir
309cdf0e10cSrcweir
310cdf0e10cSrcweir
311cdf0e10cSrcweir
312cdf0e10cSrcweir
313cdf0e10cSrcweir
314cdf0e10cSrcweir
315cdf0e10cSrcweir
316cdf0e10cSrcweir
317