-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtools_tablet.c
882 lines (804 loc) · 21.8 KB
/
tools_tablet.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
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
#if defined(__GNUC__)
#ident "University of Edinburgh $Id$"
#else
static char _tools_tablet_c[] = "University of Edinburgh $Id$";
#endif
/*!
* \file tools_tablet.c
* \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
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <unistd.h>
#include <MAPaint.h>
#include <HGU_Tablet.h>
#ifndef usleep
extern void usleep(unsigned long usec);
#endif
/* define tablet events to be different to any
X11 event byt using LASTEvent which is bigger than any true X11 event */
#define TabletButtonPress (ButtonPress+LASTEvent)
#define TabletButtonRelease (ButtonRelease+LASTEvent)
#define TabletMotionNotify (MotionNotify+LASTEvent)
static Widget tablet_controls=NULL;
static HGUTablet *tablet=NULL;
static XtInputId tabletInputId;
/* this converts the tablet event into a pretend X-event
what we really need is to sense the keyboard state so
that the modifier key masks can be set */
static void tabletInputProc(
XtPointer client_data,
int *fd,
XtInputId *inputId)
{
ThreeDViewStruct *view_struct = (ThreeDViewStruct *) client_data;
TabletEvent event;
static TabletEvent lastEvent;
XEvent xevent;
int state=0;
static int laststate;
XmDrawingAreaCallbackStruct cbs;
/* get the next tablet event and convert to an X-event,
use the previous event to detect button press and release events
three events possible: ButtonPress, ButtonRelease, MotionNotify */
if( TabletNextEvent(tablet, &event) == TABLET_ERR_NONE ){
if( event.eventNum == 1 ){
lastEvent = event;
laststate = 0;
}
/* check event type from buttonPressed and buttons values */
if((lastEvent.buttonPressed < event.buttonPressed) ||
(lastEvent.buttons < event.buttons)){
xevent.type = TabletButtonPress;
}
else if((lastEvent.buttonPressed > event.buttonPressed) ||
(lastEvent.buttons > event.buttons)){
xevent.type = TabletButtonRelease;
}
else {
xevent.type = TabletMotionNotify;
}
/* attempt to work out buttons state */
switch( event.device ){
default:
case TABLET_DEVICE_STYLUS:
switch( event.buttons ){
default:
case 0:
state = 0;
break;
case 1:
state = Button1Mask;
break;
case 2:
state = Button3Mask;
break;
case 3:
state = Button1Mask|Button3Mask;
break;
case 4:
state = Button2Mask;
break;
}
break;
case TABLET_DEVICE_4BUTTON_CURSOR:
switch( event.buttons ){
default:
case 0:
state = 0;
break;
case 1:
state = Button2Mask;
break;
case 2:
state = Button1Mask;
break;
case 3:
switch( xevent.type ){
case TabletMotionNotify: /* note this is ambiguous if eventNum = 1 */
if( laststate ){
state = laststate;
}
else {
state = Button4Mask;
}
break;
case TabletButtonPress:
if( laststate&Button1Mask ){
state = Button1Mask|Button2Mask;
}
else if( laststate&Button2Mask ){
state = Button1Mask|Button2Mask;
}
else {
state = Button4Mask;
}
break;
case TabletButtonRelease:
state = Button4Mask;
}
break;
case 4:
switch( xevent.type ){
case TabletMotionNotify: /* note this is ambiguous if eventNum = 1 */
if( laststate ){
state = laststate;
}
else {
state = Button3Mask;
}
break;
case TabletButtonPress:
if( laststate&(Button2Mask|Button4Mask) ){
state = Button2Mask|Button4Mask;
}
else {
state = Button3Mask;
}
break;
case TabletButtonRelease:
state = Button4Mask;
}
break;
case 5:
switch( xevent.type ){
case TabletButtonPress:
if( (laststate&(Button1Mask|Button4Mask)) ){
state = Button1Mask|Button4Mask;
}
else if( laststate&(Button2Mask|Button3Mask) ){
state = Button2Mask|Button3Mask;
}
else {
state = Button3Mask;
}
break;
case TabletMotionNotify: /* not possible */
state = laststate;
break;
case TabletButtonRelease: /* not possible */
state = Button5Mask;
}
break;
case 6:
switch( xevent.type ){
case TabletButtonPress:
if( laststate&Button1Mask ){
state = Button1Mask|Button3Mask;
}
else if( laststate&Button4Mask ){
state = Button3Mask|Button4Mask;
}
else { /* ambiguous */
state = Button5Mask;
}
break;
case TabletMotionNotify: /* not possible */
state = laststate;
break;
case TabletButtonRelease: /* not possible */
state = Button5Mask;
}
break;
}
break;
}
/* set which button */
switch( xevent.type ){
case TabletMotionNotify:
xevent.xmotion.state = state;
break;
case TabletButtonPress:
xevent.xbutton.state = laststate;
switch( state & (~laststate) ){
case Button1Mask:
xevent.xbutton.button = Button1;
break;
case Button2Mask:
xevent.xbutton.button = Button2;
break;
case Button3Mask:
xevent.xbutton.button = Button3;
break;
case Button4Mask:
xevent.xbutton.button = Button4;
break;
default: /* this indicates ambiguity or error */
xevent.xbutton.button = Button5;
break;
}
break;
case TabletButtonRelease:
xevent.xbutton.state = laststate;
switch( (~state) & laststate ){
case Button1Mask:
xevent.xbutton.button = Button1;
break;
case Button2Mask:
xevent.xbutton.button = Button2;
break;
case Button3Mask:
xevent.xbutton.button = Button3;
break;
case Button4Mask:
xevent.xbutton.button = Button4;
break;
default: /* this indicates ambiguity or error */
xevent.xbutton.button = Button5;
break;
}
break;
}
/* set coordinate values - x,y are converted, x_root, y_root originals */
switch( xevent.type ){
case TabletMotionNotify:
xevent.xmotion.x = WLZ_NINT(event.X);
xevent.xmotion.y = WLZ_NINT(event.Y);
xevent.xmotion.x_root = event.x;
xevent.xmotion.y_root = event.y;
break;
case TabletButtonPress:
case TabletButtonRelease:
xevent.xbutton.x = WLZ_NINT(event.X);
xevent.xbutton.y = WLZ_NINT(event.Y);
xevent.xbutton.x_root = event.x;
xevent.xbutton.y_root = event.y;
break;
}
/* set other bits and bobs */
xevent.xany.serial = event.eventNum;
xevent.xany.send_event = False;
xevent.xany.display = XtDisplay(view_struct->canvas);
xevent.xany.window = XtWindow(view_struct->canvas);
switch( xevent.type ){
case TabletMotionNotify:
xevent.xmotion.root = (Window) 0;
xevent.xmotion.subwindow = (Window) 0;
xevent.xmotion.time = (Time) 0;
xevent.xmotion.is_hint = NotifyNormal;
xevent.xmotion.same_screen = True;
break;
case TabletButtonPress:
case TabletButtonRelease:
xevent.xbutton.root = (Window) 0;
xevent.xbutton.subwindow = (Window) 0;
xevent.xbutton.time = (Time) 0;
xevent.xbutton.same_screen = True;
break;
}
lastEvent = event;
laststate = state;
/* all above should be in convert event,
now call the tablet callback function */
cbs.reason = XmCR_INPUT;
cbs.event = &xevent;
cbs.window = xevent.xany.window;
MAPaintTabletCb(view_struct->canvas, client_data, (XtPointer) &cbs);
}
return;
}
static unsigned int modifiers=0;
static int tabletDrawingFlag=0;
static DomainSelection currDomain;
static int delFlag;
static int quitDrawingTrigger=0;
static WlzPolygonDomain *tabletPoly=NULL;
void MAPaintTabletInit(
ThreeDViewStruct *view_struct)
{
TabletEvent event;
int quitFlag;
Widget dialog;
XmString text, title;
WlzDVertex2 tabVtxs[2], wlzVtxs[2];
Widget slider;
WlzAffineTransform *trans;
/* ignore if already open */
if( tablet ){
return;
}
/* open the tablet */
if( (tablet = TabletOpen(WACOM_IV_TABLET_TYPE,
"/dev/term/b", NULL)) == NULL ){
HGU_XmUserError(globals.topl,
"Open Wacom Tablet:\n"
" Failed to open the tablet, please check\n"
" the tablet is connected to serial line b\n"
" and switched on, then try again.",
XmDIALOG_FULL_APPLICATION_MODAL);
return;
}
/* set tilt mode and start the tablet */
TabletSetMode(tablet, TABLET_TILTMODE_MASK);
tablet->cntrlMode2 |= TABLET_CORRECT_TILT_MASK;
tablet->cntrlMode2 |= TABLET_TRANSFORM_MASK;
TabletStart(tablet);
/* if the tablet needs the coordinates set then do so here */
if( !view_struct->tablet_initialised ){
/* get first coordinate */
/* put up an application modal dialog to request first
coordinate */
dialog = XmCreateMessageDialog(view_struct->canvas,
"MAPaint Message", NULL, 0);
XtUnmanageChild(XmMessageBoxGetChild(dialog, XmDIALOG_CANCEL_BUTTON));
XtUnmanageChild(XmMessageBoxGetChild(dialog, XmDIALOG_OK_BUTTON));
XtSetSensitive(XmMessageBoxGetChild(dialog, XmDIALOG_HELP_BUTTON),
False);
text = XmStringCreateLtoR("Input tablet reference point 1 please",
XmSTRING_DEFAULT_CHARSET);
title = XmStringCreateSimple("MAPaint Tablet Message");
XtVaSetValues(dialog,
XmNmessageString, text,
XmNdialogTitle, title,
XmNdialogStyle, XmDIALOG_FULL_APPLICATION_MODAL,
NULL);
XmStringFree( text );
XmStringFree( title );
/* popup widget and process events */
XtManageChild( dialog );
XSync(XtDisplay(view_struct->canvas), False);
quitFlag = 0;
while( quitFlag < 100 ){
if((XtAppPending(globals.app_con) > 0) ){
XtAppProcessEvent(globals.app_con, XtIMAll);
}
else {
XSync(XtDisplay(view_struct->canvas), False);
usleep(1000);
quitFlag++;
}
}
quitFlag = 0;
while( !quitFlag ){
if( TabletNextEvent(tablet, &event) == TABLET_ERR_NONE ){
if(event.buttonPressed &&
((event.buttons == 1) || (event.buttons == 3))){
tabVtxs[0].vtX = event.x;
tabVtxs[0].vtY = event.y;
quitFlag = 1;
XBell(XtDisplay(view_struct->canvas), 100);
XFlush(XtDisplay(view_struct->canvas));
}
}
else {
TabletClose(tablet);
tablet = NULL;
XtDestroyWidget(dialog);
return;
}
}
/* get second coordinate */
text = XmStringCreateLtoR("Input tablet reference point 2 please",
XmSTRING_DEFAULT_CHARSET);
XtVaSetValues(dialog,
XmNmessageString, text,
NULL);
XmStringFree( text );
/* popup widget and process events */
XtManageChild( dialog );
XSync(XtDisplay(view_struct->canvas), False);
while( (XtAppPending(globals.app_con) > 0) ){
XtAppProcessEvent(globals.app_con, XtIMAll);
XSync(XtDisplay(view_struct->canvas), False);
}
quitFlag = 0;
sleep(1);
TabletClearEvents(tablet);
while( !quitFlag ){
if( TabletNextEvent(tablet, &event) == TABLET_ERR_NONE ){
if(event.buttonPressed &&
((event.buttons == 1) || (event.buttons == 3))){
tabVtxs[1].vtX = event.x;
tabVtxs[1].vtY = event.y;
quitFlag = 1;
XBell(XtDisplay(view_struct->canvas), 100);
XFlush(XtDisplay(view_struct->canvas));
}
}
else {
TabletClose(tablet);
XtDestroyWidget(dialog);
tablet = NULL;
return;
}
}
TabletStop(tablet);
XtDestroyWidget(dialog);
usleep(10000);
TabletClearEvents(tablet);
/* set the reference coordinates */
view_struct->ref1.vtX = tabVtxs[0].vtX;
view_struct->ref1.vtY = tabVtxs[0].vtY;
view_struct->ref2.vtX = tabVtxs[1].vtX;
view_struct->ref2.vtY = tabVtxs[1].vtY;
}
else {
tabVtxs[0].vtX = view_struct->ref1.vtX;
tabVtxs[0].vtY = view_struct->ref1.vtY;
tabVtxs[1].vtX = view_struct->ref2.vtX;
tabVtxs[1].vtY = view_struct->ref2.vtY;
}
/* set tablet transform parameters */
if((slider = XtNameToWidget(tablet_controls, "*.x1")) )
{
wlzVtxs[0].vtX = HGU_XmGetSliderValue(slider);
}
if((slider = XtNameToWidget(tablet_controls, "*.y1")) )
{
wlzVtxs[0].vtY = HGU_XmGetSliderValue(slider);
}
if((slider = XtNameToWidget(tablet_controls, "*.x2")) )
{
wlzVtxs[1].vtX = HGU_XmGetSliderValue(slider);
}
if( (slider = XtNameToWidget(tablet_controls, "*.y2")))
{
wlzVtxs[1].vtY = HGU_XmGetSliderValue(slider);
}
trans = WlzAffineTransformLSq2D(2, tabVtxs, 2, wlzVtxs, 0, NULL,
WLZ_TRANSFORM_2D_NOSHEAR, NULL);
tablet->xTrans[0] = trans->mat[0][0];
tablet->xTrans[1] = trans->mat[0][1];
tablet->xTrans[2] = trans->mat[0][2];
tablet->yTrans[0] = trans->mat[1][0];
tablet->yTrans[1] = trans->mat[1][1];
tablet->yTrans[2] = trans->mat[1][2];
WlzFreeAffineTransform(trans);
view_struct->tablet_initialised = 1;
/* initialise the globals */
modifiers = 0;
tabletDrawingFlag = 0;
quitDrawingTrigger = 0;
if( tabletPoly ){
WlzFreePolyDmn(tabletPoly);
tabletPoly = NULL;
}
/* now add the tablet stream as an event input source */
TabletStart(tablet);
TabletClearEvents(tablet);
tabletInputId = XtAppAddInput(globals.app_con, tablet->fd,
(XtPointer) XtInputReadMask,
tabletInputProc, (XtPointer) view_struct);
return;
}
void MAPaintTabletQuit(
ThreeDViewStruct *view_struct)
{
/* do nothing if tablet NULL */
if( !tablet ){
return;
}
/* stop the tablet */
TabletStop(tablet);
/* remove it as an input source */
XtRemoveInput(tabletInputId);
/* close it */
TabletClose(tablet);
tablet = NULL;
/* clear the global polyline */
if( tabletPoly ){
WlzFreePolyDmn(tabletPoly);
tabletPoly = NULL;
}
return;
}
static void TabletPolyNextPoint(
int x,
int y)
{
int lastVtx;
WlzPolygonDomain *tmpPoly;
/* create the polygon if required */
if( tabletPoly == NULL ){
tabletPoly = WlzMakePolygonDomain(WLZ_POLYGON_INT,
0, NULL, 256, 1, NULL);
tabletPoly->vtx[0].vtX = x;
tabletPoly->vtx[0].vtY = y;
tabletPoly->nvertices = 1;
return;
}
/* check if this point differs from the last */
lastVtx = tabletPoly->nvertices;
if((tabletPoly->vtx[lastVtx-1].vtX == x) &&
(tabletPoly->vtx[lastVtx-1].vtY == y)){
return;
}
/* check if more points needed */
if( lastVtx >= tabletPoly->maxvertices ){
tmpPoly = WlzMakePolygonDomain(WLZ_POLYGON_INT, lastVtx,
tabletPoly->vtx,
lastVtx + 256, 1, NULL);
WlzFreePolyDmn(tabletPoly);
tabletPoly = tmpPoly;
}
/* add the next point */
tabletPoly->vtx[lastVtx].vtX = x;
tabletPoly->vtx[lastVtx].vtY = y;
tabletPoly->nvertices++;
return;
}
void MAPaintTabletCb(
Widget w,
XtPointer client_data,
XtPointer call_data)
{
ThreeDViewStruct *view_struct = (ThreeDViewStruct *) client_data;
XmAnyCallbackStruct *cbs = (XmAnyCallbackStruct *) call_data;
WlzObject *obj, *obj1;
switch( cbs->event->type ){
case ButtonPress:
switch( cbs->event->xbutton.button ){
case Button1:
case Button2:
/* do nothing if shift pressed - magnify option */
if( cbs->event->xbutton.state & ButtonStateIgnoreMask ){
break;
}
break;
default:
break;
}
break;
case ButtonRelease:
switch( cbs->event->xbutton.button ){
case Button1:
case Button2:
break;
case Button3:
if( tabletDrawingFlag ){
if( quitDrawingTrigger ){
tabletDrawingFlag = 0;
quitDrawingTrigger = 0;
}
/* install the new domain */
if( tabletPoly ){
obj = WlzPolyToObj(tabletPoly, WLZ_SIMPLE_FILL, NULL);
/* reset the painted object and redisplay */
if( obj ){
obj1 =
WlzShiftObject(obj,
view_struct->painted_object->domain.i->kol1,
view_struct->painted_object->domain.i->line1,
0, NULL);
setDomainIncrement(obj1, view_struct, currDomain, delFlag);
WlzFreeObj( obj );
WlzFreeObj( obj1 );
}
WlzFreePolyDmn(tabletPoly);
tabletPoly = NULL;
}
}
break;
}
break;
case MotionNotify:
break;
case KeyPress:
/* check for modifier key events */
switch( XLookupKeysym(&(cbs->event->xkey), 0) ){
case XK_Shift_L:
case XK_Shift_R:
modifiers |= ShiftMask;
break;
case XK_Control_L:
case XK_Control_R:
modifiers |= ControlMask;
break;
case XK_Meta_L:
case XK_Meta_R:
modifiers |= Mod4Mask;
break;
case XK_Alt_L:
case XK_Alt_R:
modifiers |= Mod1Mask;
break;
}
break;
case KeyRelease:
/* check for modifier key events */
switch( XLookupKeysym(&(cbs->event->xkey), 0) ){
case XK_Shift_L:
case XK_Shift_R:
modifiers &= ~ShiftMask;
break;
case XK_Control_L:
case XK_Control_R:
modifiers &= ~ControlMask;
break;
case XK_Meta_L:
case XK_Meta_R:
modifiers &= ~Mod4Mask;
break;
case XK_Alt_L:
case XK_Alt_R:
modifiers &= ~Mod1Mask;
break;
}
break;
case TabletButtonPress:
switch( cbs->event->xbutton.button ){
case Button1:
case Button2:
/* set the drawing flag */
if( !tabletDrawingFlag ){
/* save the current domain selection and meta button state */
currDomain = globals.current_domain;
delFlag = ((modifiers & Mod1Mask) ||
(cbs->event->xbutton.button == Button2));
tabletDrawingFlag = 1;
}
/* set the next point */
TabletPolyNextPoint(cbs->event->xbutton.x, cbs->event->xbutton.y);
break;
case Button3:
if( tabletDrawingFlag ){
quitDrawingTrigger = 1;
}
else {
canvas_2D_painting_cb(w, client_data, call_data);
}
break;
}
break;
case TabletButtonRelease:
switch( cbs->event->xbutton.button ){
case Button1:
case Button2:
break;
case Button3:
if( tabletDrawingFlag ){
if( quitDrawingTrigger ){
tabletDrawingFlag = 0;
quitDrawingTrigger = 0;
}
/* install the new domain */
if( tabletPoly ){
obj = WlzPolyToObj(tabletPoly, WLZ_SIMPLE_FILL, NULL);
/* reset the painted object and redisplay */
if( obj ){
obj1 =
WlzShiftObject(obj,
view_struct->painted_object->domain.i->kol1,
view_struct->painted_object->domain.i->line1,
0, NULL);
setDomainIncrement(obj1, view_struct, currDomain, delFlag);
WlzFreeObj( obj );
WlzFreeObj( obj1 );
}
WlzFreePolyDmn(tabletPoly);
tabletPoly = NULL;
}
}
else {
canvas_2D_painting_cb(w, client_data, call_data);
}
break;
}
break;
case TabletMotionNotify:
if( tabletDrawingFlag ){
if( cbs->event->xmotion.state & (Button1Mask|Button2Mask) ){
/* if buttons 1 or 2 pressed then set next point */
TabletPolyNextPoint(cbs->event->xmotion.x, cbs->event->xmotion.y);
}
else {
/* rubber band from last point */
/* don't need this since the user is looking at the tablet */
}
}
else {
canvas_2D_painting_cb(w, client_data, call_data);
}
break;
default:
break;
}
return;
}
Widget CreateTabletControls(
Widget parent)
{
Widget form, form1, label, slider, frame, widget;
/* create a parent form to hold all the tracking controls */
form = XtVaCreateWidget("tablet_controls_form", xmFormWidgetClass,
parent,
XmNtopAttachment, XmATTACH_FORM,
XmNbottomAttachment, XmATTACH_FORM,
XmNleftAttachment, XmATTACH_FORM,
XmNrightAttachment, XmATTACH_FORM,
NULL);
/* create frame, form and label for the tracking parameters */
frame = XtVaCreateManagedWidget("frame", xmFrameWidgetClass,
form,
XmNtopAttachment, XmATTACH_FORM,
XmNleftAttachment, XmATTACH_FORM,
XmNrightAttachment, XmATTACH_FORM,
NULL);
form1 = XtVaCreateWidget("tablet_form1", xmFormWidgetClass,
frame,
XmNtopAttachment, XmATTACH_FORM,
XmNbottomAttachment, XmATTACH_FORM,
XmNleftAttachment, XmATTACH_FORM,
XmNrightAttachment, XmATTACH_FORM,
NULL);
label = XtVaCreateManagedWidget("tablet_ref_points", xmLabelWidgetClass,
frame,
XmNchildType, XmFRAME_TITLE_CHILD,
XmNborderWidth, 0,
NULL);
/* create sliders for the reference coordinates */
slider = HGU_XmCreateHorizontalSlider("x1", form1,
0.0, -1000.0, 2000.0, 0,
NULL, NULL);
XtVaSetValues(slider,
XmNtopAttachment, XmATTACH_FORM,
XmNleftAttachment, XmATTACH_FORM,
XmNrightAttachment, XmATTACH_FORM,
NULL);
widget = slider;
slider = HGU_XmCreateHorizontalSlider("y1", form1,
0.0, -1000.0, 2000.0, 0,
NULL, NULL);
XtVaSetValues(slider,
XmNtopAttachment, XmATTACH_WIDGET,
XmNtopWidget, widget,
XmNleftAttachment, XmATTACH_FORM,
XmNrightAttachment, XmATTACH_FORM,
NULL);
widget = slider;
slider = HGU_XmCreateHorizontalSlider("x2", form1,
150.0, -1000.0, 2000.0, 0,
NULL, NULL);
XtVaSetValues(slider,
XmNtopAttachment, XmATTACH_WIDGET,
XmNtopWidget, widget,
XmNleftAttachment, XmATTACH_FORM,
XmNrightAttachment, XmATTACH_FORM,
NULL);
widget = slider;
slider = HGU_XmCreateHorizontalSlider("y2", form1,
100.0, -1000.0, 2000.0, 0,
NULL, NULL);
XtVaSetValues(slider,
XmNtopAttachment, XmATTACH_WIDGET,
XmNtopWidget, widget,
XmNleftAttachment, XmATTACH_FORM,
XmNrightAttachment, XmATTACH_FORM,
NULL);
widget = slider;
XtManageChild( form1 );
tablet_controls = form;
return( form );
}