1*45c6a252SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*45c6a252SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*45c6a252SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*45c6a252SAndrew Rist * distributed with this work for additional information
6*45c6a252SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*45c6a252SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*45c6a252SAndrew Rist * "License"); you may not use this file except in compliance
9*45c6a252SAndrew Rist * with the License.  You may obtain a copy of the License at
10*45c6a252SAndrew Rist *
11*45c6a252SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*45c6a252SAndrew Rist *
13*45c6a252SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*45c6a252SAndrew Rist * software distributed under the License is distributed on an
15*45c6a252SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*45c6a252SAndrew Rist * KIND, either express or implied.  See the License for the
17*45c6a252SAndrew Rist * specific language governing permissions and limitations
18*45c6a252SAndrew Rist * under the License.
19*45c6a252SAndrew Rist *
20*45c6a252SAndrew Rist *************************************************************/
21*45c6a252SAndrew Rist
22*45c6a252SAndrew Rist
23cdf0e10cSrcweir#include <svtools/svtools.hrc>
24cdf0e10cSrcweir
25cdf0e10cSrcweir#define BTN_OK					1
26cdf0e10cSrcweir#define BTN_CANCEL				1
27cdf0e10cSrcweir#define BTN_HELP				1
28cdf0e10cSrcweir
29cdf0e10cSrcweir#define FL_EXPORT_SIZE			1
30cdf0e10cSrcweir#define FL_COLOR_DEPTH			2
31cdf0e10cSrcweir#define FL_JPG_QUALITY			3
32cdf0e10cSrcweir#define FL_COMPRESSION			4
33cdf0e10cSrcweir#define FL_MODE					5
34cdf0e10cSrcweir#define FL_GIF_DRAWING_OBJECTS	6
35cdf0e10cSrcweir#define FL_PBM_OPTIONS			7
36cdf0e10cSrcweir#define FL_EPS_PREVIEW			8
37cdf0e10cSrcweir#define FL_EPS_VERSION			9
38cdf0e10cSrcweir#define FL_EPS_COLOR_FORMAT		10
39cdf0e10cSrcweir#define FL_ESTIMATED_SIZE		11
40cdf0e10cSrcweir#define FL_BUTTONS				12
41cdf0e10cSrcweir
42cdf0e10cSrcweir#define FT_SIZEX				1
43cdf0e10cSrcweir#define FT_SIZEY				2
44cdf0e10cSrcweir#define FT_RESOLUTION			3
45cdf0e10cSrcweir#define FT_JPG_MIN				4
46cdf0e10cSrcweir#define FT_JPG_MAX				5
47cdf0e10cSrcweir#define FT_PNG_MIN				6
48cdf0e10cSrcweir#define FT_PNG_MAX				7
49cdf0e10cSrcweir#define FT_ESTIMATED_SIZE		8
50cdf0e10cSrcweir
51cdf0e10cSrcweir#define NF_RESOLUTION			1
52cdf0e10cSrcweir#define NF_COMPRESSION			2
53cdf0e10cSrcweir#define NF_ZOOM					3
54cdf0e10cSrcweir
55cdf0e10cSrcweir#define MF_SIZEX				1
56cdf0e10cSrcweir#define MF_SIZEY				2
57cdf0e10cSrcweir
58cdf0e10cSrcweir#define LB_SIZEX				1
59cdf0e10cSrcweir#define LB_SIZEY				2
60cdf0e10cSrcweir#define LB_RESOLUTION			3
61cdf0e10cSrcweir#define LB_COLOR_DEPTH			4
62cdf0e10cSrcweir
63cdf0e10cSrcweir#define RB_BINARY				1
64cdf0e10cSrcweir#define RB_TEXT					2
65cdf0e10cSrcweir#define RB_EPS_LEVEL1			3
66cdf0e10cSrcweir#define RB_EPS_LEVEL2			4
67cdf0e10cSrcweir#define RB_EPS_COLOR_FORMAT1	5
68cdf0e10cSrcweir#define RB_EPS_COLOR_FORMAT2	6
69cdf0e10cSrcweir#define RB_EPS_COMPRESSION_LZW	7
70cdf0e10cSrcweir#define RB_EPS_COMPRESSION_NONE	8
71cdf0e10cSrcweir
72cdf0e10cSrcweir#define CB_JPG_PREVIEW			1
73cdf0e10cSrcweir#define CB_INTERLACED			2
74cdf0e10cSrcweir#define CB_RLE_ENCODING			3
75cdf0e10cSrcweir#define CB_SAVE_TRANSPARENCY	4
76cdf0e10cSrcweir#define CB_EPS_PREVIEW_TIFF		5
77cdf0e10cSrcweir#define CB_EPS_PREVIEW_EPSI		6
78cdf0e10cSrcweir
79cdf0e10cSrcweir#define FB_JPG_PREVIEW			1
80cdf0e10cSrcweir
81cdf0e10cSrcweir#define SB_COMPRESSION			1
82cdf0e10cSrcweir#define SB_JPG_PREVIEW_HORZ		2
83cdf0e10cSrcweir#define SB_JPG_PREVIEW_VERT		3
84cdf0e10cSrcweir#define SB_ZOOM					4
85cdf0e10cSrcweir
86cdf0e10cSrcweir#define STR_1BIT_THRESHOLD		1
87cdf0e10cSrcweir#define STR_1BIT_DITHERED		2
88cdf0e10cSrcweir#define STR_4BIT_GRAYSCALE		3
89cdf0e10cSrcweir#define STR_4BIT_COLOR_PALETTE	4
90cdf0e10cSrcweir#define STR_8BIT_GRAYSCALE		5
91cdf0e10cSrcweir#define STR_8BIT_COLOR_PALETTE	6
92cdf0e10cSrcweir#define STR_24BIT_TRUE_COLOR	7
93cdf0e10cSrcweir#define STR_ESTIMATED_SIZE_PIX_1 8
94cdf0e10cSrcweir#define STR_ESTIMATED_SIZE_PIX_2 9
95cdf0e10cSrcweir#define STR_ESTIMATED_SIZE_VEC   10
96