1 /* The lwlib interface to "xlwmenu" menus.
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 1, 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
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
25 #include "lwlib-Xlw.h"
26 #include <X11/StringDefs.h>
27 #include <X11/IntrinsicP.h>
28 #include <X11/ObjectP.h>
29 #include <X11/CompositeP.h>
30 #include <X11/Shell.h>
33 \f/* Menu callbacks */
35 /* Callback XtNhighlightCallback for Lucid menus. W is the menu
36 widget, CLIENT_DATA contains a pointer to the widget_instance
37 for the menu, CALL_DATA contains a pointer to the widget_value
38 structure for the highlighted menu item. The latter may be null
39 if there isn't any highlighted menu item. */
42 highlight_hook (w
, client_data
, call_data
)
44 XtPointer client_data
;
47 widget_instance
*instance
= (widget_instance
*) client_data
;
49 if (instance
->info
->highlight_cb
50 && !w
->core
.being_destroyed
)
51 instance
->info
->highlight_cb (w
, instance
->info
->id
, call_data
);
55 pre_hook (w
, client_data
, call_data
)
57 XtPointer client_data
;
60 widget_instance
* instance
= (widget_instance
*)client_data
;
63 if (w
->core
.being_destroyed
)
66 val
= lw_get_widget_value_for_widget (instance
, w
);
67 if (instance
->info
->pre_activate_cb
)
68 instance
->info
->pre_activate_cb (w
, instance
->info
->id
,
69 val
? val
->call_data
: NULL
);
73 pick_hook (w
, client_data
, call_data
)
75 XtPointer client_data
;
78 widget_instance
* instance
= (widget_instance
*)client_data
;
79 widget_value
* contents_val
= (widget_value
*)call_data
;
80 widget_value
* widget_val
;
83 if (w
->core
.being_destroyed
)
86 if (instance
->info
->selection_cb
&& contents_val
&& contents_val
->enabled
87 && !contents_val
->contents
)
88 instance
->info
->selection_cb (w
, instance
->info
->id
,
89 contents_val
->call_data
);
91 widget_val
= lw_get_widget_value_for_widget (instance
, w
);
92 widget_arg
= widget_val
? widget_val
->call_data
: NULL
;
93 if (instance
->info
->post_activate_cb
)
94 instance
->info
->post_activate_cb (w
, instance
->info
->id
, widget_arg
);
98 \f/* creation functions */
101 xlw_create_menubar (instance
)
102 widget_instance
* instance
;
108 XtSetArg (al
[ac
], XtNmenu
, instance
->info
->val
); ac
++;
110 XtSetArg (al
[ac
], XtNshowGrip
, 0); ac
++;
111 XtSetArg (al
[ac
], XtNresizeToPreferred
, 1); ac
++;
112 XtSetArg (al
[ac
], XtNallowResize
, 1); ac
++;
115 /* This used to use XtVaCreateWidget, but an old Xt version
116 has a bug in XtVaCreateWidget that frees instance->info->name. */
118 = XtCreateWidget (instance
->info
->name
, xlwMenuWidgetClass
,
119 instance
->parent
, al
, ac
);
121 XtAddCallback (widget
, XtNopen
, pre_hook
, (XtPointer
)instance
);
122 XtAddCallback (widget
, XtNselect
, pick_hook
, (XtPointer
)instance
);
123 XtAddCallback (widget
, XtNhighlightCallback
, highlight_hook
,
124 (XtPointer
)instance
);
129 xlw_create_popup_menu (instance
)
130 widget_instance
* instance
;
133 = XtCreatePopupShell (instance
->info
->name
, overrideShellWidgetClass
,
134 instance
->parent
, NULL
, 0);
140 XtSetArg (al
[ac
], XtNmenu
, instance
->info
->val
); ac
++;
141 XtSetArg (al
[ac
], XtNhorizontal
, False
); ac
++;
143 /* This used to use XtVaManagedCreateWidget, but an old Xt version
144 has a bug in XtVaManagedCreateWidget that frees instance->info->name. */
146 = XtCreateManagedWidget ("popup", xlwMenuWidgetClass
,
147 popup_shell
, al
, ac
);
149 XtAddCallback (widget
, XtNselect
, pick_hook
, (XtPointer
)instance
);
150 XtAddCallback (widget
, XtNhighlightCallback
, highlight_hook
,
151 (XtPointer
)instance
);
155 widget_creation_entry
156 xlw_creation_table
[] =
158 {"menubar", xlw_create_menubar
},
159 {"popup", xlw_create_popup_menu
},
164 lw_lucid_widget_p (widget
)
167 WidgetClass the_class
= XtClass (widget
);
169 if (the_class
== xlwMenuWidgetClass
)
171 if (the_class
== overrideShellWidgetClass
)
172 return (XtClass (((CompositeWidget
)widget
)->composite
.children
[0])
173 == xlwMenuWidgetClass
);
178 xlw_update_one_widget (instance
, widget
, val
, deep_p
)
179 widget_instance
* instance
;
187 if (XtIsShell (widget
))
188 mw
= (XlwMenuWidget
)((CompositeWidget
)widget
)->composite
.children
[0];
190 mw
= (XlwMenuWidget
)widget
;
192 /* This used to use XtVaSetValues, but some old Xt versions
193 that have a bug in XtVaCreateWidget might have it here too. */
194 XtSetArg (al
[0], XtNmenu
, instance
->info
->val
);
196 XtSetValues (widget
, al
, 1);
200 xlw_update_one_value (instance
, widget
, val
)
201 widget_instance
* instance
;
209 xlw_pop_instance (instance
, up
)
210 widget_instance
* instance
;
216 xlw_popup_menu (widget
, event
)
220 XButtonPressedEvent dummy
;
223 if (!XtIsShell (widget
))
226 mw
= (XlwMenuWidget
)((CompositeWidget
)widget
)->composite
.children
[0];
229 pop_up_menu (mw
, (XButtonPressedEvent
*) event
);
232 dummy
.type
= ButtonPress
;
234 dummy
.send_event
= 0;
235 dummy
.display
= XtDisplay (widget
);
236 dummy
.window
= XtWindow (XtParent (widget
));
237 dummy
.time
= CurrentTime
;
239 XQueryPointer (dummy
.display
, dummy
.window
, &dummy
.root
,
240 &dummy
.subwindow
, &dummy
.x_root
, &dummy
.y_root
,
241 &dummy
.x
, &dummy
.y
, &dummy
.state
);
243 pop_up_menu (mw
, &dummy
);
247 \f/* Destruction of instances */
249 xlw_destroy_instance (instance
)
250 widget_instance
* instance
;
252 if (instance
->widget
)
253 XtDestroyWidget (instance
->widget
);