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
|
/* xsane -- a graphical (X11, gtk) scanner-oriented SANE frontend
xsane-preferences.h
Oliver Rauch <Oliver.Rauch@Wolfsburg.DE>
Copyright (C) 1998-2000 Oliver Rauch
This file is part of the XSANE package.
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. */
/* ---------------------------------------------------------------------------------------------------------------------- */
#ifndef xsane_preferences_h
#define xsane_preferences_h
/* ---------------------------------------------------------------------------------------------------------------------- */
#include <sane/sane.h>
#include <gtk/gtk.h>
/* ---------------------------------------------------------------------------------------------------------------------- */
typedef struct
{
char *name; /* user defined printer name */
char *command; /* printercommand */
char *copy_number_option; /* option to define number of copies */
int resolution; /* printer resolution for copy mode */
double width; /* printer width of printable area in mm */
double height; /* printer height of printable area in mm */
double leftoffset; /* printer left offset in mm */
double bottomoffset;/* printer bottom offset in mm */
double gamma; /* printer gamma */
double gamma_red; /* printer gamma red */
double gamma_green; /* printer gamma green */
double gamma_blue; /* printer gamma blue */
}
Preferences_printer_t;
typedef struct
{
char *filename; /* default filename */
mode_t image_umask; /* image umask (permisson mask) */
mode_t directory_umask; /* directory umask (permisson mask) */
char *fax_project; /* fax project */
char *fax_command; /* faxcommand */
char *fax_receiver_option; /* fax receiver option */
char *fax_postscript_option; /* fax postscript option */
char *fax_normal_option; /* fax normal mode option */
char *fax_fine_option; /* fax fine mode option */
char *fax_viewer; /* fax viewer */
double fax_width; /* width of fax paper in mm */
double fax_height; /* height of fax paper in mm */
double fax_leftoffset; /* left offset of fax paper in mm */
double fax_bottomoffset; /* bottom offset of fax paper in mm */
char *doc_viewer; /* doc viewer for helpfiles */
double jpeg_quality; /* quality when saving image as jpeg */
double png_compression; /* compression when saving image as pnm */
int tiff_compression_nr; /* compression type nr when saving multi bit image as tiff */
int tiff_compression_1_nr; /* compression type nr when saving one bit image as tiff */
int overwrite_warning; /* warn if file exists */
int increase_filename_counter; /* automatically increase counter */
int skip_existing_numbers; /* automatically increase counter */
int tooltips_enabled; /* should tooltips be disabled? */
int show_histogram; /* show histogram ? */
int show_standard_options; /* show standard options ? */
int show_advanced_options; /* show advanced options ? */
int show_resolution_list; /* show resolution list instead of slider ? */
double length_unit; /* 1.0==mm, 10.0==cm, 25.4==inches, etc. */
int main_window_fixed; /* fixed (1) or scrolled (0) main window */
int preserve_preview; /* save/restore preview image(s)? */
int preview_own_cmap; /* install colormap for preview */
double preview_gamma; /* gamma value for previews */
double preview_gamma_red; /* red gamma value for previews */
double preview_gamma_green; /* green gamma value for previews */
double preview_gamma_blue; /* blue gamma value for previews */
double xsane_gamma;
double xsane_gamma_red;
double xsane_gamma_green;
double xsane_gamma_blue;
double xsane_brightness;
double xsane_brightness_red;
double xsane_brightness_green;
double xsane_brightness_blue;
double xsane_contrast;
double xsane_contrast_red;
double xsane_contrast_green;
double xsane_contrast_blue;
int xsane_rgb_default;
int xsane_negative;
GtkUpdateType gtk_update_policy;
int psrotate; /* rotate by 90 degree in postscript mode - landscape */
int printernr; /* number of printers */
int printerdefinitions;
Preferences_printer_t *printer[10];
}
Preferences;
extern Preferences preferences;
extern void preferences_save (int fd);
extern void preferences_restore (int fd);
#endif /* preferences_h */
|