1 /* Implements a lightweight menubar widget.
2 Copyright (C) 1992 Lucid, Inc.
4 This file is part of the Lucid Widget Library.
6 The Lucid Widget Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 The Lucid Widget Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Created by devin@lucid.com */
29 #include <sys/types.h>
31 #include <X11/IntrinsicP.h>
32 #include <X11/ObjectP.h>
33 #include <X11/StringDefs.h>
34 #include <X11/cursorfont.h>
35 #include <X11/bitmaps/gray>
38 static int pointer_grabbed
;
39 static XEvent menu_post_event
;
41 XFontStruct
*xlwmenu_default_font
;
44 xlwMenuTranslations
[] =
45 "<BtnDown>: start()\n\
48 <Key>Shift_L: nothing()\n\
49 <Key>Shift_R: nothing()\n\
50 <Key>Meta_L: nothing()\n\
51 <Key>Meta_R: nothing()\n\
52 <Key>Control_L: nothing()\n\
53 <Key>Control_R: nothing()\n\
54 <Key>Hyper_L: nothing()\n\
55 <Key>Hyper_R: nothing()\n\
56 <Key>Super_L: nothing()\n\
57 <Key>Super_R: nothing()\n\
58 <Key>Alt_L: nothing()\n\
59 <Key>Alt_R: nothing()\n\
60 <Key>Caps_Lock: nothing()\n\
61 <Key>Shift_Lock: nothing()\n\
62 <KeyUp>Shift_L: nothing()\n\
63 <KeyUp>Shift_R: nothing()\n\
64 <KeyUp>Meta_L: nothing()\n\
65 <KeyUp>Meta_R: nothing()\n\
66 <KeyUp>Control_L: nothing()\n\
67 <KeyUp>Control_R: nothing()\n\
68 <KeyUp>Hyper_L: nothing()\n\
69 <KeyUp>Hyper_R: nothing()\n\
70 <KeyUp>Super_L: nothing()\n\
71 <KeyUp>Super_R: nothing()\n\
72 <KeyUp>Alt_L: nothing()\n\
73 <KeyUp>Alt_R: nothing()\n\
74 <KeyUp>Caps_Lock: nothing()\n\
75 <KeyUp>Shift_Lock:nothing()\n\
80 #define offset(field) XtOffset(XlwMenuWidget, field)
84 {XtNfont
, XtCFont
, XtRFontStruct
, sizeof(XFontStruct
*),
85 offset(menu
.font
),XtRString
, "XtDefaultFont"},
86 {XtNforeground
, XtCForeground
, XtRPixel
, sizeof(Pixel
),
87 offset(menu
.foreground
), XtRString
, "XtDefaultForeground"},
88 {XtNbuttonForeground
, XtCButtonForeground
, XtRPixel
, sizeof(Pixel
),
89 offset(menu
.button_foreground
), XtRString
, "XtDefaultForeground"},
90 {XtNmargin
, XtCMargin
, XtRDimension
, sizeof(Dimension
),
91 offset(menu
.margin
), XtRImmediate
, (XtPointer
) 4},
92 {XtNhorizontalSpacing
, XtCMargin
, XtRDimension
, sizeof(Dimension
),
93 offset(menu
.horizontal_spacing
), XtRImmediate
, (XtPointer
)3},
94 {XtNverticalSpacing
, XtCMargin
, XtRDimension
, sizeof(Dimension
),
95 offset(menu
.vertical_spacing
), XtRImmediate
, (XtPointer
)1},
96 {XtNarrowSpacing
, XtCMargin
, XtRDimension
, sizeof(Dimension
),
97 offset(menu
.arrow_spacing
), XtRImmediate
, (XtPointer
)10},
99 {XmNshadowThickness
, XmCShadowThickness
, XtRDimension
,
100 sizeof (Dimension
), offset (menu
.shadow_thickness
),
101 XtRImmediate
, (XtPointer
) 2},
102 {XmNtopShadowColor
, XmCTopShadowColor
, XtRPixel
, sizeof (Pixel
),
103 offset (menu
.top_shadow_color
), XtRImmediate
, (XtPointer
)-1},
104 {XmNbottomShadowColor
, XmCBottomShadowColor
, XtRPixel
, sizeof (Pixel
),
105 offset (menu
.bottom_shadow_color
), XtRImmediate
, (XtPointer
)-1},
106 {XmNtopShadowPixmap
, XmCTopShadowPixmap
, XtRPixmap
, sizeof (Pixmap
),
107 offset (menu
.top_shadow_pixmap
), XtRImmediate
, (XtPointer
)None
},
108 {XmNbottomShadowPixmap
, XmCBottomShadowPixmap
, XtRPixmap
, sizeof (Pixmap
),
109 offset (menu
.bottom_shadow_pixmap
), XtRImmediate
, (XtPointer
)None
},
111 {XtNopen
, XtCCallback
, XtRCallback
, sizeof(XtPointer
),
112 offset(menu
.open
), XtRCallback
, (XtPointer
)NULL
},
113 {XtNselect
, XtCCallback
, XtRCallback
, sizeof(XtPointer
),
114 offset(menu
.select
), XtRCallback
, (XtPointer
)NULL
},
115 {XtNmenu
, XtCMenu
, XtRPointer
, sizeof(XtPointer
),
116 offset(menu
.contents
), XtRImmediate
, (XtPointer
)NULL
},
117 {XtNcursor
, XtCCursor
, XtRCursor
, sizeof(Cursor
),
118 offset(menu
.cursor_shape
), XtRString
, (XtPointer
)"right_ptr"},
119 {XtNhorizontal
, XtCHorizontal
, XtRInt
, sizeof(int),
120 offset(menu
.horizontal
), XtRImmediate
, (XtPointer
)True
},
124 static Boolean
XlwMenuSetValues();
125 static void XlwMenuRealize();
126 static void XlwMenuRedisplay();
127 static void XlwMenuResize();
128 static void XlwMenuInitialize();
129 static void XlwMenuRedisplay();
130 static void XlwMenuDestroy();
131 static void XlwMenuClassInitialize();
134 static void Select();
136 static void Nothing();
137 static int separator_height ();
140 xlwMenuActionsList
[] =
146 {"nothing", Nothing
},
149 #define SuperClass ((CoreWidgetClass)&coreClassRec)
151 XlwMenuClassRec xlwMenuClassRec
=
153 { /* CoreClass fields initialization */
154 (WidgetClass
) SuperClass
, /* superclass */
155 "XlwMenu", /* class_name */
156 sizeof(XlwMenuRec
), /* size */
157 XlwMenuClassInitialize
, /* class_initialize */
158 NULL
, /* class_part_initialize */
159 FALSE
, /* class_inited */
160 XlwMenuInitialize
, /* initialize */
161 NULL
, /* initialize_hook */
162 XlwMenuRealize
, /* realize */
163 xlwMenuActionsList
, /* actions */
164 XtNumber(xlwMenuActionsList
), /* num_actions */
165 xlwMenuResources
, /* resources */
166 XtNumber(xlwMenuResources
), /* resource_count */
167 NULLQUARK
, /* xrm_class */
168 TRUE
, /* compress_motion */
169 TRUE
, /* compress_exposure */
170 TRUE
, /* compress_enterleave */
171 FALSE
, /* visible_interest */
172 XlwMenuDestroy
, /* destroy */
173 XlwMenuResize
, /* resize */
174 XlwMenuRedisplay
, /* expose */
175 XlwMenuSetValues
, /* set_values */
176 NULL
, /* set_values_hook */
177 XtInheritSetValuesAlmost
, /* set_values_almost */
178 NULL
, /* get_values_hook */
179 NULL
, /* accept_focus */
180 XtVersion
, /* version */
181 NULL
, /* callback_private */
182 xlwMenuTranslations
, /* tm_table */
183 XtInheritQueryGeometry
, /* query_geometry */
184 XtInheritDisplayAccelerator
, /* display_accelerator */
186 }, /* XlwMenuClass fields initialization */
192 WidgetClass xlwMenuWidgetClass
= (WidgetClass
) &xlwMenuClassRec
;
194 int submenu_destroyed
;
196 static int next_release_must_exit
;
201 /* Like abort, but remove grabs from widget W before. */
207 if (XtIsShell (XtParent (w
)))
209 XtUngrabPointer (w
, CurrentTime
);
214 push_new_stack (mw
, val
)
218 if (!mw
->menu
.new_stack
)
220 mw
->menu
.new_stack_length
= 10;
222 (widget_value
**)XtCalloc (mw
->menu
.new_stack_length
,
223 sizeof (widget_value
*));
225 else if (mw
->menu
.new_depth
== mw
->menu
.new_stack_length
)
227 mw
->menu
.new_stack_length
*= 2;
229 (widget_value
**)XtRealloc ((char*)mw
->menu
.new_stack
,
230 mw
->menu
.new_stack_length
* sizeof (widget_value
*));
232 mw
->menu
.new_stack
[mw
->menu
.new_depth
++] = val
;
236 pop_new_stack_if_no_contents (mw
)
239 if (mw
->menu
.new_depth
)
241 if (!mw
->menu
.new_stack
[mw
->menu
.new_depth
- 1]->contents
)
242 mw
->menu
.new_depth
-= 1;
247 make_old_stack_space (mw
, n
)
251 if (!mw
->menu
.old_stack
)
253 mw
->menu
.old_stack_length
= 10;
255 (widget_value
**)XtCalloc (mw
->menu
.old_stack_length
,
256 sizeof (widget_value
*));
258 else if (mw
->menu
.old_stack_length
< n
)
260 mw
->menu
.old_stack_length
*= 2;
262 (widget_value
**)XtRealloc ((char*)mw
->menu
.old_stack
,
263 mw
->menu
.old_stack_length
* sizeof (widget_value
*));
276 XTextExtents (mw
->menu
.font
, s
, strlen (s
), &drop
, &drop
, &drop
, &xcs
);
284 return (mw
->menu
.font
->ascent
* 3/4) | 1;
287 /* Return the width of toggle buttons of widget MW. */
290 toggle_button_width (mw
)
293 return ((mw
->menu
.font
->ascent
+ mw
->menu
.font
->descent
) * 2 / 3) | 1;
297 /* Return the width of radio buttons of widget MW. */
300 radio_button_width (mw
)
303 return toggle_button_width (mw
) * 1.41;
310 {"labelString", "LabelString", XtRString
, sizeof(String
),
315 resource_widget_value (mw
, val
)
319 if (!val
->toolkit_data
)
321 char* resourced_name
= NULL
;
323 XtGetSubresources ((Widget
) mw
,
324 (XtPointer
) &resourced_name
,
325 val
->name
, val
->name
,
326 nameResource
, 1, NULL
, 0);
328 resourced_name
= val
->name
;
331 complete_name
= (char *) XtMalloc (strlen (resourced_name
) + 1);
332 strcpy (complete_name
, resourced_name
);
336 int complete_length
=
337 strlen (resourced_name
) + strlen (val
->value
) + 2;
338 complete_name
= XtMalloc (complete_length
);
340 strcat (complete_name
, resourced_name
);
341 strcat (complete_name
, " ");
342 strcat (complete_name
, val
->value
);
345 val
->toolkit_data
= complete_name
;
346 val
->free_toolkit_data
= True
;
348 return (char*)val
->toolkit_data
;
351 /* Returns the sizes of an item */
353 size_menu_item (mw
, val
, horizontal_p
, label_width
, rest_width
, button_width
,
363 enum menu_separator separator
;
365 if (lw_separator_p (val
->name
, &separator
, 0))
367 *height
= separator_height (separator
);
375 mw
->menu
.font
->ascent
+ mw
->menu
.font
->descent
376 + 2 * mw
->menu
.vertical_spacing
+ 2 * mw
->menu
.shadow_thickness
;
379 string_width (mw
, resource_widget_value (mw
, val
))
380 + mw
->menu
.horizontal_spacing
+ mw
->menu
.shadow_thickness
;
382 *rest_width
= mw
->menu
.horizontal_spacing
+ mw
->menu
.shadow_thickness
;
386 /* Add width of the arrow displayed for submenus. */
387 *rest_width
+= arrow_width (mw
) + mw
->menu
.arrow_spacing
;
389 /* Add width of key equivalent string. */
390 *rest_width
+= (string_width (mw
, val
->key
)
391 + mw
->menu
.arrow_spacing
);
393 if (val
->button_type
== BUTTON_TYPE_TOGGLE
)
394 *button_width
= (toggle_button_width (mw
)
395 + mw
->menu
.horizontal_spacing
);
396 else if (val
->button_type
== BUTTON_TYPE_RADIO
)
397 *button_width
= (radio_button_width (mw
)
398 + mw
->menu
.horizontal_spacing
);
404 size_menu (mw
, level
)
408 unsigned int label_width
= 0;
410 int button_width
= 0;
411 int max_rest_width
= 0;
412 int max_button_width
= 0;
413 unsigned int height
= 0;
414 int horizontal_p
= mw
->menu
.horizontal
&& (level
== 0);
418 if (level
>= mw
->menu
.old_depth
)
419 abort_gracefully ((Widget
) mw
);
421 ws
= &mw
->menu
.windows
[level
];
425 ws
->button_width
= 0;
427 for (val
= mw
->menu
.old_stack
[level
]->contents
; val
; val
= val
->next
)
429 size_menu_item (mw
, val
, horizontal_p
, &label_width
, &rest_width
,
430 &button_width
, &height
);
433 ws
->width
+= label_width
+ rest_width
;
434 if (height
> ws
->height
)
439 if (label_width
> ws
->label_width
)
440 ws
->label_width
= label_width
;
441 if (rest_width
> max_rest_width
)
442 max_rest_width
= rest_width
;
443 if (button_width
> max_button_width
)
444 max_button_width
= button_width
;
445 ws
->height
+= height
;
450 ws
->label_width
= ws
->button_width
= 0;
453 ws
->width
= ws
->label_width
+ max_rest_width
+ max_button_width
;
454 ws
->button_width
= max_button_width
;
457 ws
->width
+= 2 * mw
->menu
.shadow_thickness
;
458 ws
->height
+= 2 * mw
->menu
.shadow_thickness
;
462 ws
->width
+= 2 * mw
->menu
.margin
;
463 ws
->height
+= 2 * mw
->menu
.margin
;
471 draw_arrow (mw
, window
, gc
, x
, y
, width
, down_p
)
480 Display
*dpy
= XtDisplay (mw
);
481 GC top_gc
= mw
->menu
.shadow_top_gc
;
482 GC bottom_gc
= mw
->menu
.shadow_bottom_gc
;
483 int thickness
= mw
->menu
.shadow_thickness
;
486 /* alpha = atan (0.5)
487 factor = (1 + sin (alpha)) / cos (alpha) */
488 double factor
= 1.62;
489 int thickness2
= thickness
* factor
;
491 y
+= (mw
->menu
.font
->ascent
+ mw
->menu
.font
->descent
- height
) / 2;
502 pt
[0].y
= y
+ height
;
503 pt
[1].x
= x
+ thickness
;
504 pt
[1].y
= y
+ height
- thickness2
;
505 pt
[2].x
= x
+ thickness2
;
506 pt
[2].y
= y
+ thickness2
;
509 XFillPolygon (dpy
, window
, top_gc
, pt
, 4, Convex
, CoordModeOrigin
);
513 pt
[1].x
= x
+ thickness
;
514 pt
[1].y
= y
+ thickness2
;
515 pt
[2].x
= x
+ width
- thickness2
;
516 pt
[2].y
= y
+ height
/ 2;
518 pt
[3].y
= y
+ height
/ 2;
519 XFillPolygon (dpy
, window
, top_gc
, pt
, 4, Convex
, CoordModeOrigin
);
522 pt
[0].y
= y
+ height
;
523 pt
[1].x
= x
+ thickness
;
524 pt
[1].y
= y
+ height
- thickness2
;
525 pt
[2].x
= x
+ width
- thickness2
;
526 pt
[2].y
= y
+ height
/ 2;
528 pt
[3].y
= y
+ height
/ 2;
529 XFillPolygon (dpy
, window
, bottom_gc
, pt
, 4, Convex
, CoordModeOrigin
);
535 draw_shadow_rectangle (mw
, window
, x
, y
, width
, height
, erase_p
, down_p
)
545 Display
*dpy
= XtDisplay (mw
);
546 GC top_gc
= !erase_p
? mw
->menu
.shadow_top_gc
: mw
->menu
.background_gc
;
547 GC bottom_gc
= !erase_p
? mw
->menu
.shadow_bottom_gc
: mw
->menu
.background_gc
;
548 int thickness
= mw
->menu
.shadow_thickness
;
551 if (!erase_p
&& down_p
)
561 points
[1].x
= x
+ width
;
563 points
[2].x
= x
+ width
- thickness
;
564 points
[2].y
= y
+ thickness
;
566 points
[3].y
= y
+ thickness
;
567 XFillPolygon (dpy
, window
, top_gc
, points
, 4, Convex
, CoordModeOrigin
);
569 points
[0].y
= y
+ thickness
;
571 points
[1].y
= y
+ height
;
572 points
[2].x
= x
+ thickness
;
573 points
[2].y
= y
+ height
- thickness
;
574 points
[3].x
= x
+ thickness
;
575 points
[3].y
= y
+ thickness
;
576 XFillPolygon (dpy
, window
, top_gc
, points
, 4, Convex
, CoordModeOrigin
);
577 points
[0].x
= x
+ width
;
579 points
[1].x
= x
+ width
- thickness
;
580 points
[1].y
= y
+ thickness
;
581 points
[2].x
= x
+ width
- thickness
;
582 points
[2].y
= y
+ height
- thickness
;
583 points
[3].x
= x
+ width
;
584 points
[3].y
= y
+ height
- thickness
;
585 XFillPolygon (dpy
, window
, bottom_gc
, points
, 4, Convex
, CoordModeOrigin
);
587 points
[0].y
= y
+ height
;
588 points
[1].x
= x
+ width
;
589 points
[1].y
= y
+ height
;
590 points
[2].x
= x
+ width
;
591 points
[2].y
= y
+ height
- thickness
;
592 points
[3].x
= x
+ thickness
;
593 points
[3].y
= y
+ height
- thickness
;
594 XFillPolygon (dpy
, window
, bottom_gc
, points
, 4, Convex
, CoordModeOrigin
);
599 draw_shadow_rhombus (mw
, window
, x
, y
, width
, height
, erase_p
, down_p
)
609 Display
*dpy
= XtDisplay (mw
);
610 GC top_gc
= !erase_p
? mw
->menu
.shadow_top_gc
: mw
->menu
.background_gc
;
611 GC bottom_gc
= !erase_p
? mw
->menu
.shadow_bottom_gc
: mw
->menu
.background_gc
;
612 int thickness
= mw
->menu
.shadow_thickness
;
614 double sqrt2
= 1.4142;
616 if (!erase_p
&& down_p
)
625 points
[0].y
= y
+ height
/ 2;
626 points
[1].x
= x
+ thickness
;
627 points
[1].y
= y
+ height
/ 2;
628 points
[2].x
= x
+ width
/ 2;
629 points
[2].y
= y
+ thickness
;
630 points
[3].x
= x
+ width
/ 2;
632 XFillPolygon (dpy
, window
, top_gc
, points
, 4, Convex
, CoordModeOrigin
);
633 points
[0].x
= x
+ width
/ 2;
635 points
[1].x
= x
+ width
/ 2;
636 points
[1].y
= y
+ thickness
;
637 points
[2].x
= x
+ width
- thickness
;
638 points
[2].y
= y
+ height
/ 2;
639 points
[3].x
= x
+ width
;
640 points
[3].y
= y
+ height
/ 2;
641 XFillPolygon (dpy
, window
, top_gc
, points
, 4, Convex
, CoordModeOrigin
);
643 points
[0].y
= y
+ height
/ 2;
644 points
[1].x
= x
+ thickness
;
645 points
[1].y
= y
+ height
/ 2;
646 points
[2].x
= x
+ width
/ 2;
647 points
[2].y
= y
+ height
- thickness
;
648 points
[3].x
= x
+ width
/ 2;
649 points
[3].y
= y
+ height
;
650 XFillPolygon (dpy
, window
, bottom_gc
, points
, 4, Convex
, CoordModeOrigin
);
651 points
[0].x
= x
+ width
/ 2;
652 points
[0].y
= y
+ height
;
653 points
[1].x
= x
+ width
/ 2;
654 points
[1].y
= y
+ height
- thickness
;
655 points
[2].x
= x
+ width
- thickness
;
656 points
[2].y
= y
+ height
/ 2;
657 points
[3].x
= x
+ width
;
658 points
[3].y
= y
+ height
/ 2;
659 XFillPolygon (dpy
, window
, bottom_gc
, points
, 4, Convex
, CoordModeOrigin
);
663 /* Draw a toggle button on widget MW, X window WINDOW. X/Y is the
664 top-left corner of the menu item. SELECTED_P non-zero means the
665 toggle button is selected. */
668 draw_toggle (mw
, window
, x
, y
, selected_p
)
671 int x
, y
, selected_p
;
675 width
= toggle_button_width (mw
);
677 x
+= mw
->menu
.horizontal_spacing
;
678 y
+= (mw
->menu
.font
->ascent
- height
) / 2;
679 draw_shadow_rectangle (mw
, window
, x
, y
, width
, height
, False
, selected_p
);
683 /* Draw a radio button on widget MW, X window WINDOW. X/Y is the
684 top-left corner of the menu item. SELECTED_P non-zero means the
685 toggle button is selected. */
688 draw_radio (mw
, window
, x
, y
, selected_p
)
691 int x
, y
, selected_p
;
695 width
= radio_button_width (mw
);
697 x
+= mw
->menu
.horizontal_spacing
;
698 y
+= (mw
->menu
.font
->ascent
- height
) / 2;
699 draw_shadow_rhombus (mw
, window
, x
, y
, width
, height
, False
, selected_p
);
703 /* Draw a menu separator on widget MW, X window WINDOW. X/Y is the
704 top-left corner of the menu item. WIDTH is the width of the
705 separator to draw. TYPE is the separator type. */
708 draw_separator (mw
, window
, x
, y
, width
, type
)
712 enum menu_separator type
;
714 Display
*dpy
= XtDisplay (mw
);
719 case SEPARATOR_NO_LINE
:
722 case SEPARATOR_SINGLE_LINE
:
723 XDrawLine (dpy
, window
, mw
->menu
.foreground_gc
,
727 case SEPARATOR_DOUBLE_LINE
:
728 draw_separator (mw
, window
, x
, y
, width
, SEPARATOR_SINGLE_LINE
);
729 draw_separator (mw
, window
, x
, y
+ 2, width
, SEPARATOR_SINGLE_LINE
);
732 case SEPARATOR_SINGLE_DASHED_LINE
:
733 xgcv
.line_style
= LineOnOffDash
;
734 XChangeGC (dpy
, mw
->menu
.foreground_gc
, GCLineStyle
, &xgcv
);
735 XDrawLine (dpy
, window
, mw
->menu
.foreground_gc
,
737 xgcv
.line_style
= LineSolid
;
738 XChangeGC (dpy
, mw
->menu
.foreground_gc
, GCLineStyle
, &xgcv
);
741 case SEPARATOR_DOUBLE_DASHED_LINE
:
742 draw_separator (mw
, window
, x
, y
, width
,
743 SEPARATOR_SINGLE_DASHED_LINE
);
744 draw_separator (mw
, window
, x
, y
+ 2, width
,
745 SEPARATOR_SINGLE_DASHED_LINE
);
748 case SEPARATOR_SHADOW_ETCHED_IN
:
749 XDrawLine (dpy
, window
, mw
->menu
.shadow_bottom_gc
,
751 XDrawLine (dpy
, window
, mw
->menu
.shadow_top_gc
,
752 x
, y
+ 1, x
+ width
, y
+ 1);
755 case SEPARATOR_SHADOW_ETCHED_OUT
:
756 XDrawLine (dpy
, window
, mw
->menu
.shadow_top_gc
,
758 XDrawLine (dpy
, window
, mw
->menu
.shadow_bottom_gc
,
759 x
, y
+ 1, x
+ width
, y
+ 1);
762 case SEPARATOR_SHADOW_ETCHED_IN_DASH
:
763 xgcv
.line_style
= LineOnOffDash
;
764 XChangeGC (dpy
, mw
->menu
.shadow_bottom_gc
, GCLineStyle
, &xgcv
);
765 XChangeGC (dpy
, mw
->menu
.shadow_top_gc
, GCLineStyle
, &xgcv
);
766 draw_separator (mw
, window
, x
, y
, SEPARATOR_SHADOW_ETCHED_IN
);
767 xgcv
.line_style
= LineSolid
;
768 XChangeGC (dpy
, mw
->menu
.shadow_bottom_gc
, GCLineStyle
, &xgcv
);
769 XChangeGC (dpy
, mw
->menu
.shadow_top_gc
, GCLineStyle
, &xgcv
);
772 case SEPARATOR_SHADOW_ETCHED_OUT_DASH
:
773 xgcv
.line_style
= LineOnOffDash
;
774 XChangeGC (dpy
, mw
->menu
.shadow_bottom_gc
, GCLineStyle
, &xgcv
);
775 XChangeGC (dpy
, mw
->menu
.shadow_top_gc
, GCLineStyle
, &xgcv
);
776 draw_separator (mw
, window
, x
, y
, SEPARATOR_SHADOW_ETCHED_OUT
);
777 xgcv
.line_style
= LineSolid
;
778 XChangeGC (dpy
, mw
->menu
.shadow_bottom_gc
, GCLineStyle
, &xgcv
);
779 XChangeGC (dpy
, mw
->menu
.shadow_top_gc
, GCLineStyle
, &xgcv
);
782 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN
:
783 draw_separator (mw
, window
, x
, y
, width
, SEPARATOR_SHADOW_ETCHED_IN
);
784 draw_separator (mw
, window
, x
, y
+ 3, width
, SEPARATOR_SHADOW_ETCHED_IN
);
787 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT
:
788 draw_separator (mw
, window
, x
, y
, width
,
789 SEPARATOR_SHADOW_ETCHED_OUT
);
790 draw_separator (mw
, window
, x
, y
+ 3, width
,
791 SEPARATOR_SHADOW_ETCHED_OUT
);
794 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH
:
795 xgcv
.line_style
= LineOnOffDash
;
796 XChangeGC (dpy
, mw
->menu
.shadow_bottom_gc
, GCLineStyle
, &xgcv
);
797 XChangeGC (dpy
, mw
->menu
.shadow_top_gc
, GCLineStyle
, &xgcv
);
798 draw_separator (mw
, window
, x
, y
, width
,
799 SEPARATOR_SHADOW_DOUBLE_ETCHED_IN
);
800 xgcv
.line_style
= LineSolid
;
801 XChangeGC (dpy
, mw
->menu
.shadow_bottom_gc
, GCLineStyle
, &xgcv
);
802 XChangeGC (dpy
, mw
->menu
.shadow_top_gc
, GCLineStyle
, &xgcv
);
805 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH
:
806 xgcv
.line_style
= LineOnOffDash
;
807 XChangeGC (dpy
, mw
->menu
.shadow_bottom_gc
, GCLineStyle
, &xgcv
);
808 XChangeGC (dpy
, mw
->menu
.shadow_top_gc
, GCLineStyle
, &xgcv
);
809 draw_separator (mw
, window
, x
, y
, width
,
810 SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT
);
811 xgcv
.line_style
= LineSolid
;
812 XChangeGC (dpy
, mw
->menu
.shadow_bottom_gc
, GCLineStyle
, &xgcv
);
813 XChangeGC (dpy
, mw
->menu
.shadow_top_gc
, GCLineStyle
, &xgcv
);
822 /* Return the pixel height of menu separator SEPARATOR. */
825 separator_height (separator
)
826 enum menu_separator separator
;
830 case SEPARATOR_NO_LINE
:
833 case SEPARATOR_SINGLE_LINE
:
834 case SEPARATOR_SINGLE_DASHED_LINE
:
837 case SEPARATOR_DOUBLE_LINE
:
838 case SEPARATOR_DOUBLE_DASHED_LINE
:
841 case SEPARATOR_SHADOW_ETCHED_IN
:
842 case SEPARATOR_SHADOW_ETCHED_OUT
:
843 case SEPARATOR_SHADOW_ETCHED_IN_DASH
:
844 case SEPARATOR_SHADOW_ETCHED_OUT_DASH
:
847 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN
:
848 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT
:
849 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH
:
850 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH
:
859 /* Display the menu item and increment where.x and where.y to show how large
860 the menu item was. */
863 display_menu_item (mw
, val
, ws
, where
, highlighted_p
, horizontal_p
,
869 Boolean highlighted_p
;
870 Boolean horizontal_p
;
871 Boolean just_compute_p
;
875 int font_ascent
= mw
->menu
.font
->ascent
;
876 int font_descent
= mw
->menu
.font
->descent
;
877 int shadow
= mw
->menu
.shadow_thickness
;
878 int margin
= mw
->menu
.margin
;
879 int h_spacing
= mw
->menu
.horizontal_spacing
;
880 int v_spacing
= mw
->menu
.vertical_spacing
;
886 enum menu_separator separator
;
887 int separator_p
= lw_separator_p (val
->name
, &separator
, 0);
889 /* compute the sizes of the item */
890 size_menu_item (mw
, val
, horizontal_p
, &label_width
, &rest_width
,
891 &button_width
, &height
);
894 width
= label_width
+ rest_width
;
897 label_width
= ws
->label_width
;
898 width
= ws
->width
- 2 * shadow
;
901 /* Only highlight an enabled item that has a callback. */
903 if (!val
->enabled
|| !(val
->call_data
|| val
->contents
))
906 /* do the drawing. */
909 /* Add the shadow border of the containing menu */
910 int x
= where
->x
+ shadow
;
911 int y
= where
->y
+ shadow
;
919 /* pick the foreground and background GC. */
921 text_gc
= mw
->menu
.foreground_gc
;
923 text_gc
= mw
->menu
.inactive_gc
;
924 deco_gc
= mw
->menu
.foreground_gc
;
928 draw_separator (mw
, ws
->window
, x
, y
, width
, separator
);
932 int x_offset
= x
+ h_spacing
+ shadow
;
933 char* display_string
= resource_widget_value (mw
, val
);
934 draw_shadow_rectangle (mw
, ws
->window
, x
, y
, width
, height
, True
,
937 /* Deal with centering a menu title. */
938 if (!horizontal_p
&& !val
->contents
&& !val
->call_data
)
940 int l
= string_width (mw
, display_string
);
943 x_offset
= (width
- l
) >> 1;
945 else if (!horizontal_p
&& ws
->button_width
)
946 x_offset
+= ws
->button_width
;
949 XDrawString (XtDisplay (mw
), ws
->window
, text_gc
, x_offset
,
950 y
+ v_spacing
+ shadow
+ font_ascent
,
951 display_string
, strlen (display_string
));
955 if (val
->button_type
== BUTTON_TYPE_TOGGLE
)
956 draw_toggle (mw
, ws
->window
, x
, y
+ v_spacing
+ shadow
,
958 else if (val
->button_type
== BUTTON_TYPE_RADIO
)
959 draw_radio (mw
, ws
->window
, x
, y
+ v_spacing
+ shadow
,
964 int a_w
= arrow_width (mw
);
965 draw_arrow (mw
, ws
->window
, deco_gc
,
967 - mw
->menu
.horizontal_spacing
968 - mw
->menu
.shadow_thickness
,
969 y
+ v_spacing
+ shadow
, a_w
,
974 XDrawString (XtDisplay (mw
), ws
->window
, text_gc
,
975 x
+ label_width
+ mw
->menu
.arrow_spacing
,
976 y
+ v_spacing
+ shadow
+ font_ascent
,
977 val
->key
, strlen (val
->key
));
982 XDrawRectangle (XtDisplay (mw
), ws
->window
,
983 mw
->menu
.background_gc
,
984 x
+ shadow
, y
+ shadow
,
985 label_width
+ h_spacing
- 1,
986 font_ascent
+ font_descent
+ 2 * v_spacing
- 1);
987 draw_shadow_rectangle (mw
, ws
->window
, x
, y
, width
, height
,
992 draw_shadow_rectangle (mw
, ws
->window
, x
, y
, width
, height
, False
,
1002 display_menu (mw
, level
, just_compute_p
, highlighted_pos
, hit
, hit_return
,
1006 Boolean just_compute_p
;
1007 XPoint
* highlighted_pos
;
1009 widget_value
** hit_return
;
1014 widget_value
* following_item
;
1017 int horizontal_p
= mw
->menu
.horizontal
&& (level
== 0);
1019 int just_compute_this_one_p
;
1020 /* This is set nonzero if the element containing HIGHLIGHTED_POS
1021 is disabled, so that we do not return any subsequent element either. */
1023 enum menu_separator separator
;
1025 if (level
>= mw
->menu
.old_depth
)
1026 abort_gracefully ((Widget
) mw
);
1028 if (level
< mw
->menu
.old_depth
- 1)
1029 following_item
= mw
->menu
.old_stack
[level
+ 1];
1031 following_item
= NULL
;
1039 ws
= &mw
->menu
.windows
[level
];
1040 for (val
= mw
->menu
.old_stack
[level
]->contents
; val
; val
= val
->next
)
1042 highlighted_p
= val
== following_item
;
1043 if (highlighted_p
&& highlighted_pos
)
1046 highlighted_pos
->x
= where
.x
;
1048 highlighted_pos
->y
= where
.y
;
1051 just_compute_this_one_p
=
1052 just_compute_p
|| ((this || that
) && val
!= this && val
!= that
);
1054 display_menu_item (mw
, val
, ws
, &where
, highlighted_p
, horizontal_p
,
1055 just_compute_this_one_p
);
1057 if (highlighted_p
&& highlighted_pos
)
1060 highlighted_pos
->y
= where
.y
;
1062 highlighted_pos
->x
= where
.x
;
1067 && (horizontal_p
? hit
->x
< where
.x
: hit
->y
< where
.y
)
1068 && !lw_separator_p (val
->name
, &separator
, 0)
1083 if (!just_compute_p
)
1084 draw_shadow_rectangle (mw
, ws
->window
, 0, 0, ws
->width
, ws
->height
,
1090 set_new_state (mw
, val
, level
)
1097 mw
->menu
.new_depth
= 0;
1098 for (i
= 0; i
< level
; i
++)
1099 push_new_stack (mw
, mw
->menu
.old_stack
[i
]);
1100 push_new_stack (mw
, val
);
1104 make_windows_if_needed (mw
, n
)
1110 XSetWindowAttributes xswa
;
1112 Window root
= RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw
)));
1113 window_state
* windows
;
1115 if (mw
->menu
.windows_length
>= n
)
1118 xswa
.save_under
= True
;
1119 xswa
.override_redirect
= True
;
1120 xswa
.background_pixel
= mw
->core
.background_pixel
;
1121 xswa
.border_pixel
= mw
->core
.border_pixel
;
1123 ExposureMask
| PointerMotionMask
| PointerMotionHintMask
1124 | ButtonReleaseMask
| ButtonPressMask
;
1125 xswa
.cursor
= mw
->menu
.cursor_shape
;
1126 mask
= CWSaveUnder
| CWOverrideRedirect
| CWBackPixel
| CWBorderPixel
1127 | CWEventMask
| CWCursor
;
1129 if (!mw
->menu
.windows
)
1132 (window_state
*)XtMalloc (n
* sizeof (window_state
));
1138 (window_state
*)XtRealloc ((char*)mw
->menu
.windows
,
1139 n
* sizeof (window_state
));
1140 start_at
= mw
->menu
.windows_length
;
1142 mw
->menu
.windows_length
= n
;
1144 windows
= mw
->menu
.windows
;
1146 for (i
= start_at
; i
< n
; i
++)
1150 windows
[i
].width
= 1;
1151 windows
[i
].height
= 1;
1152 windows
[i
].window
=
1153 XCreateWindow (XtDisplay (mw
), root
, 0, 0, 1, 1,
1154 0, 0, CopyFromParent
, CopyFromParent
, mask
, &xswa
);
1158 /* Make the window fit in the screen */
1160 fit_to_screen (mw
, ws
, previous_ws
, horizontal_p
)
1163 window_state
* previous_ws
;
1164 Boolean horizontal_p
;
1166 unsigned int screen_width
= WidthOfScreen (XtScreen (mw
));
1167 unsigned int screen_height
= HeightOfScreen (XtScreen (mw
));
1168 /* 1 if we are unable to avoid an overlap between
1169 this menu and the parent menu in the X dimension. */
1170 int horizontal_overlap
= 0;
1174 else if (ws
->x
+ ws
->width
> screen_width
)
1177 ws
->x
= previous_ws
->x
- ws
->width
;
1179 ws
->x
= screen_width
- ws
->width
;
1183 horizontal_overlap
= 1;
1186 /* If we overlap in X, try to avoid overlap in Y. */
1187 if (horizontal_overlap
1188 && ws
->y
< previous_ws
->y
+ previous_ws
->height
1189 && previous_ws
->y
< ws
->y
+ ws
->height
)
1191 /* Put this menu right below or right above PREVIOUS_WS
1193 if (previous_ws
->y
+ previous_ws
->height
+ ws
->height
< screen_height
)
1194 ws
->y
= previous_ws
->y
+ previous_ws
->height
;
1195 else if (previous_ws
->y
- ws
->height
> 0)
1196 ws
->y
= previous_ws
->y
- ws
->height
;
1201 else if (ws
->y
+ ws
->height
> screen_height
)
1204 ws
->y
= previous_ws
->y
- ws
->height
;
1206 ws
->y
= screen_height
- ws
->height
;
1212 /* Updates old_stack from new_stack and redisplays. */
1219 XPoint selection_position
;
1220 int old_depth
= mw
->menu
.old_depth
;
1221 int new_depth
= mw
->menu
.new_depth
;
1222 widget_value
** old_stack
;
1223 widget_value
** new_stack
;
1224 window_state
* windows
;
1225 widget_value
* old_selection
;
1226 widget_value
* new_selection
;
1228 /* Check that enough windows and old_stack are ready. */
1229 make_windows_if_needed (mw
, new_depth
);
1230 make_old_stack_space (mw
, new_depth
);
1231 windows
= mw
->menu
.windows
;
1232 old_stack
= mw
->menu
.old_stack
;
1233 new_stack
= mw
->menu
.new_stack
;
1235 /* compute the last identical different entry */
1236 for (i
= 1; i
< old_depth
&& i
< new_depth
; i
++)
1237 if (old_stack
[i
] != new_stack
[i
])
1241 /* Memorize the previously selected item to be able to refresh it */
1242 old_selection
= last_same
+ 1 < old_depth
? old_stack
[last_same
+ 1] : NULL
;
1243 if (old_selection
&& !old_selection
->enabled
)
1244 old_selection
= NULL
;
1245 new_selection
= last_same
+ 1 < new_depth
? new_stack
[last_same
+ 1] : NULL
;
1246 if (new_selection
&& !new_selection
->enabled
)
1247 new_selection
= NULL
;
1249 /* updates old_state from new_state. It has to be done now because
1250 display_menu (called below) uses the old_stack to know what to display. */
1251 for (i
= last_same
+ 1; i
< new_depth
; i
++)
1252 old_stack
[i
] = new_stack
[i
];
1253 mw
->menu
.old_depth
= new_depth
;
1255 /* refresh the last selection */
1256 selection_position
.x
= 0;
1257 selection_position
.y
= 0;
1258 display_menu (mw
, last_same
, new_selection
== old_selection
,
1259 &selection_position
, NULL
, NULL
, old_selection
, new_selection
);
1261 /* Now place the new menus. */
1262 for (i
= last_same
+ 1; i
< new_depth
&& new_stack
[i
]->contents
; i
++)
1264 window_state
*previous_ws
= &windows
[i
- 1];
1265 window_state
*ws
= &windows
[i
];
1267 ws
->x
= (previous_ws
->x
+ selection_position
.x
1268 + mw
->menu
.shadow_thickness
);
1270 ws
->x
+= mw
->menu
.margin
;
1273 if (!mw
->menu
.horizontal
|| i
> 1)
1274 ws
->x
+= mw
->menu
.shadow_thickness
;
1277 ws
->y
= (previous_ws
->y
+ selection_position
.y
1278 + mw
->menu
.shadow_thickness
);
1280 ws
->y
+= mw
->menu
.margin
;
1284 fit_to_screen (mw
, ws
, previous_ws
, mw
->menu
.horizontal
&& i
== 1);
1286 XClearWindow (XtDisplay (mw
), ws
->window
);
1287 XMoveResizeWindow (XtDisplay (mw
), ws
->window
, ws
->x
, ws
->y
,
1288 ws
->width
, ws
->height
);
1289 XMapRaised (XtDisplay (mw
), ws
->window
);
1290 display_menu (mw
, i
, False
, &selection_position
, NULL
, NULL
, NULL
, NULL
);
1293 /* unmap the menus that popped down */
1294 for (i
= new_depth
- 1; i
< old_depth
; i
++)
1295 if (i
>= new_depth
|| !new_stack
[i
]->contents
)
1296 XUnmapWindow (XtDisplay (mw
), windows
[i
].window
);
1300 motion_event_is_in_menu (mw
, ev
, level
, relative_pos
)
1304 XPoint
* relative_pos
;
1306 window_state
* ws
= &mw
->menu
.windows
[level
];
1307 int shadow
= level
== 0 ? 0 : mw
->menu
.shadow_thickness
;
1308 int x
= ws
->x
+ shadow
;
1309 int y
= ws
->y
+ shadow
;
1310 relative_pos
->x
= ev
->x_root
- x
;
1311 relative_pos
->y
= ev
->y_root
- y
;
1312 return (x
- shadow
< ev
->x_root
&& ev
->x_root
< x
+ ws
->width
1313 && y
- shadow
< ev
->y_root
&& ev
->y_root
< y
+ ws
->height
);
1317 map_event_to_widget_value (mw
, ev
, val
, level
)
1324 XPoint relative_pos
;
1329 /* Find the window */
1330 for (i
= mw
->menu
.old_depth
- 1; i
>= 0; i
--)
1332 ws
= &mw
->menu
.windows
[i
];
1333 if (ws
&& motion_event_is_in_menu (mw
, ev
, i
, &relative_pos
))
1335 display_menu (mw
, i
, True
, NULL
, &relative_pos
, val
, NULL
, NULL
);
1349 make_drawing_gcs (mw
)
1354 xgcv
.font
= mw
->menu
.font
->fid
;
1355 xgcv
.foreground
= mw
->menu
.foreground
;
1356 xgcv
.background
= mw
->core
.background_pixel
;
1357 mw
->menu
.foreground_gc
= XtGetGC ((Widget
)mw
,
1358 GCFont
| GCForeground
| GCBackground
,
1361 xgcv
.font
= mw
->menu
.font
->fid
;
1362 xgcv
.foreground
= mw
->menu
.button_foreground
;
1363 xgcv
.background
= mw
->core
.background_pixel
;
1364 mw
->menu
.button_gc
= XtGetGC ((Widget
)mw
,
1365 GCFont
| GCForeground
| GCBackground
,
1368 xgcv
.font
= mw
->menu
.font
->fid
;
1369 xgcv
.foreground
= mw
->menu
.foreground
;
1370 xgcv
.background
= mw
->core
.background_pixel
;
1371 xgcv
.fill_style
= FillStippled
;
1372 xgcv
.stipple
= mw
->menu
.gray_pixmap
;
1373 mw
->menu
.inactive_gc
= XtGetGC ((Widget
)mw
,
1374 (GCFont
| GCForeground
| GCBackground
1375 | GCFillStyle
| GCStipple
), &xgcv
);
1377 xgcv
.font
= mw
->menu
.font
->fid
;
1378 xgcv
.foreground
= mw
->menu
.button_foreground
;
1379 xgcv
.background
= mw
->core
.background_pixel
;
1380 xgcv
.fill_style
= FillStippled
;
1381 xgcv
.stipple
= mw
->menu
.gray_pixmap
;
1382 mw
->menu
.inactive_button_gc
= XtGetGC ((Widget
)mw
,
1383 (GCFont
| GCForeground
| GCBackground
1384 | GCFillStyle
| GCStipple
), &xgcv
);
1386 xgcv
.font
= mw
->menu
.font
->fid
;
1387 xgcv
.foreground
= mw
->core
.background_pixel
;
1388 xgcv
.background
= mw
->menu
.foreground
;
1389 mw
->menu
.background_gc
= XtGetGC ((Widget
)mw
,
1390 GCFont
| GCForeground
| GCBackground
,
1395 release_drawing_gcs (mw
)
1398 XtReleaseGC ((Widget
) mw
, mw
->menu
.foreground_gc
);
1399 XtReleaseGC ((Widget
) mw
, mw
->menu
.button_gc
);
1400 XtReleaseGC ((Widget
) mw
, mw
->menu
.inactive_gc
);
1401 XtReleaseGC ((Widget
) mw
, mw
->menu
.inactive_button_gc
);
1402 XtReleaseGC ((Widget
) mw
, mw
->menu
.background_gc
);
1403 /* let's get some segvs if we try to use these... */
1404 mw
->menu
.foreground_gc
= (GC
) -1;
1405 mw
->menu
.button_gc
= (GC
) -1;
1406 mw
->menu
.inactive_gc
= (GC
) -1;
1407 mw
->menu
.inactive_button_gc
= (GC
) -1;
1408 mw
->menu
.background_gc
= (GC
) -1;
1411 #define MINL(x,y) ((((unsigned long) (x)) < ((unsigned long) (y))) \
1412 ? ((unsigned long) (x)) : ((unsigned long) (y)))
1415 make_shadow_gcs (mw
)
1419 unsigned long pm
= 0;
1420 Display
*dpy
= XtDisplay ((Widget
) mw
);
1421 Screen
*screen
= XtScreen ((Widget
) mw
);
1422 Colormap cmap
= DefaultColormapOfScreen (screen
);
1424 int top_frobbed
= 0, bottom_frobbed
= 0;
1426 if (mw
->menu
.top_shadow_color
== -1)
1427 mw
->menu
.top_shadow_color
= mw
->core
.background_pixel
;
1428 if (mw
->menu
.bottom_shadow_color
== -1)
1429 mw
->menu
.bottom_shadow_color
= mw
->menu
.foreground
;
1431 if (mw
->menu
.top_shadow_color
== mw
->core
.background_pixel
||
1432 mw
->menu
.top_shadow_color
== mw
->menu
.foreground
)
1434 topc
.pixel
= mw
->core
.background_pixel
;
1435 XQueryColor (dpy
, cmap
, &topc
);
1436 /* don't overflow/wrap! */
1437 topc
.red
= MINL (65535, topc
.red
* 1.2);
1438 topc
.green
= MINL (65535, topc
.green
* 1.2);
1439 topc
.blue
= MINL (65535, topc
.blue
* 1.2);
1441 if (x_alloc_nearest_color_for_widget (mw
, cmap
, &topc
))
1443 if (XAllocColor (dpy
, cmap
, &topc
))
1446 mw
->menu
.top_shadow_color
= topc
.pixel
;
1450 if (mw
->menu
.bottom_shadow_color
== mw
->menu
.foreground
||
1451 mw
->menu
.bottom_shadow_color
== mw
->core
.background_pixel
)
1453 botc
.pixel
= mw
->core
.background_pixel
;
1454 XQueryColor (dpy
, cmap
, &botc
);
1459 if (x_alloc_nearest_color_for_widget (mw
, cmap
, &botc
))
1461 if (XAllocColor (dpy
, cmap
, &botc
))
1464 mw
->menu
.bottom_shadow_color
= botc
.pixel
;
1469 if (top_frobbed
&& bottom_frobbed
)
1471 int top_avg
= ((topc
.red
/ 3) + (topc
.green
/ 3) + (topc
.blue
/ 3));
1472 int bot_avg
= ((botc
.red
/ 3) + (botc
.green
/ 3) + (botc
.blue
/ 3));
1473 if (bot_avg
> top_avg
)
1475 Pixel tmp
= mw
->menu
.top_shadow_color
;
1476 mw
->menu
.top_shadow_color
= mw
->menu
.bottom_shadow_color
;
1477 mw
->menu
.bottom_shadow_color
= tmp
;
1479 else if (topc
.pixel
== botc
.pixel
)
1481 if (botc
.pixel
== mw
->menu
.foreground
)
1482 mw
->menu
.top_shadow_color
= mw
->core
.background_pixel
;
1484 mw
->menu
.bottom_shadow_color
= mw
->menu
.foreground
;
1488 if (!mw
->menu
.top_shadow_pixmap
&&
1489 mw
->menu
.top_shadow_color
== mw
->core
.background_pixel
)
1491 mw
->menu
.top_shadow_pixmap
= mw
->menu
.gray_pixmap
;
1492 mw
->menu
.top_shadow_color
= mw
->menu
.foreground
;
1494 if (!mw
->menu
.bottom_shadow_pixmap
&&
1495 mw
->menu
.bottom_shadow_color
== mw
->core
.background_pixel
)
1497 mw
->menu
.bottom_shadow_pixmap
= mw
->menu
.gray_pixmap
;
1498 mw
->menu
.bottom_shadow_color
= mw
->menu
.foreground
;
1501 xgcv
.fill_style
= FillStippled
;
1502 xgcv
.foreground
= mw
->menu
.top_shadow_color
;
1503 xgcv
.stipple
= mw
->menu
.top_shadow_pixmap
;
1504 pm
= (xgcv
.stipple
? GCStipple
|GCFillStyle
: 0);
1505 mw
->menu
.shadow_top_gc
= XtGetGC ((Widget
)mw
, GCForeground
| pm
, &xgcv
);
1507 xgcv
.foreground
= mw
->menu
.bottom_shadow_color
;
1508 xgcv
.stipple
= mw
->menu
.bottom_shadow_pixmap
;
1509 pm
= (xgcv
.stipple
? GCStipple
|GCFillStyle
: 0);
1510 mw
->menu
.shadow_bottom_gc
= XtGetGC ((Widget
)mw
, GCForeground
| pm
, &xgcv
);
1515 release_shadow_gcs (mw
)
1518 XtReleaseGC ((Widget
) mw
, mw
->menu
.shadow_top_gc
);
1519 XtReleaseGC ((Widget
) mw
, mw
->menu
.shadow_bottom_gc
);
1523 XlwMenuInitialize (request
, mw
, args
, num_args
)
1529 /* Get the GCs and the widget size */
1530 XSetWindowAttributes xswa
;
1533 Window window
= RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw
)));
1534 Display
* display
= XtDisplay (mw
);
1537 widget_value
*tem
= (widget_value
*) XtMalloc (sizeof (widget_value
));
1539 /* _XtCreate is freeing the object that was passed to us,
1540 so make a copy that we will actually keep. */
1541 lwlib_bcopy (mw
->menu
.contents
, tem
, sizeof (widget_value
));
1542 mw
->menu
.contents
= tem
;
1545 /* mw->menu.cursor = XCreateFontCursor (display, mw->menu.cursor_shape); */
1546 mw
->menu
.cursor
= mw
->menu
.cursor_shape
;
1548 mw
->menu
.gray_pixmap
1549 = XCreatePixmapFromBitmapData (display
, window
, gray_bits
,
1550 gray_width
, gray_height
,
1551 (unsigned long)1, (unsigned long)0, 1);
1553 /* I don't understand why this ends up 0 sometimes,
1554 but it does. This kludge works around it.
1555 Can anyone find a real fix? -- rms. */
1556 if (mw
->menu
.font
== 0)
1557 mw
->menu
.font
= xlwmenu_default_font
;
1559 make_drawing_gcs (mw
);
1560 make_shadow_gcs (mw
);
1562 xswa
.background_pixel
= mw
->core
.background_pixel
;
1563 xswa
.border_pixel
= mw
->core
.border_pixel
;
1564 mask
= CWBackPixel
| CWBorderPixel
;
1566 mw
->menu
.popped_up
= False
;
1568 mw
->menu
.old_depth
= 1;
1569 mw
->menu
.old_stack
= (widget_value
**)XtMalloc (sizeof (widget_value
*));
1570 mw
->menu
.old_stack_length
= 1;
1571 mw
->menu
.old_stack
[0] = mw
->menu
.contents
;
1573 mw
->menu
.new_depth
= 0;
1574 mw
->menu
.new_stack
= 0;
1575 mw
->menu
.new_stack_length
= 0;
1576 push_new_stack (mw
, mw
->menu
.contents
);
1578 mw
->menu
.windows
= (window_state
*)XtMalloc (sizeof (window_state
));
1579 mw
->menu
.windows_length
= 1;
1580 mw
->menu
.windows
[0].x
= 0;
1581 mw
->menu
.windows
[0].y
= 0;
1582 mw
->menu
.windows
[0].width
= 0;
1583 mw
->menu
.windows
[0].height
= 0;
1586 mw
->core
.width
= mw
->menu
.windows
[0].width
;
1587 mw
->core
.height
= mw
->menu
.windows
[0].height
;
1591 XlwMenuClassInitialize ()
1596 XlwMenuRealize (w
, valueMask
, attributes
)
1599 XSetWindowAttributes
*attributes
;
1601 XlwMenuWidget mw
= (XlwMenuWidget
)w
;
1602 XSetWindowAttributes xswa
;
1605 (*xlwMenuWidgetClass
->core_class
.superclass
->core_class
.realize
)
1606 (w
, valueMask
, attributes
);
1608 xswa
.save_under
= True
;
1609 xswa
.cursor
= mw
->menu
.cursor_shape
;
1610 mask
= CWSaveUnder
| CWCursor
;
1611 XChangeWindowAttributes (XtDisplay (w
), XtWindow (w
), mask
, &xswa
);
1613 mw
->menu
.windows
[0].window
= XtWindow (w
);
1614 mw
->menu
.windows
[0].x
= w
->core
.x
;
1615 mw
->menu
.windows
[0].y
= w
->core
.y
;
1616 mw
->menu
.windows
[0].width
= w
->core
.width
;
1617 mw
->menu
.windows
[0].height
= w
->core
.height
;
1620 /* Only the toplevel menubar/popup is a widget so it's the only one that
1621 receives expose events through Xt. So we repaint all the other panes
1622 when receiving an Expose event. */
1624 XlwMenuRedisplay (w
, ev
, region
)
1629 XlwMenuWidget mw
= (XlwMenuWidget
)w
;
1632 /* If we have a depth beyond 1, it's because a submenu was displayed.
1633 If the submenu has been destroyed, set the depth back to 1. */
1634 if (submenu_destroyed
)
1636 mw
->menu
.old_depth
= 1;
1637 submenu_destroyed
= 0;
1640 for (i
= 0; i
< mw
->menu
.old_depth
; i
++)
1641 display_menu (mw
, i
, False
, NULL
, NULL
, NULL
, NULL
, NULL
);
1649 XlwMenuWidget mw
= (XlwMenuWidget
) w
;
1651 if (pointer_grabbed
)
1652 XtUngrabPointer ((Widget
)w
, CurrentTime
);
1653 pointer_grabbed
= 0;
1655 submenu_destroyed
= 1;
1657 release_drawing_gcs (mw
);
1658 release_shadow_gcs (mw
);
1660 /* this doesn't come from the resource db but is created explicitly
1661 so we must free it ourselves. */
1662 XFreePixmap (XtDisplay (mw
), mw
->menu
.gray_pixmap
);
1663 mw
->menu
.gray_pixmap
= (Pixmap
) -1;
1666 /* Do free mw->menu.contents because nowadays we copy it
1667 during initialization. */
1668 XtFree (mw
->menu
.contents
);
1671 /* Don't free mw->menu.contents because that comes from our creator.
1672 The `*_stack' elements are just pointers into `contents' so leave
1673 that alone too. But free the stacks themselves. */
1674 if (mw
->menu
.old_stack
) XtFree ((char *) mw
->menu
.old_stack
);
1675 if (mw
->menu
.new_stack
) XtFree ((char *) mw
->menu
.new_stack
);
1677 /* Remember, you can't free anything that came from the resource
1678 database. This includes:
1680 mw->menu.top_shadow_pixmap
1681 mw->menu.bottom_shadow_pixmap
1683 Also the color cells of top_shadow_color, bottom_shadow_color,
1684 foreground, and button_foreground will never be freed until this
1685 client exits. Nice, eh?
1688 /* start from 1 because the one in slot 0 is w->core.window */
1689 for (i
= 1; i
< mw
->menu
.windows_length
; i
++)
1690 XDestroyWindow (XtDisplay (mw
), mw
->menu
.windows
[i
].window
);
1691 if (mw
->menu
.windows
)
1692 XtFree ((char *) mw
->menu
.windows
);
1696 XlwMenuSetValues (current
, request
, new)
1701 XlwMenuWidget oldmw
= (XlwMenuWidget
)current
;
1702 XlwMenuWidget newmw
= (XlwMenuWidget
)new;
1703 Boolean redisplay
= False
;
1706 if (newmw
->menu
.contents
1707 && newmw
->menu
.contents
->contents
1708 && newmw
->menu
.contents
->contents
->change
>= VISIBLE_CHANGE
)
1710 /* Do redisplay if the contents are entirely eliminated. */
1711 if (newmw
->menu
.contents
1712 && newmw
->menu
.contents
->contents
== 0
1713 && newmw
->menu
.contents
->change
>= VISIBLE_CHANGE
)
1716 if (newmw
->core
.background_pixel
!= oldmw
->core
.background_pixel
1717 || newmw
->menu
.foreground
!= oldmw
->menu
.foreground
1718 || newmw
->menu
.font
!= oldmw
->menu
.font
)
1720 release_drawing_gcs (newmw
);
1721 make_drawing_gcs (newmw
);
1724 for (i
= 0; i
< oldmw
->menu
.windows_length
; i
++)
1726 XSetWindowBackground (XtDisplay (oldmw
),
1727 oldmw
->menu
.windows
[i
].window
,
1728 newmw
->core
.background_pixel
);
1729 /* clear windows and generate expose events */
1730 XClearArea (XtDisplay (oldmw
), oldmw
->menu
.windows
[i
].window
,
1742 XlwMenuWidget mw
= (XlwMenuWidget
)w
;
1744 if (mw
->menu
.popped_up
)
1746 /* Don't allow the popup menu to resize itself. */
1747 mw
->core
.width
= mw
->menu
.windows
[0].width
;
1748 mw
->core
.height
= mw
->menu
.windows
[0].height
;
1749 mw
->core
.parent
->core
.width
= mw
->core
.width
;
1750 mw
->core
.parent
->core
.height
= mw
->core
.height
;
1754 mw
->menu
.windows
[0].width
= mw
->core
.width
;
1755 mw
->menu
.windows
[0].height
= mw
->core
.height
;
1759 \f/* Action procedures */
1761 handle_single_motion_event (mw
, ev
)
1768 if (!map_event_to_widget_value (mw
, ev
, &val
, &level
))
1769 pop_new_stack_if_no_contents (mw
);
1771 set_new_state (mw
, val
, level
);
1774 /* Sync with the display. Makes it feel better on X terms. */
1775 XSync (XtDisplay (mw
), False
);
1779 handle_motion_event (mw
, ev
)
1785 int state
= ev
->state
;
1787 handle_single_motion_event (mw
, ev
);
1789 /* allow motion events to be generated again */
1791 && XQueryPointer (XtDisplay (mw
), ev
->window
,
1792 &ev
->root
, &ev
->subwindow
,
1793 &ev
->x_root
, &ev
->y_root
,
1796 && ev
->state
== state
1797 && (ev
->x_root
!= x
|| ev
->y_root
!= y
))
1798 handle_single_motion_event (mw
, ev
);
1802 Start (w
, ev
, params
, num_params
)
1806 Cardinal
*num_params
;
1808 XlwMenuWidget mw
= (XlwMenuWidget
)w
;
1810 if (!mw
->menu
.popped_up
)
1812 menu_post_event
= *ev
;
1813 pop_up_menu (mw
, ev
);
1817 /* If we push a button while the menu is posted semipermanently,
1818 releasing the button should always pop the menu down. */
1819 next_release_must_exit
= 1;
1821 /* notes the absolute position of the menubar window */
1822 mw
->menu
.windows
[0].x
= ev
->xmotion
.x_root
- ev
->xmotion
.x
;
1823 mw
->menu
.windows
[0].y
= ev
->xmotion
.y_root
- ev
->xmotion
.y
;
1825 /* handles the down like a move, slots are compatible */
1826 handle_motion_event (mw
, &ev
->xmotion
);
1831 Drag (w
, ev
, params
, num_params
)
1835 Cardinal
*num_params
;
1837 XlwMenuWidget mw
= (XlwMenuWidget
)w
;
1838 if (mw
->menu
.popped_up
)
1839 handle_motion_event (mw
, &ev
->xmotion
);
1843 This is how we handle presses and releases of modifier keys. */
1845 Nothing (w
, ev
, params
, num_params
)
1849 Cardinal
*num_params
;
1853 /* Handle key press and release events while menu is popped up.
1854 Our action is to get rid of the menu. */
1856 Key (w
, ev
, params
, num_params
)
1860 Cardinal
*num_params
;
1862 XlwMenuWidget mw
= (XlwMenuWidget
)w
;
1864 /* Pop down everything. */
1865 mw
->menu
.new_depth
= 1;
1868 if (mw
->menu
.popped_up
)
1870 mw
->menu
.popped_up
= False
;
1871 XtUngrabPointer ((Widget
)mw
, ev
->xmotion
.time
);
1872 if (XtIsShell (XtParent ((Widget
) mw
)))
1873 XtPopdown (XtParent ((Widget
) mw
));
1876 XtRemoveGrab ((Widget
) mw
);
1877 display_menu (mw
, 0, False
, NULL
, NULL
, NULL
, NULL
, NULL
);
1882 XtCallCallbackList ((Widget
)mw
, mw
->menu
.select
, (XtPointer
)0);
1886 Select (w
, ev
, params
, num_params
)
1890 Cardinal
*num_params
;
1892 XlwMenuWidget mw
= (XlwMenuWidget
)w
;
1893 widget_value
* selected_item
= mw
->menu
.old_stack
[mw
->menu
.old_depth
- 1];
1895 /* If user releases the button quickly, without selecting anything,
1896 after the initial down-click that brought the menu up,
1898 if ((selected_item
== 0
1899 || ((widget_value
*) selected_item
)->call_data
== 0)
1900 && !next_release_must_exit
1901 && (ev
->xbutton
.time
- menu_post_event
.xbutton
.time
1902 < XtGetMultiClickTime (XtDisplay (w
))))
1905 /* pop down everything. */
1906 mw
->menu
.new_depth
= 1;
1909 if (mw
->menu
.popped_up
)
1911 mw
->menu
.popped_up
= False
;
1912 XtUngrabPointer ((Widget
)mw
, ev
->xmotion
.time
);
1913 if (XtIsShell (XtParent ((Widget
) mw
)))
1914 XtPopdown (XtParent ((Widget
) mw
));
1917 XtRemoveGrab ((Widget
) mw
);
1918 display_menu (mw
, 0, False
, NULL
, NULL
, NULL
, NULL
, NULL
);
1923 XtCallCallbackList ((Widget
)mw
, mw
->menu
.select
, (XtPointer
)selected_item
);
1927 \f/* Special code to pop-up a menu */
1929 pop_up_menu (mw
, event
)
1931 XButtonPressedEvent
* event
;
1933 int x
= event
->x_root
;
1934 int y
= event
->y_root
;
1937 int borderwidth
= mw
->menu
.shadow_thickness
;
1938 Screen
* screen
= XtScreen (mw
);
1939 Display
*display
= XtDisplay (mw
);
1942 next_release_must_exit
= 0;
1944 XtCallCallbackList ((Widget
)mw
, mw
->menu
.open
, NULL
);
1946 if (XtIsShell (XtParent ((Widget
)mw
)))
1949 w
= mw
->menu
.windows
[0].width
;
1950 h
= mw
->menu
.windows
[0].height
;
1954 if (x
< borderwidth
)
1956 if (x
+ w
+ 2 * borderwidth
> WidthOfScreen (screen
))
1957 x
= WidthOfScreen (screen
) - w
- 2 * borderwidth
;
1958 if (y
< borderwidth
)
1960 if (y
+ h
+ 2 * borderwidth
> HeightOfScreen (screen
))
1961 y
= HeightOfScreen (screen
) - h
- 2 * borderwidth
;
1963 mw
->menu
.popped_up
= True
;
1964 if (XtIsShell (XtParent ((Widget
)mw
)))
1966 XtConfigureWidget (XtParent ((Widget
)mw
), x
, y
, w
, h
,
1967 XtParent ((Widget
)mw
)->core
.border_width
);
1968 XtPopup (XtParent ((Widget
)mw
), XtGrabExclusive
);
1969 display_menu (mw
, 0, False
, NULL
, NULL
, NULL
, NULL
, NULL
);
1970 mw
->menu
.windows
[0].x
= x
+ borderwidth
;
1971 mw
->menu
.windows
[0].y
= y
+ borderwidth
;
1975 XEvent
*ev
= (XEvent
*) event
;
1977 XtAddGrab ((Widget
) mw
, True
, True
);
1979 /* notes the absolute position of the menubar window */
1980 mw
->menu
.windows
[0].x
= ev
->xmotion
.x_root
- ev
->xmotion
.x
;
1981 mw
->menu
.windows
[0].y
= ev
->xmotion
.y_root
- ev
->xmotion
.y
;
1985 count
= x_catch_errors (display
);
1987 XtGrabPointer ((Widget
)mw
, False
,
1989 | PointerMotionHintMask
1992 GrabModeAsync
, GrabModeAsync
, None
,
1993 mw
->menu
.cursor_shape
,
1995 pointer_grabbed
= 1;
1997 if (x_had_errors_p (display
))
1999 pointer_grabbed
= 0;
2000 XtUngrabPointer ((Widget
)mw
, event
->time
);
2002 x_uncatch_errors (display
, count
);
2005 handle_motion_event (mw
, (XMotionEvent
*)event
);