File: PButton.c

package info (click to toggle)
xcircuit 2.0a6-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 1,960 kB
  • ctags: 3,202
  • sloc: ansic: 30,529; makefile: 51; sh: 2
file content (640 lines) | stat: -rw-r--r-- 18,131 bytes parent folder | download | duplicates (2)
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
/*************************************<+>*************************************
 *****************************************************************************
 **
 **   File:        PButton.c
 **
 **   Project:     X Widgets
 **
 **   Description: Contains code for primitive widget class: PushButton
 **
 *****************************************************************************
 **   
 **   Copyright (c) 1988 by Hewlett-Packard Company
 **   Copyright (c) 1988 by the Massachusetts Institute of Technology
 **   
 **   Permission to use, copy, modify, and distribute this software 
 **   and its documentation for any purpose and without fee is hereby 
 **   granted, provided that the above copyright notice appear in all 
 **   copies and that both that copyright notice and this permission 
 **   notice appear in supporting documentation, and that the names of 
 **   Hewlett-Packard or  M.I.T.  not be used in advertising or publicity 
 **   pertaining to distribution of the software without specific, written 
 **   prior permission.
 **   
 *****************************************************************************
 *************************************<+>*************************************/

/*
 * Include files & Static Routine Definitions
 */

#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <X11/Intrinsic.h>
#include <X11/IntrinsicP.h>
#include <X11/StringDefs.h>
#include <Xw/Xw.h>
#include <Xw/XwP.h>
#include <Xw/PButtonP.h>
#include <Xw/PButton.h>
#include <X11/keysymdef.h>   
   

#define PB_BW 2


static void Redisplay();
static void RedrawButtonFace();
static Boolean SetValues();
static void ClassInitialize();
static void Initialize();
static void Toggle();
static void ToggleRelease();
static void Select();
static void Unselect();
static void Resize();


/*************************************<->*************************************
 *
 *
 *   Description:  default translation table for class: PushButton
 *   -----------
 *
 *   Matches events with string descriptors for internal routines.
 *
 *************************************<->***********************************/

static char defaultTranslations[] =
   "<Btn1Down>:             select() \n\
    <Btn1Up>:             unselect() \n\
    <EnterWindow>:          enter() \n\
    <LeaveWindow>:          leave() \n\
    <KeyDown>Select:   select() \n\
    <KeyUp>Select:     unselect()";



/*************************************<->*************************************
 *
 *
 *   Description:  action list for class: PushButton
 *   -----------
 *
 *   Matches string descriptors with internal routines.
 *   Note that Primitive will register additional event handlers
 *   for traversal.
 *
 *************************************<->***********************************/

static XtActionsRec actionsList[] =
{
  {"toggle", (XtActionProc) Toggle},
  {"select", (XtActionProc) Select},
  {"unselect", (XtActionProc) Unselect},
  {"enter", (XtActionProc) _XwPrimitiveEnter},
  {"leave", (XtActionProc) _XwPrimitiveLeave},
};


/*  The resource list for Push Button  */

static XtResource resources[] = 
{     
   {
     XtNtoggle, XtCToggle, XtRBoolean, sizeof (Boolean),
     XtOffset (XwPushButtonWidget, pushbutton.toggle), XtRString, "False"
   }
};



/*************************************<->*************************************
 *
 *
 *   Description:  global class record for instances of class: PushButton
 *   -----------
 *
 *   Defines default field settings for this class record.
 *
 *************************************<->***********************************/

XwPushButtonClassRec XwpushButtonClassRec = {
  {
/* core_class fields */	
    /* superclass	  */	(WidgetClass) &XwbuttonClassRec,
    /* class_name	  */	"PushButton",
    /* widget_size	  */	sizeof(XwPushButtonRec),
    /* class_initialize   */    ClassInitialize,
    /* class_part_init    */    NULL,				
    /* class_inited       */	FALSE,
    /* initialize	  */	Initialize,
    /* initialize_hook    */    NULL,
    /* realize		  */	_XwRealize,
    /* actions		  */	actionsList,
    /* num_actions	  */	XtNumber(actionsList),
    /* resources	  */	resources,
    /* num_resources	  */	XtNumber(resources),
    /* xrm_class	  */	NULLQUARK,
    /* compress_motion	  */	TRUE,
    /* compress_exposure  */	TRUE,
    /* compress_enterlv   */    TRUE,
    /* visible_interest	  */	FALSE,
    /* destroy		  */	NULL,
    /* resize		  */	Resize,
    /* expose		  */	Redisplay,
    /* set_values	  */	SetValues,
    /* set_values_hook    */    NULL,
    /* set_values_almost  */    XtInheritSetValuesAlmost,
    /* get_values_hook  */	NULL,
    /* accept_focus	  */	NULL,
    /* version          */	XtVersion,
    /* callback_private */      NULL,
    /* tm_table         */      defaultTranslations,
    /* query_geometry   */	NULL, 
    /* display_accelerator	*/	XtInheritDisplayAccelerator,
    /* extension		*/	NULL
  }
};
WidgetClass XwpushButtonWidgetClass = (WidgetClass)&XwpushButtonClassRec;


