aboutsummaryrefslogtreecommitdiff
path: root/frontend/pisa_enums.h
blob: ab780e5c541c3b1971b9b57990cbf589819fa2fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/* pisa_enums.h
   Copyright (C) 2001, 2004, 2008, 2009 SEIKO EPSON CORPORATION

   Date         Author      Reason
   06/01/2001   N.Sasaki    New

   This file is part of the `iscan' program.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

   As a special exception, the copyright holders give permission
   to link the code of this program with the esmod library and
   distribute linked combinations including the two.  You must obey
   the GNU General Public License in all respects for all of the
   code used other then esmod.
*/

#ifndef ___PISA_ENUMS_H
#define ___PISA_ENUMS_H

/*! Bit flags indicating what scan sources are supported by the device.
 */
enum
{
  PISA_OP_NONE          = 0,
  PISA_OP_FLATBED       = 1 << 0,
  PISA_OP_ADF           = 1 << 1,
  PISA_OP_ADFDPLX       = 1 << 2,
  PISA_OP_TPU           = 1 << 3,
};

enum
{
  PISA_FT_POSI,
  PISA_FT_NEGA,
  PISA_FT_REFLECT,
};

enum
{
  PISA_DFD_OFF,
  PISA_DFD_STD,
  PISA_DFD_THIN,
};

// destination
typedef enum
{
  PISA_DE_FILE,
  PISA_DE_PRINTER,
  PISA_DE_GIMP
} pisa_dest_type;

// pixel type
typedef enum
{
  PISA_PT_BW,
  PISA_PT_GRAY,
  PISA_PT_RGB
} pisa_pixel_type;

// bit depth
typedef enum
{
  PISA_BD_1	= 1 << 0,
  PISA_BD_8	= 1 << 1,
  PISA_BD_12	= 1 << 2,
  PISA_BD_14	= 1 << 3,
  PISA_BD_16	= 1 << 4
} pisa_bitdepth_type;

// de-screening
typedef enum
{
  PISA_DESCREEN_ON,
  PISA_DESCREEN_OFF
} pisa_descreening_type;

// auto exposure option
typedef enum
{
  PISA_AE_PHOTO,
  PISA_AE_DOC,
  PISA_AE_GRAYED
} pisa_aeoption_type;

// dropout
typedef enum
{
  PISA_DO_NONE,
  PISA_DO_RED,
  PISA_DO_GREEN,
  PISA_DO_BLUE
} pisa_dropout_type;

// mono option
typedef enum
{
  PISA_MO_NONE,
  PISA_MO_TET,
  PISA_MO_AAS
} pisa_monooption_type;

// halftone
typedef enum
{
  PISA_HT_NONE,
  PISA_HT_TONEA,
  PISA_HT_TONEB,
  PISA_HT_TONEC,
  PISA_HT_DITHERA,
  PISA_HT_DITHERB,
  PISA_HT_DITHERC,
  PISA_HT_DITHERD,
  PISA_HT_USERA,
  PISA_HT_USERB
} pisa_halftone_type;

// unit
typedef enum
{
  PISA_UNIT_INCHES,
  PISA_UNIT_PIXELS,
  PISA_UNIT_CM
} pisa_unit_type;

// cursor
typedef enum
{
  PISA_CS_ARROW,
  PISA_CS_HAND,
  PISA_CS_CROSS,
  PISA_CS_TOP,
  PISA_CS_BOTTOM,
  PISA_CS_LEFT,
  PISA_CS_RIGHT,
  PISA_CS_LEFTTOP,
  PISA_CS_LEFTBOTTOM,
  PISA_CS_RIGHTTOP,
  PISA_CS_RIGHTBOTTOM
} pisa_cursor_type;

// cursor gamma table
typedef enum {
  PISA_CS_GM_X,
  PISA_CS_GM_FLEUR,
  PISA_CS_GM_TCROSS,
} pisa_cursor_gm_type;

// resize
typedef enum
{
  PISA_RS_NN=1,	// nearest neighbor
  PISA_RS_BL,	// bi linear
  PISA_RS_BC,	// bi cubic
} pisa_rs_type;

// sharp
typedef enum
{
  PISA_SH_UMASK = 1,	// unsharp mask
  PISA_SH_GAUSS,	// gauss
  PISA_SH_UMASKY,	// unsahrp mask y
} pisa_sh_type;

// window 
typedef enum
{
  ID_WINDOW_MAIN,
  ID_WINDOW_PREV,
  ID_WINDOW_CONFIG,
} pisa_window_id;

// main window
enum widget_main_window
{
  WG_MAIN_TOP,
  WG_MAIN_IMG_MENU,
  WG_MAIN_RES_MENU,
  WG_MAIN_WIDTH,
  WG_MAIN_HEIGHT,
  WG_MAIN_FOCUS_0,
  WG_MAIN_FOCUS_25,
  WG_MAIN_DFD,
  WG_MAIN_DFD_BOX,
  WG_MAIN_DFD_STD,
  WG_MAIN_DFD_THIN,
  WG_MAIN_NUM
};

// gamma correction
#define GAMMA_RGB	0x00
#define GAMMA_RED	0x01
#define GAMMA_GRN	0x02
#define GAMMA_BLU	0x03

enum widget_gamma_window
{
  WG_GAMMA_TAB_RGB,
  WG_GAMMA_TAB_RED,
  WG_GAMMA_TAB_GRN,
  WG_GAMMA_TAB_BLU,
  WG_GAMMA_BOX_RGB,
  WG_GAMMA_BOX_RED,
  WG_GAMMA_BOX_GRN,
  WG_GAMMA_BOX_BLU,
  WG_GAMMA_RESET,
  WG_GAMMA_NOTE,
  WG_GAMMA_NUM
};

// configuration
enum widget_configuration
{
  WG_CONFIG_TOP,
  WG_CONFIG_PATH,
  WG_CONFIG_NUM
};

// file select
enum widget_file_select
{
  WG_FS_TOP,
  WG_FS_NUM
};

// print window
enum widget_print_window
{
  WG_PRINT_TOP,
  WG_PRINT_NUM
};

#endif // ___PISA_ENUMS_H