aboutsummaryrefslogtreecommitdiff
path: root/frontend/pisa_structs.h
blob: 29b5a617a0f967c87840255b25854b7087dec920 (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
/* 
   SANE EPSON backend
   Copyright (C) 2001, 2005, 2008  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_STRUCTS_H
#define ___PISA_STRUCTS_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifdef HAVE_GTK_GTK_H
#include <gtk/gtk.h>
#ifndef HAVE_GTK_2
#include <gdk_imlib.h>
#endif
#endif

// scanner
/*--------------------------------------------------------------*/
typedef struct _gamma_struct
{
  unsigned char gamma_r [ 256 ];
  unsigned char gamma_g [ 256 ];
  unsigned char gamma_b [ 256 ];
} gamma_struct;


/*--------------------------------------------------------------*/
typedef struct _imagetype
{
  long		id;
  char		pixeltype;
  char		bitdepth;
  char		de_screening;
  char		ae_option;
  char		dropout;
  char		monoopt;
  char		halftone;
} imagetype;

// ui
/*--------------------------------------------------------------*/
template <class Type>
struct _point
{
  Type	x, y;

  _point ( ) { x = y = 0; }
  _point ( Type u, Type v = 0 ) { x = u, y = v; }
  _point ( const _point & pt ) { x = pt.x; y = pt.y; }
  _point & operator= ( const _point & pt )
  {
    if ( & pt != this )
      {
	x = pt.x;
	y = pt.y;
      }
    return ( * this );
  }

  // == operator
  friend int operator== ( const _point & pt1, const _point & pt2 )
  {
    return ( pt1.x == pt2.x && pt1.y == pt2.y );
  }

  // - operator
  friend _point operator- ( const _point & pt1, const _point & pt2 )
  {
    return ( _point ( pt1.x - pt2.x, pt1.y - pt2.y ) );
  }

  // + operator
  friend _point operator+ ( const _point & pt1, const _point & pt2 )
  {
    return ( _point ( pt1.x + pt2.x, pt1.y + pt2.y ) );
  }
};

typedef _point <double>	_pointD;
typedef _point <long>	_pointL;

/*--------------------------------------------------------------*/
template <class Type>
struct _rect
{
  Type	top, bottom, right, left;

  _rect ( ) { top = bottom = right = left = Type ( 0 ); }
  _rect ( Type _top, Type _bottom, Type _right, Type _left ):
    top ( _top ), bottom ( _bottom ), right ( _right ), left ( _left ) { }
  _rect ( const _rect & x )
  {
    top = x.top, bottom = x.bottom;
    right = x.right, left = x.left;
  }
  _rect & operator= ( const _rect & x )
  {
    if ( & x != this )
      {
	top = x.top, bottom = x.bottom;
	right = x.right, left = x.left;
      }
    return ( * this );
  }

  // == operator
  friend int operator== ( const _rect & rc1, const _rect & rc2 )
  {
    return ( rc1.top == rc2.top && rc1.bottom == rc2.bottom &&
	     rc1.right == rc2.right && rc1.left == rc2.left );
  }

  // - operator
  friend _rect operator- ( const _rect & rc1, const _rect & rc2 )
  {
    return ( _rect ( rc1.top - rc2.top, rc1.bottom - rc2.bottom,
		     rc1.right - rc2.right, rc1.left - rc2.left ) );
  }

  // + operator
  friend _rect operator+ ( const _rect & rc1, const _rect & rc2 )
  {
    return ( _rect ( rc1.top + rc2.top, rc1.bottom + rc2.bottom,
		     rc1.right + rc2.right, rc1.left + rc2.left ) );
  }

  // empty?
  friend int is_rect_empty ( const _rect & rc )
  {
    return ( rc.top == 0 && rc.bottom == 0 && rc.right == 0 && rc.left == 0 );
  }
};

typedef _rect <_point <long> >	_rectPL;
typedef _rect <double>		_rectD;
typedef _rect <long>		_rectL;


#ifdef HAVE_GTK_GTK_H
/*--------------------------------------------------------------*/
typedef struct _toolbar_items
{
  GtkWidget		* widget;
  char			** xpm;
  GtkSignalFunc		* func;
} toolbar_items;

/*--------------------------------------------------------------*/
typedef struct _menu_items
{
  long			id;
  GtkWidget		* widget;
  const char		* name;
  GtkSignalFunc		* func;
} menu_items;


/*------------------------------------------------------------*/
typedef struct _scale_items
{
  long			id;
  GtkWidget		* widget;
  GtkAdjustment		* adjust;
  GtkSignalFunc		* func;
  float			val;
  float			min;
  float			max;
  float			step;
  float			page;
} scale_items;
#endif

typedef struct
{
  unsigned char		* m_img;
  long			m_width;
  long			m_height;
  long			m_rowbytes;
} _pisa_image_info;

#include <cstddef>

class pisa_image_info : public _pisa_image_info
{
public:
  size_t m_bits_per_pixel;

  pisa_image_info () : m_bits_per_pixel (24)
    {
      m_img = 0;
      m_width = 0;
      m_height = 0;
      m_rowbytes = 0;
    };
};

#endif // ___PISA_STRUCTS_H