4 typedef struct { short ot
; short ob
; short nt
; short nb
; } Stuff
;
6 void PaintThumb( Stuff
* w
)
13 if (newtop
< oldtop
) { fprintf(stderr
,"case1\n");
14 // FillArea(w, newtop, XawMin(newbot, oldtop), 1);
16 if (newtop
> oldtop
) { fprintf(stderr
,"case2\n");
17 // FillArea(w, oldtop, XawMin(newtop, oldbot), 0);
19 if (newbot
< oldbot
) { fprintf(stderr
,"case3\n");
20 // FillArea(w, XawMax(newbot, oldtop), oldbot, 0);
22 if (newbot
> oldbot
) { fprintf(stderr
,"case4\n");
23 // FillArea(w, XawMax(newtop, oldbot), newbot, 1);