-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMAPaintTypes.h
359 lines (326 loc) · 8.36 KB
/
MAPaintTypes.h
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
#ifndef MAPAINTTYPES_H
#define MAPAINTTYPES_H
#if defined(__GNUC__)
#ident "University of Edinburgh $Id$"
#else
static char _MAPaintTypes_h[] = "University of Edinburgh $Id$";
#endif
/*!
* \file MAPaintTypes.h
* \author Richard Baldock
* \date April 2009
* \version $Id$
* \par
* Address:
* MRC Human Genetics Unit,
* MRC Institute of Genetics and Molecular Medicine,
* University of Edinburgh,
* Western General Hospital,
* Edinburgh, EH4 2XU, UK.
* \par
* Copyright (C), [2012],
* The University Court of the University of Edinburgh,
* Old College, Edinburgh, UK.
*
* 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., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
* \ingroup MAPaint
* \brief
*/
typedef enum {
GREYS_DOMAIN = 0,
DOMAIN_1 = 1,
DOMAIN_2 = 2,
DOMAIN_3 = 3,
DOMAIN_4 = 4,
DOMAIN_5 = 5,
DOMAIN_6 = 6,
DOMAIN_7 = 7,
DOMAIN_8 = 8,
DOMAIN_9 = 9,
DOMAIN_10 = 10,
DOMAIN_11 = 11,
DOMAIN_12 = 12,
DOMAIN_13 = 13,
DOMAIN_14 = 14,
DOMAIN_15 = 15,
DOMAIN_16 = 16,
DOMAIN_17 = 17,
DOMAIN_18 = 18,
DOMAIN_19 = 19,
DOMAIN_20 = 20,
DOMAIN_21 = 21,
DOMAIN_22 = 22,
DOMAIN_23 = 23,
DOMAIN_24 = 24,
DOMAIN_25 = 25,
DOMAIN_26 = 26,
DOMAIN_27 = 27,
DOMAIN_28 = 28,
DOMAIN_29 = 29,
DOMAIN_30 = 30,
DOMAIN_31 = 31,
DOMAIN_32 = 32,
DOMAIN_INVALID = 33,
MASK_DOMAIN = 100
} DomainSelection;
typedef enum {
PRIORITY_1 = 1,
PRIORITY_2 = 2,
PRIORITY_3 = 3,
PRIORITY_4 = 4,
PRIORITY_5 = 5,
PRIORITY_6 = 6,
PRIORITY_7 = 7,
PRIORITY_8 = 8,
PRIORITY_9 = 9,
PRIORITY_10 = 10,
PRIORITY_11 = 11,
PRIORITY_12 = 12,
PRIORITY_13 = 13,
PRIORITY_14 = 14,
PRIORITY_15 = 15,
PRIORITY_16 = 16,
PRIORITY_17 = 17,
PRIORITY_18 = 18,
PRIORITY_19 = 19,
PRIORITY_20 = 20,
PRIORITY_21 = 21,
PRIORITY_22 = 22,
PRIORITY_23 = 23,
PRIORITY_24 = 24,
PRIORITY_25 = 25,
PRIORITY_26 = 26,
PRIORITY_27 = 27,
PRIORITY_28 = 28,
PRIORITY_29 = 29,
PRIORITY_30 = 30,
PRIORITY_31 = 31,
PRIORITY_32 = 32
} PrioritySelection;
typedef enum {
MAPAINT_SHOW_SOLID_SECTION = 1,
MAPAINT_HIGHLIGHT_SECTION = 1<<1,
MAPAINT_SHOW_FIXED_POINT = 1<<2,
MAPAINT_SHOW_FIXED_LINE = 1<<3,
MAPAINT_SHOW_UP_VECTOR = 1<<4,
MAPAINT_SHOW_VIEW_DIRECTION = 1<<5,
MAPAINT_FIXED_LINE_SET = 1<<6,
MAPAINT_POLY_VIEWFB_MODE = 1<<7,
MAPAINT_SOLID_VIEWFB_MODE = 1<<8,
MAPAINT_MASK_VIEWFB_MODE = 1<<9,
MAPAINT_TEMPLATE_VIEWFB_MODE = 1<<10,
MAPAINT_SWITCH_VIEWFB_MODE = 1<<11,
MAPAINT_IMAGE_VIEWFB_MODE = 1<<12,
MAPAINT_CONTROL_MAXIMUM = 1<<13
} ThreeDViewControlMask;
typedef enum {
MAPAINT_NO_PAINT_ACTION,
MAPAINT_DRAW_2D,
MAPAINT_PAINT_BALL_2D,
MAPAINT_GEOMETRY_OBJ_2D,
MAPAINT_THRESHOLD_2D,
MAPAINT_FILL_2D,
MAPAINT_MORPHOLOGICAL_2D,
MAPAINT_AFFINE_2D,
MAPAINT_IMAGE_TRACKING_2D,
MAPAINT_EDGE_TRACKING_2D,
MAPAINT_TRACKING_2D,
MAPAINT_TABLET_2D,
MAPAINT_SURGERY_SECTION_CUT,
MAPAINT_SURGERY_LASER_CUT
} PaintActionType;
typedef enum {
MAPAINT_GEOMETRY_OBJ_FCIRCLE,
MAPAINT_GEOMETRY_OBJ_FSQUARE,
MAPAINT_GEOMETRY_OBJ_VCIRCLE,
MAPAINT_GEOMETRY_OBJ_VSQUARE,
MAPAINT_GEOMETRY_OBJ_FSPHERE,
MAPAINT_GEOMETRY_OBJ_FCUBE,
MAPAINT_GEOMETRY_OBJ_VSPHERE,
MAPAINT_GEOMETRY_OBJ_VCUBE
} PaintGeometryObjectType;
typedef enum {
MAPAINT_DOMAIN_REVIEW_OBJ,
MAPAINT_DOMAIN_MAPAINT_OBJ,
MAPAINT_DOMAIN_READ
} PaintDomainSourceType;
typedef enum {
MATRACK_PMSNAKE_SEARCH_METHOD
} MATrackDomainSearchMethod;
typedef enum {
MATRACK_CORRELATION_COST_TYPE,
MATRACK_EDGE_COST_TYPE
} MATrackDomainCostType;
typedef enum {
MAPAINT_8BIT_ONLY_MODE,
MAPAINT_8_24BIT_MODE,
MAPAINT_24BIT_ONLY_MODE
} MAPaintVisualMode;
typedef struct {
int spacing;
int range;
} PMSnakeSearchParams, MATrackDomainSearchParams;
typedef struct {
double nu_dist;
} PMSnakeLCParams;
typedef struct {
double nu_alpha;
double nu_kappa;
} PMSnakeNLCParams;
typedef struct {
PMSnakeNLCParams *snakeParams;
double nu_direction;
} PMEdgeSnakeNLCParams;
typedef struct {
int size;
PMSnakeLCParams *LCParams;
PMSnakeNLCParams *NLCParams;
} CorrelationCostParams, MATrackDomainCostParams;
typedef struct {
double width;
double gradient;
PMSnakeLCParams *LCParams;
PMEdgeSnakeNLCParams *NLCParams;
} EdgeCostParams;
typedef struct {
double sintheta;
double costheta;
int index;
int x;
int y;
int x_off;
int y_off;
} MATrackMatchPointStruct;
typedef struct {
Colormap cmap;
unsigned long pixels[256];
int npixels;
int gmin;
int gmax;
int invert;
float gamma;
int num_overlays;
int num_solid_overlays;
int low_thresh;
int high_thresh;
unsigned int ovly_planes;
unsigned int ovly_cols[33], ovly_incr[6];
unsigned char ovly_red[33], ovly_green[33], ovly_blue[33];
float ovly_contrast[33];
} PaintCmapStruct;
typedef struct {
Widget dialog, controls, canvas, slider, text;
Widget control_buttons;
unsigned int controlFlag;
XImage *ximage;
int tablet_initialised;
WlzDVertex3 fixed_2;
WlzFVertex2 ref1, ref2;
WlzDVertex3 norm2, norm3;
WlzThreeDViewStruct *wlzViewStr;
WlzObject *curr_domain[33];
WlzObject *prev_domain[33];
WlzObject *prev_view_obj;
double prev_dist;
WlzObject *view_object;
WlzObject *painted_object;
WlzObject *masked_object;
GLuint display_list;
int noPaintingFlag;
int viewLockedFlag;
String titleStr;
} ThreeDViewStruct;
typedef struct _ViewListEntry {
Widget dialog;
ThreeDViewStruct *view_struct;
struct _ViewListEntry *next;
} ViewListEntry;
typedef void (*PaintActionInitProc)(ThreeDViewStruct *view_struct);
typedef void (*PaintActionQuitProc)(ThreeDViewStruct *view_struct);
/* global variables */
typedef struct _PaintGlobals{
Widget topl;
XtAppContext app_con;
char *app_name;
int sectViewFlg;
Boolean emageFlg;
Boolean VMWareFlg;
/* file_menu globals */
char *file;
WlzObject *obj;
WlzObject *orig_obj;
WlzObject *fb_obj;
WlzObjectType origObjType;
WlzEffFormat origObjExtType;
int num_lines, num_cols, num_planes;
unsigned long autosave_time;
String autosave_file;
String autosave_dir;
XtIntervalId autosavetimeoutID;
GLuint ref_display_list;
WlzDVertex3 bbox_vtx, bbox_size;
String base_theiler_dir;
String theiler_stage;
String logfile;
FILE *logfileFp;
String resourceFile;
AlcDLPList *fileList;
/* main_work_area globals */
Widget canvas;
Display *dpy;
Window win;
MAPaintVisualMode visualMode;
int toplDepth;
Visual *toplVisual;
Visual *warpVisual;
/* main_button_bar globals */
/* domain menu globals */
GC gc_greys, gc_reds, gc_blues;
WlzObject *mask_domain;
PrioritySelection current_priority;
DomainSelection current_domain;
unsigned int current_col;
int auto_increment;
int propogate;
int propogate_sel;
int domain_changed_since_saved[33];
int priority_to_domain_lut[33];
String domain_name[33];
String domain_filename[33];
GLuint domain_display_list[33];
int OpenGLDisplayDomainStep;
/* view_menu globals */
GC gc_set;
WlzAffineTransform *preTrans;
/* options menu globals */
PaintCmapStruct *cmapstruct;
Colormap cmap;
unsigned char colormap[3][256];
Pixmap stipple;
int paint_action_quit_flag;
PaintActionType currentPaintAction;
XtCallbackProc currentPaintActionCbFunc;
PaintActionInitProc currentPaintActionInitFunc;
PaintActionQuitProc currentPaintActionQuitFunc;
WlzObject *review_domain_obj;
int rapidMapFlg;
int expressMapFlg;
String bibfileListFile;
String origDir;
} PaintGlobals;
/* do not add anything after this line */
#endif /* MAPAINTTYPES_H */