/*************************************<->*************************************
 *
 *  Toggle (w, event)                  PRIVATE
 *
 *   Description:
 *   -----------
 *     When this pushbutton is selected, toggle the activation state
 *     (i.e., draw it as active if it was not active and draw it as
 *     inactive if it was active).  Generate the correct callbacks
 *     in response.
 *
 *     NOTE: this code assumes that instances do not receive selection
 *           events when insensitive.
 *
 *   Inputs:
 *   ------
 *     w           =   widget instance that was selected.
 *     event       =   event record
 * 
 *   Outputs:
 *   -------
 *
 *   Procedures Called
 *   -----------------
 *   XtCallCallbacks()  [libXtk]
 *   Redisplay  [PushButton.c]
 *************************************<->***********************************/

static void Toggle (w,event)
Widget w;
XEvent *event;

{
   XwPushButtonWidget pb = (XwPushButtonWidget)w;


   if (pb -> button.set) 
      pb -> button.set = False;
   else 
      pb -> button.set = True;

   RedrawButtonFace (w, event, FALSE);
   XFlush(XtDisplay(w));
   XtCallCallbacks (w, ((pb->button.set) ? XtNselect : XtNrelease), NULL);
}


/*************************************<->*************************************
 *
 *  Select (w, event)                  PRIVATE
 *
 *   Description:
 *   -----------
 *     Mark pushbutton as selected, (i.e., draw it as active)
 *     Generate the correct callbacks.  If "toggle" flag is
 *     TRUE then call the Toggle routine.
 *
 *     NOTE: this code assumes that instances do not receive selection
 *           events when insensitive.
 *
 *   Inputs:
 *   ------
 *     w           =   widget instance that was selected.
 *     event       =   event record
 * 
 *   Outputs:
 *   -------
 *
 *   Procedures Called
 *   -----------------
 *   XtCallCallbacks()  [libXtk]
 *************************************<->***********************************/

static void Select (w,event)
Widget w;
XEvent *event;

{
   XwPushButtonWidget pb = (XwPushButtonWidget) w;

   if (pb->pushbutton.toggle == TRUE)
      Toggle(w,event);
   else
     {
       pb->button.set = TRUE;

       RedrawButtonFace (w, event, FALSE);
       XFlush (XtDisplay(w));
       XtCallCallbacks (w, XtNselect, NULL);
     }
}




/*************************************<->*************************************
 *
 *  Unselect (w, event)                  PRIVATE
 *
 *   Description:
 *   -----------
 *     When this pushbutton is unselected draw it as inactive.
 *     Generate the correct callbacks.
 *
 *     NOTE: this code respects the utility flag "toggle"  if this
 *           flag is set to true then this routine is a no op.
 *
 *   Inputs:
 *   ------
 *     w           =   widget instance that was selected.
 *     event       =   event record
 * 
 *   Outputs:
 *   -------
 *
 *   Procedures Called
 *   -----------------
 *   XtCallCallbacks()   [libXtk]
 *************************************<->***********************************/

static void Unselect(w,event)
Widget w;
XEvent *event;

{
   XwPushButtonWidget pb = (XwPushButtonWidget) w;

 
   if (! pb->pushbutton.toggle)
     {
       pb->button.set = FALSE;

       RedrawButtonFace (w, event, FALSE);
       XFlush(XtDisplay(w));
       XtCallCallbacks (w, XtNrelease, NULL);
     }
}


static void ToggleRelease(w,event)
Widget w;
XEvent *event;

{
   XwPushButtonWidget pb = (XwPushButtonWidget) w;

   pb->button.set = FALSE;

   RedrawButtonFace (w, event, FALSE);
   XFlush(XtDisplay(w));
   XtCallCallbacks (w, XtNrelease, NULL);
}



