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
24#include "exportdialog.hrc"
25
26String DLG_EXPORT_TITLE
27{
28	Text [ en-US ] = " Options" ;
29};
30
31ModalDialog DLG_EXPORT
32{
33	HelpID = "svtools:ModalDialog:DLG_EXPORT" ;
34	OutputSize = TRUE ;
35	SVLook = TRUE ;
36	Size = MAP_APPFONT ( 178, 135 ) ;
37	Moveable = TRUE ;
38	Closeable = TRUE ;
39
40	FixedLine FL_EXPORT_SIZE
41	{
42		Hide = TRUE ;
43		Size = MAP_APPFONT ( 110, 8 ) ;
44		Text [ en-US ] = "Size" ;
45	};
46	FixedText FT_SIZEX
47	{
48		Hide = TRUE ;
49		Size = MAP_APPFONT ( 41, 10 ) ;
50		Text [ en-US ] = "Width:" ;
51	};
52	MetricField MF_SIZEX
53	{
54		HelpID = "svtools:MetricField:DLG_EXPORT:MF_SIZEX" ;
55		Hide = TRUE ;
56		Border = TRUE ;
57		Size = MAP_APPFONT ( 30, 12 ) ;
58		TabStop = TRUE ;
59		Repeat = TRUE ;
60		Spin = FALSE ;
61		StrictFormat = TRUE ;
62		DecimalDigits = 2 ;
63		Unit = FUNIT_NONE ;
64		Maximum = 99999 ;
65		Last = 255 ;
66	};
67	ListBox LB_SIZEX
68	{
69		HelpID = "svtools:ListBox:DLG_EXPORT:LB_SIZEX" ;
70		Hide = TRUE ;
71		Border = TRUE ;
72		Size = MAP_APPFONT ( 60, 80 ) ;
73		DropDown = TRUE ;
74		Sort = FALSE ;
75		StringList [ en-US ] =
76		{
77			< "inches" ;		> ;
78			< "cm" ; Default ;	> ;
79			< "mm" ;			> ;
80			< "points" ;		> ;
81			< "pixels" ;		> ;
82		};
83	};
84	FixedText FT_SIZEY
85	{
86		Hide = TRUE ;
87		Size = MAP_APPFONT ( 41, 10 ) ;
88		Text [ en-US ] = "Height:" ;
89	};
90	MetricField MF_SIZEY
91	{
92		HelpID = "svtools:MetricField:DLG_EXPORT:MF_SIZEY" ;
93		Hide = TRUE ;
94		Border = TRUE;
95		Size = MAP_APPFONT ( 30, 12 ) ;
96		TabStop = TRUE ;
97		Repeat = TRUE ;
98		Spin = FALSE ;
99		StrictFormat = TRUE ;
100		DecimalDigits = 2 ;
101		Unit = FUNIT_NONE ;
102		Maximum = 99999 ;
103		Last = 255 ;
104	};
105	ListBox LB_SIZEY
106	{
107		HelpID = "svtools:ListBox:DLG_EXPORT:LB_SIZEY" ;
108		Hide = TRUE ;
109		Border = TRUE ;
110		Size = MAP_APPFONT ( 60, 80 ) ;
111		DropDown = TRUE ;
112		Sort = FALSE ;
113		StringList [ en-US ] =
114		{
115			< "inches" ;		> ;
116			< "cm" ; Default ;	> ;
117			< "mm" ;			> ;
118			< "points" ;		> ;
119			< "pixels" ;		> ;
120		};
121	};
122	FixedText FT_RESOLUTION
123	{
124		Hide = TRUE ;
125		Size = MAP_APPFONT ( 41, 10 ) ;
126		Text [ en-US ] = "Resolution:" ;
127	};
128	NumericField NF_RESOLUTION
129	{
130		HelpID = "svtools:NumericField:DLG_EXPORT:NF_RESOLUTION" ;
131		Hide = TRUE ;
132		Border = TRUE ;
133		Size = MAP_APPFONT ( 30, 12 ) ;
134		TabStop = TRUE ;
135		Repeat = TRUE ;
136		Spin = FALSE ;
137		Maximum = 99999 ;
138		Last = 255 ;
139	};
140	ListBox LB_RESOLUTION
141	{
142		HelpID = "svtools:ListBox:DLG_EXPORT:LB_RESOLUTION" ;
143		Hide = TRUE ;
144		Border = TRUE ;
145		Size = MAP_APPFONT ( 60, 80 ) ;
146		DropDown = TRUE ;
147		Sort = FALSE ;
148		StringList [ en-US ] =
149		{
150			< "pixels/cm" ;				> ;
151			< "pixels/inch" ; Default ;	> ;
152			< "pixels/meter" ;			> ;
153		};
154	};
155	FixedLine FL_COLOR_DEPTH
156	{
157		Hide = TRUE ;
158		Size = MAP_APPFONT ( 110, 8 ) ;
159		Text [ en-US ] = "Color Depth" ;
160	};
161	ListBox LB_COLOR_DEPTH
162	{
163		HelpID = "svtools:ListBox:DLG_EXPORT:LB_COLOR_DEPTH" ;
164		Hide = TRUE ;
165		Border = TRUE ;
166		Size = MAP_APPFONT ( 60, 80 ) ;
167		DropDown = TRUE ;
168		Sort = FALSE ;
169	};
170	String STR_1BIT_THRESHOLD
171	{
172		Text [ en-US ] = "1 bit threshold" ;
173	};
174	String STR_1BIT_DITHERED
175	{
176		Text [ en-US ] = "1 bit dithered" ;
177	};
178	String STR_4BIT_GRAYSCALE
179	{
180		Text [ en-US ] = "4 bit grayscale" ;
181	};
182	String STR_4BIT_COLOR_PALETTE
183	{
184		Text [ en-US ] = "4 bit color" ;
185	};
186	String STR_8BIT_GRAYSCALE
187	{
188		Text [ en-US ] = "8 bit grayscale" ;
189	};
190	String STR_8BIT_COLOR_PALETTE
191	{
192		Text [ en-US ] = "8 bit color" ;
193	};
194	String STR_24BIT_TRUE_COLOR
195	{
196		Text [ en-US ] = "24 bit true color" ;
197	};
198	FixedLine FL_JPG_QUALITY
199	{
200		Hide = TRUE ;
201		Size = MAP_APPFONT ( 110, 8 ) ;
202		Text [ en-US ] = "Quality" ;
203	};
204	FixedLine FL_COMPRESSION
205	{
206		Hide = TRUE ;
207		Size = MAP_APPFONT ( 110, 8 ) ;
208		Text [ en-US ] = "Compression" ;
209	};
210	FixedLine FL_MODE
211	{
212		Hide = TRUE ;
213		Size = MAP_APPFONT ( 110, 8 ) ;
214		Text [ en-US ] = "Mode" ;
215	};
216	FixedLine FL_PBM_OPTIONS
217	{
218		Hide = TRUE ;
219		Size = MAP_APPFONT ( 110, 8 ) ;
220		Text [ en-US ] = "File Format" ;
221	};
222	ScrollBar SB_COMPRESSION
223	{
224		Hide = TRUE ;
225		Size = MAP_APPFONT ( 48, 10 ) ;
226		VScroll = FALSE ;
227		HScroll = TRUE ;
228		Drag = TRUE ;
229	};
230	NumericField NF_COMPRESSION
231	{
232		HelpID = "svtools:NumericField:DLG_EXPORT:NF_COMPRESSION" ;
233		Hide = TRUE ;
234		Border = TRUE ;
235		Size = MAP_APPFONT ( 30, 12 ) ;
236		TabStop = TRUE ;
237		Repeat = TRUE ;
238		Spin = FALSE ;
239		Maximum = 99999 ;
240		Last = 255 ;
241	};
242	FixedText FT_JPG_MIN
243	{
244		Hide = TRUE ;
245		Size = MAP_APPFONT ( 41, 10 ) ;
246		Text [ en-US ] = "1 is minimum Quality and smallest file size." ;
247	};
248	FixedText FT_JPG_MAX
249	{
250		Hide = TRUE ;
251		Size = MAP_APPFONT ( 41, 10 ) ;
252		Text [ en-US ] = "100 is maximum Quality and biggest file size." ;
253	};
254	FixedText FT_PNG_MIN
255	{
256		Hide = TRUE ;
257		Size = MAP_APPFONT ( 41, 10 ) ;
258		Text [ en-US ] = "0 is biggest file size and fastest loading." ;
259	};
260	FixedText FT_PNG_MAX
261	{
262		Hide = TRUE ;
263		Size = MAP_APPFONT ( 41, 10 ) ;
264		Text [ en-US ] = "9 is smallest file size and slowest loading." ;
265	};
266	CheckBox CB_JPG_PREVIEW
267	{
268		HelpID = "svtools:CheckBox:DLG_EXPORT:CB_JPG_PREVIEW" ;
269		Hide = TRUE ;
270		Size = MAP_APPFONT ( 60, 10 ) ;
271		Text [ en-US ] = "Preview" ;
272	};
273	CheckBox CB_INTERLACED
274	{
275		HelpID = "svtools:CheckBox:DLG_EXPORT:CB_INTERLACED" ;
276		Hide = TRUE ;
277		Size = MAP_APPFONT ( 60, 10 ) ;
278		Text [ en-US ] = "Interlaced" ;
279	};
280	CheckBox CB_RLE_ENCODING
281	{
282		HelpID = "svtools:CheckBox:DLG_EXPORT:CB_RLE_ENCODING" ;
283		Hide = TRUE ;
284		Size = MAP_APPFONT ( 60, 10 ) ;
285		Text [ en-US ] = "RLE encoding" ;
286	};
287	FixedLine FL_GIF_DRAWING_OBJECTS
288	{
289		Hide = TRUE ;
290		Size = MAP_APPFONT ( 110, 8 ) ;
291		Text [ en-US ] = "Drawing Objects" ;
292	};
293	CheckBox CB_SAVE_TRANSPARENCY
294	{
295		HelpID = "svtools:CheckBox:DLG_EXPORT:CB_SAVE_TRANSPARENCY" ;
296		Hide = TRUE ;
297		Size = MAP_APPFONT ( 60, 10 ) ;
298		Text [ en-US ] = "Save transparency" ;
299	};
300	RadioButton RB_BINARY
301	{
302		HelpID = "svtools:RadioButton:DLG_EXPORT:RB_BINARY" ;
303		Hide = TRUE ;
304		Size = MAP_APPFONT ( 105, 10 ) ;
305		Text [ en-US ] = "Binary" ;
306	};
307	RadioButton RB_TEXT
308	{
309		HelpID = "svtools:RadioButton:DLG_EXPORT:RB_TEXT" ;
310		Hide = TRUE ;
311		Size = MAP_APPFONT ( 105, 10 ) ;
312		Text [ en-US ] = "Text" ;
313	};
314	FixedLine FL_EPS_PREVIEW
315	{
316		Hide = TRUE ;
317		Size = MAP_APPFONT ( 110, 8 ) ;
318		Text [ en-US ] = "Preview" ;
319	};
320	CheckBox CB_EPS_PREVIEW_TIFF
321	{
322		HelpID = "svtools:CheckBox:DLG_EXPORT:CB_EPS_PREVIEW_TIFF" ;
323		Hide = TRUE ;
324		Size = MAP_APPFONT ( 60, 10 ) ;
325		Text [ en-US ] = "Image Preview (TIFF)" ;
326	};
327	CheckBox CB_EPS_PREVIEW_EPSI
328	{
329		HelpID = "svtools:CheckBox:DLG_EXPORT:CB_EPS_PREVIEW_EPSI" ;
330		Hide = TRUE ;
331		Size = MAP_APPFONT ( 60, 10 ) ;
332		Text [ en-US ] = "Interchange (EPSI)" ;
333	};
334	FixedLine FL_EPS_VERSION
335	{
336		Hide = TRUE ;
337		Size = MAP_APPFONT ( 41, 10 ) ;
338		Text [ en-US ] = "Version" ;
339	};
340	RadioButton RB_EPS_LEVEL1
341	{
342		HelpID = "svtools:RadioButton:DLG_EXPORT:RB_EPS_LEVEL1" ;
343		Hide = TRUE ;
344		Size = MAP_APPFONT ( 105, 10 ) ;
345		Text [ en-US ] = "Level 1" ;
346	};
347	RadioButton RB_EPS_LEVEL2
348	{
349		HelpID = "svtools:RadioButton:DLG_EXPORT:RB_EPS_LEVEL2" ;
350		Hide = TRUE ;
351		Size = MAP_APPFONT ( 105, 10 ) ;
352		Text [ en-US ] = "Level 2" ;
353	};
354	FixedLine FL_EPS_COLOR_FORMAT
355	{
356		Hide = TRUE ;
357		Size = MAP_APPFONT ( 41, 10 ) ;
358		Text [ en-US ] = "Color format" ;
359	};
360	RadioButton RB_EPS_COLOR_FORMAT1
361	{
362		HelpID = "svtools:RadioButton:DLG_EXPORT:RB_EPS_COLOR_FORMAT1" ;
363		Hide = TRUE ;
364		Size = MAP_APPFONT ( 105, 10 ) ;
365		Text [ en-US ] = "Color" ;
366	};
367	RadioButton RB_EPS_COLOR_FORMAT2
368	{
369		HelpID = "svtools:RadioButton:DLG_EXPORT:RB_EPS_COLOR_FORMAT2" ;
370		Hide = TRUE ;
371		Size = MAP_APPFONT ( 105, 10 ) ;
372		Text [ en-US ] = "Grayscale" ;
373	};
374	RadioButton RB_EPS_COMPRESSION_LZW
375	{
376		HelpID = "svtools:RadioButton:DLG_EXPORT:RB_EPS_COMPRESSION_LZW" ;
377		Hide = TRUE ;
378		Size = MAP_APPFONT ( 105, 10 ) ;
379		Text [ en-US ] = "LZW encoding" ;
380	};
381	RadioButton RB_EPS_COMPRESSION_NONE
382	{
383		HelpID = "svtools:RadioButton:DLG_EXPORT:RB_EPS_COMPRESSION_NONE" ;
384		Hide = TRUE ;
385		Size = MAP_APPFONT ( 105, 10 ) ;
386		Text [ en-US ] = "None" ;
387	};
388	FixedLine FL_ESTIMATED_SIZE
389	{
390		Hide = TRUE ;
391		Size = MAP_APPFONT ( 41, 10 ) ;
392	};
393	FixedText FT_ESTIMATED_SIZE
394	{
395		Hide = TRUE ;
396		Size = MAP_APPFONT ( 41, 10 ) ;
397	};
398	String STR_ESTIMATED_SIZE_PIX_1
399	{
400		Text [ en-US ] = "The picture needs about %1 KB of memory." ;
401	};
402	String STR_ESTIMATED_SIZE_PIX_2
403	{
404		Text [ en-US ] = "The picture needs about %1 KB of memory,\n the file size is %2 KB." ;
405	};
406	String STR_ESTIMATED_SIZE_VEC
407	{
408		Text [ en-US ] = "The file size is %1 KB." ;
409	};
410	FixedLine FL_BUTTONS
411	{
412		Hide = TRUE ;
413		Size = MAP_APPFONT ( 41, 10 ) ;
414	};
415	FixedBitmap FB_JPG_PREVIEW
416	{
417		Hide = TRUE ;
418		OutputSize = TRUE ;
419		Scale = TRUE ;
420		Border = TRUE ;
421	};
422	ScrollBar SB_ZOOM
423	{
424		Hide = TRUE ;
425		Size = MAP_APPFONT ( 48, 10 ) ;
426		VScroll = FALSE ;
427		HScroll = TRUE ;
428		Drag = TRUE ;
429		MinPos = 5 ;
430		MaxPos = 100 ;
431		ThumbPos = 50 ;
432	};
433	NumericField NF_ZOOM
434	{
435		HelpID = "svtools:NumericField:DLG_EXPORT:NF_ZOOM" ;
436		Hide = TRUE ;
437		Border = TRUE ;
438		Size = MAP_APPFONT ( 30, 12 ) ;
439		TabStop = TRUE ;
440		Repeat = TRUE ;
441		Spin = FALSE ;
442		Maximum = 3000 ;
443		Last = 255 ;
444	};
445	ScrollBar SB_JPG_PREVIEW_HORZ
446	{
447		Hide = TRUE ;
448		Size = MAP_APPFONT ( 48, 10 ) ;
449		VScroll = FALSE ;
450		HScroll = TRUE ;
451		Drag = TRUE ;
452		MinPos = 0 ;
453		MaxPos = 100 ;
454		ThumbPos = 50 ;
455	};
456	ScrollBar SB_JPG_PREVIEW_VERT
457	{
458		Hide = TRUE ;
459		Size = MAP_APPFONT ( 48, 10 ) ;
460		VScroll = TRUE ;
461		HScroll = FALSE ;
462		Drag = TRUE ;
463		MinPos = 0 ;
464		MaxPos = 100 ;
465		ThumbPos = 50 ;
466	};
467	OKButton BTN_OK
468	{
469		Hide = TRUE ;
470		Size = MAP_APPFONT ( 50, 14 ) ;
471		TabStop = TRUE ;
472		DefButton = TRUE ;
473	};
474	CancelButton BTN_CANCEL
475	{
476		Hide = TRUE ;
477		Size = MAP_APPFONT ( 50, 14 ) ;
478		TabStop = TRUE ;
479	};
480	HelpButton BTN_HELP
481	{
482		Hide = TRUE ;
483		Size = MAP_APPFONT ( 50, 14 ) ;
484		TabStop = TRUE ;
485	};
486};
487
488// ********************************************************************** EOF
489