forked from markjessell/functionNoddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblklayop.c
537 lines (530 loc) · 12.1 KB
/
blklayop.c
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
/*
This file was generated by XVT-Design 4.5, a product of:
XVT Software Inc.
4900 Pearl East Circle
Boulder, CO USA 80301
303-443-4223, fax 303-443-0969
Generated on Tue Sep 02 10:35:00 1997
*/
/* TAG BEGIN SPCL:Pre_Header */
/* TAG END SPCL:Pre_Header */
#include "xvt.h"
#include "xvtcm.h"
#include "nodInc.h"
/*
Information about the window
*/
#define WIN_RES_ID LAYER_DISPLAY_WINDOW
#define WIN_FLAGS 0x810L
#define WIN_CLASS ""
#define WIN_BORDER W_DOC
/* TAG BEGIN SPCL:Obj_Decl */
/* TAG END SPCL:Obj_Decl */
/*
Handler for window LAYER_DISPLAY_WINDOW ("Block Options")
*/
long XVT_CALLCONV1
#if XVT_CC_PROTO
LAYER_DISPLAY_WINDOW_eh XVT_CALLCONV2 (WINDOW xdWindow, EVENT *xdEvent)
#else
LAYER_DISPLAY_WINDOW_eh XVT_CALLCONV2 (xdWindow, xdEvent)
WINDOW xdWindow;
EVENT *xdEvent;
#endif
{
short xdControlId = xdEvent->v.ctl.id;
/* TAG BEGIN SPCL:Var_Decl */
static short mouseDown = FALSE;
/* TAG END SPCL:Var_Decl */
switch (xdEvent->type) {
case E_CREATE:
/*
Window has been created; first event sent to newly-created
window.
*/
{
/* TAG BEGIN EVNT:Create */
loadBlockImageOptions (xdWindow);
#if (XVTWS != MACWS)
{
SLIST winList;
SLIST_ELT element;
WINDOW win;
WIN_TYPE winType;
/* disable all other windows */
winType = xvt_vobj_get_type(xdWindow);
if (winType == W_DBL)
{
if (winList = xvt_scr_list_wins ())
{
for (element = xvt_slist_get_first(winList); element != NULL;
element = xvt_slist_get_next (winList, element))
{
xvt_slist_get (winList, element, (long *) &win);
if (win != xdWindow) /* disable all windows but this one */
xvt_vobj_set_enabled (win, FALSE);
}
xvt_slist_destroy (winList);
}
}
}
#endif
/* TAG END EVNT:Create */
}
break;
case E_DESTROY:
/*
Window has been closed; last event sent to window.
*/
xdRemoveHelpAssoc( xdWindow );
{
/* TAG BEGIN EVNT:Destroy */
#if (XVTWS != MACWS)
{
SLIST winList;
SLIST_ELT element;
WINDOW win;
WIN_TYPE winType;
/* disable all other windows */
winType = xvt_vobj_get_type(xdWindow);
if (winType == W_DBL)
{
if (winList = xvt_scr_list_wins ())
{
for (element = xvt_slist_get_first(winList); element != NULL;
element = xvt_slist_get_next (winList, element))
{
xvt_slist_get (winList, element, (long *) &win);
if (win != xdWindow) /* disable all windows but this one */
xvt_vobj_set_enabled (win, TRUE);
}
xvt_slist_destroy (winList);
}
}
}
#endif
/* TAG END EVNT:Destroy */
}
break;
case E_FOCUS:
{
/* TAG BEGIN EVNT:Focus */
/*
Window has lost or gained focus.
*/
if (xdEvent->v.active) {
/*
Window has gained focus
*/
} else {
/*
Window has lost focus
*/
#if (XVTWS == MACWS)
#else
/*
if (W_DBL == xvt_vobj_get_type(xdWindow))
xvt_vobj_destroy (xdWindow);
*/
#endif
}
/* TAG END EVNT:Focus */
}
break;
case E_SIZE:
/*
Size of window has been set or changed; sent when window is
created or subsequently resized by user or via xvt_vobj_move.
*/
{
/* TAG BEGIN EVNT:Size */
/* TAG END EVNT:Size */
}
break;
case E_UPDATE:
/*
Window requires updating.
*/
{
/* TAG BEGIN EVNT:Update */
BLOCK_DIAGRAM_DATA *diagram = (BLOCK_DIAGRAM_DATA *) xvt_vobj_get_data(xdWindow);
xvt_dwin_clear(xdWindow, (COLOR)xvt_vobj_get_attr(xdWindow, ATTR_BACK_COLOR));
if (diagram)
drawBlockImageColorScale (xdWindow, diagram->lut, NULL, FALSE);
/* TAG END EVNT:Update */
}
break;
case E_CLOSE:
/*
Request to close window; user operated "close" menu item on
window system menu, or operated "close" control on window
frame. Not sent if Close on File menu is issued. Window not
closed unless xvt_vobj_destroy is called.
*/
{
/* TAG BEGIN EVNT:Close */
xvt_vobj_destroy(xdWindow);
/* TAG END EVNT:Close */
}
break;
case E_CHAR:
/*
Character typed.
*/
{
/* TAG BEGIN EVNT:Char */
/* *********************************************** */
/* make a RETURN key activate the window OK Button */
if (xdEvent->v.chr.ch == '\r')
{
xdEvent->type = E_CONTROL;
xdEvent->v.ctl.id = LAYER_DISPLAY_OK;
xvt_win_dispatch_event (xdWindow, xdEvent);
}
/* TAG END EVNT:Char */
}
break;
case E_MOUSE_UP:
/*
Mouse was released
*/
{
/* TAG BEGIN EVNT:Mouse_Up */
setBlockImageColorIndex (xdWindow, &(xdEvent->v.mouse.where), NULL, NULL);
xvt_win_release_pointer ();
mouseDown = FALSE;
/* TAG END EVNT:Mouse_Up */
}
break;
case E_MOUSE_DOWN:
/*
Mouse was pressed
*/
{
/* TAG BEGIN EVNT:Mouse_Down */
mouseDown = TRUE;
xvt_win_trap_pointer(xdWindow);
setBlockImageColorIndex (xdWindow, &(xdEvent->v.mouse.where), NULL, NULL);
/* TAG END EVNT:Mouse_Down */
}
break;
case E_MOUSE_DBL:
/*
Mouse was double clicked
*/
{
/* TAG BEGIN EVNT:Mouse_Dbl */
/* TAG END EVNT:Mouse_Dbl */
}
break;
case E_MOUSE_MOVE:
/*
Mouse was moved
*/
{
/* TAG BEGIN EVNT:Mouse_Move */
if (mouseDown)
setBlockImageColorIndex (xdWindow, &(xdEvent->v.mouse.where), NULL, NULL);
/* TAG END EVNT:Mouse_Move */
}
break;
case E_HSCROLL:
{
/* TAG BEGIN EVNT:Hscroll */
/*
Horizontal scrollbar on frame was operated
*/
switch (xdEvent->v.scroll.what) {
case SC_LINE_UP:
break;
case SC_LINE_DOWN:
break;
case SC_PAGE_UP:
break;
case SC_PAGE_DOWN:
break;
case SC_THUMB:
break;
case SC_THUMBTRACK:
break;
default:
break;
}
/* TAG END EVNT:Hscroll */
}
break;
case E_VSCROLL:
{
/* TAG BEGIN EVNT:Vscroll */
/*
Vertical scrollbar on frame was operated
*/
switch (xdEvent->v.scroll.what) {
case SC_LINE_UP:
break;
case SC_LINE_DOWN:
break;
case SC_PAGE_UP:
break;
case SC_PAGE_DOWN:
break;
case SC_THUMB:
break;
case SC_THUMBTRACK:
break;
default:
break;
}
/* TAG END EVNT:Vscroll */
}
break;
case E_COMMAND:
/*
User issued command on window menu bar (menu bar at top of
screen for Mac/CH).
*/
{
/* TAG BEGIN EVNT:Command */
/*
No menubar was associated with this window
*/
/* TAG END EVNT:Command */
}
break;
case E_CONTROL:
/*
User operated control in window.
*/
{
/* TAG BEGIN SPCL:Control_Decl */
/* TAG END SPCL:Control_Decl */
switch(xdControlId) {
case LAYER_DISPLAY_LIST: /* "Layer List" */
{
/* TAG BEGIN LAYER_DISPLAY_LIST EVNT:Control */
/*
List box was operated.
*/
if (xdEvent->v.ctl.ci.v.lbox.dbl_click) {
/*
double click
*/
} else {
/*
single click
*/
xvt_dwin_invalidate_rect(xdWindow, (RCT *) NULL);
}
/* TAG END LAYER_DISPLAY_LIST EVNT:Control */
}
break;
case LAYER_DISPLAY_TYPE: /* "Block Type" */
{
/* TAG BEGIN LAYER_DISPLAY_TYPE EVNT:Control */
updateBlockImageOptions (xdWindow);
/* TAG END LAYER_DISPLAY_TYPE EVNT:Control */
}
break;
case LAYER_RESET_COLORS: /* "Reset" */
{
/* TAG BEGIN LAYER_RESET_COLORS EVNT:Control */
BLOCK_DIAGRAM_DATA *display = (BLOCK_DIAGRAM_DATA *) xvt_vobj_get_data(xdWindow);
destroy1DArray ((char *) display->lut);
display->lut = (COLOR *) NULL;
display->lutSize = 0;
updateBlockImageOptions (xdWindow);
/* TAG END LAYER_RESET_COLORS EVNT:Control */
}
break;
case LAYER_EDIT_COLORS: /* "Edit..." */
{
/* TAG BEGIN LAYER_EDIT_COLORS EVNT:Control */
/* TAG END LAYER_EDIT_COLORS EVNT:Control */
}
break;
case LAYER_CALC_VALUES: /* "Calc Real Values" */
{
/* TAG BEGIN LAYER_CALC_VALUES EVNT:Control */
extern int noStatusWin;
BLOCK_DIAGRAM_DATA *diagram = (BLOCK_DIAGRAM_DATA *) xvt_vobj_get_data (xdWindow);
int dataType;
switch (xvt_list_get_sel_index (xvt_win_get_ctl (xdWindow, LAYER_DISPLAY_TYPE)))
{
case (2): /* Density */
dataType = DENSITY_BLOCK;
break;
case (3): /* Sus X */
dataType = SUS_X_BLOCK;
break;
case (4): /* Sus Y */
dataType = SUS_Y_BLOCK;
break;
case (5): /* Sus Z */
dataType = SUS_Z_BLOCK;
break;
case (6): /* Sus Dip */
dataType = SUS_DIP_BLOCK;
break;
case (7): /* Sus Dip Direction */
dataType = SUS_DDIR_BLOCK;
break;
case (8): /* Sus Pitch */
dataType = SUS_PITCH_BLOCK;
break;
case (9): /* Rem Intensity */
dataType = REM_STR_BLOCK;
break;
case (10): /* Rem Inclination */
dataType = REM_INC_BLOCK;
break;
case (11): /* Rem Declination */
dataType = REM_DEC_BLOCK;
break;
default:
return 0L;
}
noStatusWin = TRUE;
calcBlockImageValueData(diagram, dataType);
noStatusWin = FALSE;
updateBlockImageOptions(xdWindow);
/* TAG END LAYER_CALC_VALUES EVNT:Control */
}
break;
case LAYER_DISPLAY_ALL: /* "All Layers (Solid Block)" */
{
/* TAG BEGIN LAYER_DISPLAY_ALL EVNT:Control */
WINDOW ctl_win = xvt_win_get_ctl(xdWindow, LAYER_DISPLAY_ALL);
xvt_ctl_set_checked(ctl_win, (BOOLEAN) (!xvt_ctl_is_checked (ctl_win)));
updateBlockImageOptions(xdWindow);
/* TAG END LAYER_DISPLAY_ALL EVNT:Control */
}
break;
case LAYER_LUT_START: /* "start" */
{
/* TAG BEGIN LAYER_LUT_START EVNT:Control */
/*
Edit control was operated.
*/
if (xdEvent->v.ctl.ci.v.edit.focus_change) {
if (xdEvent->v.ctl.ci.v.edit.active) {
/*
focus has entered the control
*/
} else {
/*
focus has left the control
*/
}
} else {
/*
Contents of control were changed
*/
double value;
value = getFloatTextFieldValue (xdWindow, LAYER_LUT_START) - 1.0;
setBlockImageColorIndex (xdWindow, NULL, &value, NULL);
}
/* TAG END LAYER_LUT_START EVNT:Control */
}
break;
case LAYER_LUT_END: /* "end" */
{
/* TAG BEGIN LAYER_LUT_END EVNT:Control */
/*
Edit control was operated.
*/
if (xdEvent->v.ctl.ci.v.edit.focus_change) {
if (xdEvent->v.ctl.ci.v.edit.active) {
/*
focus has entered the control
*/
} else {
/*
focus has left the control
*/
}
} else {
/*
Contents of control were changed
*/
double value;
value = getFloatTextFieldValue (xdWindow, LAYER_LUT_END) - 1.0;
setBlockImageColorIndex (xdWindow, NULL, NULL, &value);
}
/* TAG END LAYER_LUT_END EVNT:Control */
}
break;
case LAYER_DISPLAY_OK: /* "OK" */
{
/* TAG BEGIN LAYER_DISPLAY_OK EVNT:Control */
saveBlockImageOptions (xdWindow, (BLOCK_DIAGRAM_DATA *) xvt_vobj_get_data(xdWindow));
/* TAG END LAYER_DISPLAY_OK EVNT:Control */
}
break;
case LAYER_DISPLAY_HELP: /* "Help..." */
{
/* TAG BEGIN LAYER_DISPLAY_HELP EVNT:Control */
displayHelp("blockop.htm");
/* TAG END LAYER_DISPLAY_HELP EVNT:Control */
}
break;
case LAYER_DISPLAY_CANCEL: /* "Cancel" */
{
/* TAG BEGIN LAYER_DISPLAY_CANCEL EVNT:Control */
xvt_vobj_destroy(xdWindow);
/* TAG END LAYER_DISPLAY_CANCEL EVNT:Control */
}
break;
case LAYER_LUT_STRETCH: /* "stretch" */
{
/* TAG BEGIN LAYER_LUT_STRETCH EVNT:Control */
/* TAG END LAYER_LUT_STRETCH EVNT:Control */
}
break;
default:
break;
}
}
break;
case E_FONT:
/*
User issued font command on window menu bar (menu bar at top of
screen for Mac/CH).
*/
{
/* TAG BEGIN EVNT:Font */
/* TAG END EVNT:Font */
}
break;
case E_TIMER:
/*
Timer associated with window went off.
*/
{
/* TAG BEGIN EVNT:Timer */
/* TAG END EVNT:Timer */
}
break;
case E_USER:
/*
Application initiated.
*/
{
/* TAG BEGIN EVNT:User */
switch (xdEvent->v.user.id) {
case -1:
default:
break;
}
/* TAG END EVNT:User */
}
break;
default:
break;
}
/* TAG BEGIN SPCL:Bottom */
#ifdef XVT_R40_TXEDIT_BEHAVIOR
xvt_tx_process_event(xdWindow, xdEvent);
#endif
/* TAG END SPCL:Bottom */
return 0L;
}