/*************************************<->*************************************
 *
 *  Initialize 
 *
 *   Description:
 *   -----------
 *    If the core height and width fields are set to 0, treat that as a flag
 *    and compute the optimum size for this button.  Then using what ever
 *    the core fields are set to, compute the text placement fields.
 *    Make sure that the label location field is properly set for the
 *    Resize call.
 *
 *
 *   Inputs:
 *   ------
 *     request		=	request widget, old data.
 *
 *     new		=	new widget, new data; cumulative effect
 *				of initialize procedures.
 *
 *   Outputs:
 *   -------
 *
 *   Procedures Called
 *   -----------------
 *
 *************************************<->***********************************/
static void Initialize (request, new)
Widget request, new;

{
   XwPushButtonWidget pb = (XwPushButtonWidget) new;

   /******************************************************************** 
       Needed width:
        2 * highlight thickness
        2 * button overhead: 2 lines for button outline
        2 * internal width (padding between label and button)
        width of label

      Needed height:
       2 * highlight thickness
       2 * button overhead: 2 lines for outline
       2 * internal height (padding)
       label height
    
    ************************************************************************/

   if (request->core.width == 0)  pb->core.width =  pb->button.label_width +
	      2 * ( pb->button.internal_width +    /* white space */
		     pb->primitive.highlight_thickness + PB_BW);
    
   if (request->core.height == 0) pb->core.height = pb->button.label_height + 
       2 * (pb->button.internal_height + pb->primitive.highlight_thickness + PB_BW);
    
   Resize(new);
}



/*************************************<->*************************************
 *
 *  ClassInitialize
 *
 *   Description:
 *   -----------
 *    Set fields in primitive class part of our class record so that
 *    the traversal code can invoke our button select procedures.
 *
 *************************************<->***********************************/

static void ClassInitialize()
{
   XwpushButtonClassRec.primitive_class.select_proc =  (XwEventProc) Select;
   XwpushButtonClassRec.primitive_class.release_proc = (XwEventProc) ToggleRelease;
   XwpushButtonClassRec.primitive_class.toggle_proc =  (XwEventProc) Toggle;
}



/*************************************<->*************************************
 *
 *  Redisplay (w, event, region)
 *
 *   Description:
 *   -----------
 *     Cause the widget, identified by w, to be redisplayed.
 *
 *
 *   Inputs:
 *   ------
 *     w = widget to be redisplayed;
 *     event = event structure identifying need for redisplay on this
 *             widget.
 * 
 *   Outputs:
 *   -------
 *
 *   Procedures Called
 *   -----------------
 *   XDrawString()
 *************************************<->***********************************/

static void Redisplay (w, event, region)
Widget w;
XEvent *event;
Region region;

{
    RedrawButtonFace (w, event, TRUE);
}


static void RedrawButtonFace (w, event, all)
XwPushButtonWidget w;
XEvent *event;
Boolean all;

