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
|
/***********************************************************
Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
Copyright 1992, 1993 by Kaleb Keithley
All Rights Reserved
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 Digital, MIT, or Kaleb
Keithley not be used in advertising or publicity pertaining to distribution
of the software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
#include <X11/Xaw3d/Xaw3dP.h>
#include <X11/Xlib.h>
#include <X11/StringDefs.h>
#include <X11/IntrinsicP.h>
#include <X11/Xaw3d/XawInit.h>
#include <X11/Xaw3d/ThreeDP.h>
#include <X11/Xaw3d/SimpleMenP.h>
#include <X11/Xaw3d/SmeThreeDP.h>
#include <X11/Xosdefs.h>
/* Initialization of defaults */
#define XtNtopShadowPixmap "topShadowPixmap"
#define XtCTopShadowPixmap "TopShadowPixmap"
#define XtNbottomShadowPixmap "bottomShadowPixmap"
#define XtCBottomShadowPixmap "BottomShadowPixmap"
#define XtNshadowed "shadowed"
#define XtCShadowed "Shadowed"
#define offset(field) XtOffsetOf(SmeThreeDRec, field)
static XtResource resources[] = {
{XtNshadowWidth, XtCShadowWidth, XtRDimension, sizeof(Dimension),
offset(sme_threeD.shadow_width), XtRImmediate, (XtPointer) 2},
{XtNtopShadowPixel, XtCTopShadowPixel, XtRPixel, sizeof(Pixel),
offset(sme_threeD.top_shadow_pixel), XtRString, XtDefaultForeground},
{XtNbottomShadowPixel, XtCBottomShadowPixel, XtRPixel, sizeof(Pixel),
offset(sme_threeD.bot_shadow_pixel), XtRString, XtDefaultForeground},
{XtNtopShadowPixmap, XtCTopShadowPixmap, XtRPixmap, sizeof(Pixmap),
offset(sme_threeD.top_shadow_pxmap), XtRImmediate, (XtPointer) NULL},
{XtNbottomShadowPixmap, XtCBottomShadowPixmap, XtRPixmap, sizeof(Pixmap),
offset(sme_threeD.bot_shadow_pxmap), XtRImmediate, (XtPointer) NULL},
{XtNtopShadowContrast, XtCTopShadowContrast, XtRInt, sizeof(int),
offset(sme_threeD.top_shadow_contrast), XtRImmediate, (XtPointer) 20},
{XtNbottomShadowContrast, XtCBottomShadowContrast, XtRInt, sizeof(int),
offset(sme_threeD.bot_shadow_contrast), XtRImmediate, (XtPointer) 40},
{XtNuserData, XtCUserData, XtRPointer, sizeof(XtPointer),
offset(sme_threeD.user_data), XtRPointer, (XtPointer) NULL},
{XtNbeNiceToColormap, XtCBeNiceToColormap, XtRBoolean, sizeof(Boolean),
offset(sme_threeD.be_nice_to_cmap), XtRImmediate, (XtPointer) True},
{XtNshadowed, XtCShadowed, XtRBoolean, sizeof(Boolean),
offset(sme_threeD.shadowed), XtRImmediate, (XtPointer) False},
{XtNborderWidth, XtCBorderWidth, XtRDimension, sizeof(Dimension),
XtOffsetOf(RectObjRec,rectangle.border_width), XtRImmediate,
(XtPointer)0}
};
#undef offset
static void Initialize(Widget, Widget, ArgList, Cardinal *);
static void Destroy(Widget);
static void ClassPartInitialize(WidgetClass);
static void _XawSme3dDrawShadows(Widget);
static Boolean SetValues(Widget, Widget, Widget, ArgList, Cardinal *);
SmeThreeDClassRec smeThreeDClassRec = {
{ /* core fields */
/* superclass */ (WidgetClass) &smeClassRec,
/* class_name */ "SmeThreeD",
/* widget_size */ sizeof(SmeThreeDRec),
/* class_initialize */ NULL,
/* class_part_initialize */ ClassPartInitialize,
/* class_inited */ FALSE,
/* initialize */ Initialize,
/* initialize_hook */ NULL,
/* realize */ NULL,
/* actions */ NULL,
/* num_actions */ 0,
/* resources */ resources,
/* resource_count */ XtNumber(resources),
/* xrm_class */ NULLQUARK,
/* compress_motion */ TRUE,
/* compress_exposure */ TRUE,
/* compress_enterleave */ TRUE,
/* visible_interest */ FALSE,
/* destroy */ Destroy,
/* resize */ XtInheritResize,
/* expose */ NULL,
/* 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 */ NULL,
/* query_geometry */ XtInheritQueryGeometry,
/* display_accelerator */ NULL,
/* extension */ NULL
},
{ /* Menu Entry fields */
/* highlight */ XtInheritHighlight,
/* unhighlight */ XtInheritUnhighlight,
/* notify */ XtInheritNotify,
/* extension */ NULL
},
{ /* threeD fields */
/* shadow draw */ _XawSme3dDrawShadows
}
};
WidgetClass smeThreeDObjectClass = (WidgetClass) &smeThreeDClassRec;
/****************************************************************
*
* Private Procedures
*
****************************************************************/
#define shadowpm_width 8
#define shadowpm_height 8
static char shadowpm_bits[] = {
0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55};
static char mtshadowpm_bits[] = {
0x92, 0x24, 0x49, 0x92, 0x24, 0x49, 0x92, 0x24};
static char mbshadowpm_bits[] = {
0x6d, 0xdb, 0xb6, 0x6d, 0xdb, 0xb6, 0x6d, 0xdb};
/* ARGSUSED */
static void
AllocTopShadowGC (Widget w)
{
SmeThreeDObject tdo = (SmeThreeDObject) w;
Screen *scn = XtScreenOfObject (w);
XtGCMask valuemask;
XGCValues myXGCV;
if (tdo->sme_threeD.be_nice_to_cmap || DefaultDepthOfScreen (scn) == 1) {
valuemask = GCTile | GCFillStyle;
myXGCV.tile = tdo->sme_threeD.top_shadow_pxmap;
myXGCV.fill_style = FillTiled;
} else {
valuemask = GCForeground;
myXGCV.foreground = tdo->sme_threeD.top_shadow_pixel;
}
tdo->sme_threeD.top_shadow_GC = XtGetGC(w, valuemask, &myXGCV);
}
/* ARGSUSED */
static void
AllocBotShadowGC (Widget w)
{
SmeThreeDObject tdo = (SmeThreeDObject) w;
Screen *scn = XtScreenOfObject (w);
XtGCMask valuemask;
XGCValues myXGCV;
if (tdo->sme_threeD.be_nice_to_cmap || DefaultDepthOfScreen (scn) == 1) {
valuemask = GCTile | GCFillStyle;
myXGCV.tile = tdo->sme_threeD.bot_shadow_pxmap;
myXGCV.fill_style = FillTiled;
} else {
valuemask = GCForeground;
myXGCV.foreground = tdo->sme_threeD.bot_shadow_pixel;
}
tdo->sme_threeD.bot_shadow_GC = XtGetGC(w, valuemask, &myXGCV);
}
/* ARGSUSED */
static void
AllocEraseGC (Widget w)
{
Widget parent = XtParent (w);
SmeThreeDObject tdo = (SmeThreeDObject) w;
XtGCMask valuemask;
XGCValues myXGCV;
valuemask = GCForeground;
myXGCV.foreground = parent->core.background_pixel;
tdo->sme_threeD.erase_GC = XtGetGC(w, valuemask, &myXGCV);
}
/* ARGSUSED */
static void
AllocTopShadowPixmap (Widget new)
{
SmeThreeDObject tdo = (SmeThreeDObject) new;
Widget parent = XtParent (new);
Display *dpy = XtDisplayOfObject (new);
Screen *scn = XtScreenOfObject (new);
unsigned long top_fg_pixel = 0, top_bg_pixel = 0;
char *pm_data;
Boolean create_pixmap = FALSE;
/*
* I know, we're going to create two pixmaps for each and every
* shadow'd widget. Yeuck. I'm semi-relying on server side
* pixmap cacheing.
*/
if (DefaultDepthOfScreen (scn) == 1) {
top_fg_pixel = BlackPixelOfScreen (scn);
top_bg_pixel = WhitePixelOfScreen (scn);
pm_data = mtshadowpm_bits;
create_pixmap = TRUE;
} else if (tdo->sme_threeD.be_nice_to_cmap) {
if (parent->core.background_pixel == WhitePixelOfScreen (scn)) {
top_fg_pixel = WhitePixelOfScreen (scn);
top_bg_pixel = grayPixel( BlackPixelOfScreen (scn), dpy, scn);
} else if (parent->core.background_pixel == BlackPixelOfScreen (scn)) {
top_fg_pixel = grayPixel( BlackPixelOfScreen (scn), dpy, scn);
top_bg_pixel = WhitePixelOfScreen (scn);
} else {
top_fg_pixel = parent->core.background_pixel;
top_bg_pixel = WhitePixelOfScreen (scn);
}
#ifndef XAW_GRAY_BLKWHT_STIPPLES
if (parent->core.background_pixel == WhitePixelOfScreen (scn) ||
parent->core.background_pixel == BlackPixelOfScreen (scn)) {
pm_data = mtshadowpm_bits;
} else
#endif
pm_data = shadowpm_bits;
create_pixmap = TRUE;
}
if (create_pixmap)
tdo->sme_threeD.top_shadow_pxmap = XCreatePixmapFromBitmapData (dpy,
RootWindowOfScreen (scn),
pm_data,
shadowpm_width,
shadowpm_height,
top_fg_pixel,
top_bg_pixel,
DefaultDepthOfScreen (scn));
}
/* ARGSUSED */
static void
AllocBotShadowPixmap (Widget new)
{
SmeThreeDObject tdo = (SmeThreeDObject) new;
Widget parent = XtParent (new);
Display *dpy = XtDisplayOfObject (new);
Screen *scn = XtScreenOfObject (new);
unsigned long bot_fg_pixel = 0, bot_bg_pixel = 0;
char *pm_data;
Boolean create_pixmap = FALSE;
if (DefaultDepthOfScreen (scn) == 1) {
bot_fg_pixel = BlackPixelOfScreen (scn);
bot_bg_pixel = WhitePixelOfScreen (scn);
pm_data = mbshadowpm_bits;
create_pixmap = TRUE;
} else if (tdo->sme_threeD.be_nice_to_cmap) {
if (parent->core.background_pixel == WhitePixelOfScreen (scn)) {
bot_fg_pixel = grayPixel( WhitePixelOfScreen (scn), dpy, scn);
bot_bg_pixel = BlackPixelOfScreen (scn);
} else if (parent->core.background_pixel == BlackPixelOfScreen (scn)) {
bot_fg_pixel = BlackPixelOfScreen (scn);
bot_bg_pixel = grayPixel( BlackPixelOfScreen (scn), dpy, scn);
} else {
bot_fg_pixel = parent->core.background_pixel;
bot_bg_pixel = BlackPixelOfScreen (scn);
}
#ifndef XAW_GRAY_BLKWHT_STIPPLES
if (parent->core.background_pixel == WhitePixelOfScreen (scn) ||
parent->core.background_pixel == BlackPixelOfScreen (scn)) {
pm_data = mbshadowpm_bits;
} else
#endif
pm_data = shadowpm_bits;
create_pixmap = TRUE;
}
if (create_pixmap)
tdo->sme_threeD.bot_shadow_pxmap = XCreatePixmapFromBitmapData (dpy,
RootWindowOfScreen (scn),
pm_data,
shadowpm_width,
shadowpm_height,
bot_fg_pixel,
bot_bg_pixel,
DefaultDepthOfScreen (scn));
}
/* ARGSUSED */
void
XawSme3dComputeTopShadowRGB (Widget new, XColor *xcol_out)
{
if (XtIsSubclass (new, smeThreeDObjectClass)) {
SmeThreeDObject tdo = (SmeThreeDObject) new;
Widget w = XtParent (new);
XColor get_c;
double contrast;
Display *dpy = XtDisplayOfObject (new);
Screen *scn = XtScreenOfObject (new);
Colormap cmap = w->core.colormap;
get_c.pixel = w->core.background_pixel;
if (get_c.pixel == WhitePixelOfScreen (scn) ||
get_c.pixel == BlackPixelOfScreen (scn)) {
contrast = (100 - tdo->sme_threeD.top_shadow_contrast) / 100.0;
xcol_out->red = contrast * 65535.0;
xcol_out->green = contrast * 65535.0;
xcol_out->blue = contrast * 65535.0;
} else {
contrast = 1.0 + tdo->sme_threeD.top_shadow_contrast / 100.0;
XQueryColor (dpy, cmap, &get_c);
#define MIN(x,y) (unsigned short) (x < y) ? x : y
xcol_out->red = MIN (65535, (int) (contrast * (double) get_c.red));
xcol_out->green = MIN (65535, (int) (contrast * (double) get_c.green));
xcol_out->blue = MIN (65535, (int) (contrast * (double) get_c.blue));
#undef MIN
}
} else
xcol_out->red = xcol_out->green = xcol_out->blue = 0;
}
/* ARGSUSED */
static void
AllocTopShadowPixel (Widget new)
{
XColor set_c;
SmeThreeDObject tdo = (SmeThreeDObject) new;
Widget w = XtParent (new);
Display *dpy = XtDisplayOfObject (new);
Colormap cmap = w->core.colormap;
XawSme3dComputeTopShadowRGB (new, &set_c);
(void) XAllocColor (dpy, cmap, &set_c);
tdo->sme_threeD.top_shadow_pixel = set_c.pixel;
}
/* ARGSUSED */
void
XawSme3dComputeBottomShadowRGB (Widget new, XColor *xcol_out)
{
if (XtIsSubclass (new, smeThreeDObjectClass)) {
SmeThreeDObject tdo = (SmeThreeDObject) new;
Widget w = XtParent (new);
XColor get_c;
double contrast;
Display *dpy = XtDisplayOfObject (new);
Screen *scn = XtScreenOfObject (new);
Colormap cmap = w->core.colormap;
get_c.pixel = w->core.background_pixel;
if (get_c.pixel == WhitePixelOfScreen (scn) ||
get_c.pixel == BlackPixelOfScreen (scn)) {
contrast = tdo->sme_threeD.bot_shadow_contrast / 100.0;
xcol_out->red = contrast * 65535.0;
xcol_out->green = contrast * 65535.0;
xcol_out->blue = contrast * 65535.0;
} else {
XQueryColor (dpy, cmap, &get_c);
contrast = (100 - tdo->sme_threeD.bot_shadow_contrast) / 100.0;
xcol_out->red = contrast * get_c.red;
xcol_out->green = contrast * get_c.green;
xcol_out->blue = contrast * get_c.blue;
}
} else
xcol_out->red = xcol_out->green = xcol_out->blue = 0;
}
/* ARGSUSED */
static void
AllocBotShadowPixel (Widget new)
{
XColor set_c;
SmeThreeDObject tdo = (SmeThreeDObject) new;
Widget w = XtParent (new);
Display *dpy = XtDisplayOfObject (new);
Colormap cmap = w->core.colormap;
XawSme3dComputeBottomShadowRGB (new, &set_c);
(void) XAllocColor (dpy, cmap, &set_c);
tdo->sme_threeD.bot_shadow_pixel = set_c.pixel;
}
/* ARGSUSED */
static void
ClassPartInitialize (WidgetClass wc)
{
SmeThreeDClassRec *tdwc = (SmeThreeDClassRec *) wc;
SmeThreeDClassRec *super =
(SmeThreeDClassRec *) tdwc->rect_class.superclass;
if (tdwc->sme_threeD_class.shadowdraw == XtInheritXawSme3dShadowDraw)
tdwc->sme_threeD_class.shadowdraw = super->sme_threeD_class.shadowdraw;
}
/* ARGSUSED */
static void
Initialize (Widget request, Widget new, ArgList args, Cardinal *num_args)
{
SmeThreeDObject w = (SmeThreeDObject) new;
Screen *scr = XtScreenOfObject (new);
if (w->sme_threeD.be_nice_to_cmap || DefaultDepthOfScreen (scr) == 1) {
AllocTopShadowPixmap (new);
AllocBotShadowPixmap (new);
} else {
if (w->sme_threeD.top_shadow_pixel == w->sme_threeD.bot_shadow_pixel) {
AllocTopShadowPixel (new);
AllocBotShadowPixel (new);
}
w->sme_threeD.top_shadow_pxmap = w->sme_threeD.bot_shadow_pxmap = 0;
}
AllocTopShadowGC (new);
AllocBotShadowGC (new);
AllocEraseGC (new);
}
static void
Destroy (Widget gw)
{
SmeThreeDObject w = (SmeThreeDObject) gw;
XtReleaseGC (gw, w->sme_threeD.top_shadow_GC);
XtReleaseGC (gw, w->sme_threeD.bot_shadow_GC);
XtReleaseGC (gw, w->sme_threeD.erase_GC);
if (w->sme_threeD.top_shadow_pxmap)
XFreePixmap (XtDisplayOfObject (gw), w->sme_threeD.top_shadow_pxmap);
if (w->sme_threeD.bot_shadow_pxmap)
XFreePixmap (XtDisplayOfObject (gw), w->sme_threeD.bot_shadow_pxmap);
}
/* ARGSUSED */
static Boolean
SetValues (Widget gcurrent, Widget grequest, Widget gnew, ArgList args, Cardinal *num_args)
{
SmeThreeDObject current = (SmeThreeDObject) gcurrent;
SmeThreeDObject new = (SmeThreeDObject) gnew;
Boolean redisplay = FALSE;
Boolean alloc_top_pixel = FALSE;
Boolean alloc_bot_pixel = FALSE;
Boolean alloc_top_pixmap = FALSE;
Boolean alloc_bot_pixmap = FALSE;
#if 0
(*threeDWidgetClass->core_class.superclass->core_class.set_values)
(gcurrent, grequest, gnew, NULL, 0);
#endif
if (new->sme_threeD.shadow_width != current->sme_threeD.shadow_width)
redisplay = TRUE;
if (new->sme_threeD.be_nice_to_cmap != current->sme_threeD.be_nice_to_cmap) {
if (new->sme_threeD.be_nice_to_cmap) {
alloc_top_pixmap = TRUE;
alloc_bot_pixmap = TRUE;
} else {
alloc_top_pixel = TRUE;
alloc_bot_pixel = TRUE;
}
redisplay = TRUE;
}
if (!new->sme_threeD.be_nice_to_cmap &&
new->sme_threeD.top_shadow_contrast != current->sme_threeD.top_shadow_contrast)
alloc_top_pixel = TRUE;
if (!new->sme_threeD.be_nice_to_cmap &&
new->sme_threeD.bot_shadow_contrast != current->sme_threeD.bot_shadow_contrast)
alloc_bot_pixel = TRUE;
if (alloc_top_pixel)
AllocTopShadowPixel (gnew);
if (alloc_bot_pixel)
AllocBotShadowPixel (gnew);
if (alloc_top_pixmap)
AllocTopShadowPixmap (gnew);
if (alloc_bot_pixmap)
AllocBotShadowPixmap (gnew);
if (!new->sme_threeD.be_nice_to_cmap &&
new->sme_threeD.top_shadow_pixel != current->sme_threeD.top_shadow_pixel)
alloc_top_pixel = TRUE;
if (!new->sme_threeD.be_nice_to_cmap &&
new->sme_threeD.bot_shadow_pixel != current->sme_threeD.bot_shadow_pixel)
alloc_bot_pixel = TRUE;
if (new->sme_threeD.be_nice_to_cmap) {
if (alloc_top_pixmap) {
XtReleaseGC (gcurrent, current->sme_threeD.top_shadow_GC);
AllocTopShadowGC (gnew);
redisplay = True;
}
if (alloc_bot_pixmap) {
XtReleaseGC (gcurrent, current->sme_threeD.bot_shadow_GC);
AllocBotShadowGC (gnew);
redisplay = True;
}
} else {
if (alloc_top_pixel) {
if (new->sme_threeD.top_shadow_pxmap) {
XFreePixmap (XtDisplayOfObject (gnew), new->sme_threeD.top_shadow_pxmap);
new->sme_threeD.top_shadow_pxmap = (Pixmap) NULL;
}
XtReleaseGC (gcurrent, current->sme_threeD.top_shadow_GC);
AllocTopShadowGC (gnew);
redisplay = True;
}
if (alloc_bot_pixel) {
if (new->sme_threeD.bot_shadow_pxmap) {
XFreePixmap (XtDisplayOfObject (gnew), new->sme_threeD.bot_shadow_pxmap);
new->sme_threeD.bot_shadow_pxmap = (Pixmap) NULL;
}
XtReleaseGC (gcurrent, current->sme_threeD.bot_shadow_GC);
AllocBotShadowGC (gnew);
redisplay = True;
}
}
return (redisplay);
}
/* ARGSUSED */
static void
_XawSme3dDrawShadows(Widget gw)
{
SmeThreeDObject tdo = (SmeThreeDObject) gw;
SimpleMenuWidget smw = (SimpleMenuWidget) XtParent(gw);
ThreeDWidget tdw = (ThreeDWidget) smw->simple_menu.threeD;
Dimension s = tdo->sme_threeD.shadow_width;
Dimension ps = tdw->threeD.shadow_width;
XPoint pt[6];
/*
* draw the shadows using the core part width and height,
* and the threeD part shadow_width.
*
* no point to do anything if the shadow_width is 0 or the
* widget has not been realized.
*/
if (s > 0 && XtIsRealized(gw))
{
Dimension h = tdo->rectangle.height;
Dimension w = tdo->rectangle.width - ps;
Dimension x = tdo->rectangle.x + ps;
Dimension y = tdo->rectangle.y;
Display *dpy = XtDisplayOfObject(gw);
Window win = XtWindowOfObject(gw);
GC top, bot;
if (tdo->sme_threeD.shadowed)
{
top = tdo->sme_threeD.top_shadow_GC;
bot = tdo->sme_threeD.bot_shadow_GC;
}
else
top = bot = tdo->sme_threeD.erase_GC;
/* top-left shadow */
pt[0].x = x; pt[0].y = y + h;
pt[1].x = x; pt[1].y = y;
pt[2].x = w; pt[2].y = y;
pt[3].x = w - s; pt[3].y = y + s;
pt[4].x = ps + s; pt[4].y = y + s;
pt[5].x = ps + s; pt[5].y = y + h - s;
XFillPolygon(dpy, win, top, pt, 6, Complex, CoordModeOrigin);
/* bottom-right shadow */
/* pt[0].x = x; pt[0].y = y + h; */
pt[1].x = w; pt[1].y = y + h;
/* pt[2].x = w; pt[2].y = y; */
/* pt[3].x = w - s; pt[3].y = y + s; */
pt[4].x = w - s; pt[4].y = y + h - s;
/* pt[5].x = ps + s; pt[5].y = y + h - s; */
XFillPolygon(dpy, win, bot, pt, 6, Complex, CoordModeOrigin);
}
}
|