{
   register XwPushButtonWidget pb = (XwPushButtonWidget) w;
   int available_height, available_width;
   Boolean clipHeight, clipWidth;

   /* COMPUTE SPACE AVAILABLE FOR DRAWING LABEL */

   available_width = Max(0,(int)pb->core.width - 2*((int)pb->button.internal_width + pb->primitive.highlight_thickness + PB_BW));

   available_height = Max(0, (int)pb->core.height - 2*((int)pb->button.internal_height + pb->primitive.highlight_thickness + PB_BW));


   
   /* SEE IF WE NEED TO CLIP THIS LABEL ON TOP AND/OR BOTTOM */

   if (pb->button.label_width > available_width)
       clipWidth = True;
   else 
       clipWidth = False;


   if (pb->button.label_height > available_height)
       clipHeight = True;
   else 
       clipHeight = False;



   /* COMPUTE & DRAW PUSHBUTTON */



   /* COMPUTE x LOCATION FOR STRING & DRAW STRING                    */
    XFillRectangle (XtDisplay(w), XtWindow(w),
		         ((pb->button.set
                          )
                                     ? pb->button.normal_GC
		                     : pb->button.inverse_GC),
                      w -> primitive.highlight_thickness + 1 + PB_BW,
                      w -> primitive.highlight_thickness + 1 + PB_BW,
                      w->core.width- 2 * (w->primitive.highlight_thickness
                                          + 1 + PB_BW),
                      w->core.height- 2 * (w->primitive.highlight_thickness
                                          + 1 + PB_BW));

   if (pb->button.label_len > 0)
   {
      XDrawString(XtDisplay(w), XtWindow(w),
		   ((pb->button.set
                    )
                                     ? pb->button.inverse_GC
		                     : pb->button.normal_GC),
                   (((int)pb->core.width + 1 - pb->button.label_width) / 2),
	            pb->button.label_y,  pb->button.label, 
		    pb->button.label_len);


     if (clipWidth)
       {
         XClearArea (XtDisplay(w), XtWindow(w), 0,0,
		     (pb->primitive.highlight_thickness + PB_BW +
		       pb->button.internal_width), pb->core.height, FALSE);

         XClearArea (XtDisplay(w), XtWindow(w), 
		     ((int)pb->core.width - pb->primitive.highlight_thickness -
		       PB_BW - (int)pb->button.internal_width),0,
		     (pb->primitive.highlight_thickness + PB_BW +
		       pb->button.internal_width), pb->core.height, FALSE);
       }
   
     if (clipHeight)
       {
         XClearArea (XtDisplay(w), XtWindow(w), 0,0, pb->core.width, 
		     (pb->primitive.highlight_thickness + PB_BW +
		       pb->button.internal_height), FALSE);
         XClearArea (XtDisplay(w), XtWindow(w), 0,
		     ((int)pb->core.height - pb->primitive.highlight_thickness -
		       PB_BW - (int)pb->button.internal_height), pb->core.width,
		     (pb->primitive.highlight_thickness + PB_BW +
		       pb->button.internal_height), FALSE);
       }
   }


   _XwDrawBox (XtDisplay (w), XtWindow (w), 
                  w -> button.normal_GC, PB_BW,
                  w -> primitive.highlight_thickness,
                  w -> primitive.highlight_thickness,
                  w->core.width - 2 * w->primitive.highlight_thickness,
                  w->core.height - 2 * w->primitive.highlight_thickness);



   /*  
    * Draw traversal/enter highlight if actual exposure or
    * if we had to clip text area
    */

   if (all || clipWidth || clipHeight) 
   {
      if (pb->primitive.highlighted)
         _XwHighlightBorder(w);
      else if (pb->primitive.display_highlighted) 
         _XwUnhighlightBorder(w);
   }
}



/*************************************<->*************************************
 *
 *  SetValues(current, request, new)
 *
 *   Description:
 *   -----------
 *     This is the set values procedure for the pushbutton class.  It is
 *     called last (the set values rtnes for its superclasses are called
 *     first).
 *
 *
 *   Inputs:
 *   ------
 *    current = original widget;
 *    request = copy of current (?);
 *    new = copy of request which reflects changes made to it by
 *          set values procedures of its superclasses;
 *    last = TRUE if this is the last set values procedure to be called.
 * 
 *   Outputs:
 *   -------
 *
 *   Procedures Called
 *   -----------------
 *
 *************************************<->***********************************/

static Boolean SetValues(current, request, new)
Widget current, request, new;

{
    XtWidgetGeometry	reqGeo;
    XwPushButtonWidget curpb = (XwPushButtonWidget) current;
    XwPushButtonWidget newpb = (XwPushButtonWidget) new;
    Boolean  flag = FALSE;    /* our return value */
    
    
    /**********************************************************************
     * Calculate the window size:  The assumption here is that if
     * the width and height are the same in the new and current instance
     * record that those fields were not changed with set values.  Therefore
     * its okay to recompute the necessary width and height.  However, if
     * the new and current do have different width/heights then leave them
     * alone because that's what the user wants.
     *********************************************************************/
    if ((curpb->core.width == newpb->core.width) &&
         (_XwRecomputeSize(current, new)))
     {
	newpb->core.width =
	    newpb->button.label_width + 2*(newpb->button.internal_width +
     		    newpb->primitive.highlight_thickness + PB_BW);
	flag = TRUE;
     }

    if ((curpb->core.height == newpb->core.height) &&
         (_XwRecomputeSize(current, new)))
     {
	newpb->core.height =
	    newpb->button.label_height + 2*(newpb->button.internal_height +
     		    newpb->primitive.highlight_thickness + PB_BW);
	flag = TRUE;
     }

   return(flag);
}




/*************************************<->*************************************
 *
 *  Resize(w)
 *
 *   Description:
 *   -----------
 *     Recompute location of button text
 *
 *   Inputs:
 *   ------
 *     w  = widget to be resized.
 * 
 *
 *************************************<->***********************************/


static void Resize(w)
    Widget w;
{
    XwPushButtonWidget pb = (XwPushButtonWidget) w;

    pb->button.label_x = ((int)pb->core.width + 1 - pb->button.label_width) / 2;

    pb->button.label_y =
       ((int)pb->core.height - pb->button.label_height) / 2
	+ pb->button.font->max_bounds.ascent;
}