*** empty log message ***
[bpt/emacs.git] / lwlib / lwlib-Xlw.c
CommitLineData
07bf635f
RS
1/* The lwlib interface to "xlwmenu" menus.
2 Copyright (C) 1992 Lucid, Inc.
92b47a4a 3 Copyright (C) 1994, 2000, 2001, 2002, 2003, 2004,
5b0d63bc 4 2005, 2006 Free Software Foundation, Inc.
07bf635f
RS
5
6This file is part of the Lucid Widget Library.
7
177c0ea7 8The Lucid Widget Library is free software; you can redistribute it and/or
07bf635f
RS
9modify it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 1, or (at your option)
11any later version.
12
13The Lucid Widget Library is distributed in the hope that it will be useful,
177c0ea7 14but WITHOUT ANY WARRANTY; without even the implied warranty of
07bf635f
RS
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GNU Emacs; see the file COPYING. If not, write to
364c38d3
LK
20the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21Boston, MA 02110-1301, USA. */
07bf635f 22
0f0912e6
PE
23#ifdef HAVE_CONFIG_H
24#include <config.h>
25#endif
26
e226063c 27#include "lisp.h"
2f96293d 28
07bf635f
RS
29#include "lwlib-Xlw.h"
30#include <X11/StringDefs.h>
31#include <X11/IntrinsicP.h>
32#include <X11/ObjectP.h>
33#include <X11/CompositeP.h>
34#include <X11/Shell.h>
35#include "xlwmenu.h"
36
d3a785ff
GM
37#if 0
38
39#include <stdio.h>
40
41/* Print the complete X resource name of widget WIDGET to stderr.
42 This is sometimes handy to have available. */
43
44void
45x_print_complete_resource_name (widget)
46 Widget widget;
47{
48 int i;
49 String names[100];
50
51 for (i = 0; i < 100 && widget != NULL; ++i)
52 {
53 names[i] = XtName (widget);
54 widget = XtParent (widget);
55 }
56
57 for (--i; i >= 1; --i)
58 fprintf (stderr, "%s.", names[i]);
59 fprintf (stderr, "%s\n", names[0]);
60}
61
62#endif /* 0 */
63
64
07bf635f 65\f/* Menu callbacks */
fa616ec4
GM
66
67/* Callback XtNhighlightCallback for Lucid menus. W is the menu
68 widget, CLIENT_DATA contains a pointer to the widget_instance
69 for the menu, CALL_DATA contains a pointer to the widget_value
70 structure for the highlighted menu item. The latter may be null
71 if there isn't any highlighted menu item. */
72
73static void
74highlight_hook (w, client_data, call_data)
75 Widget w;
76 XtPointer client_data;
77 XtPointer call_data;
78{
79 widget_instance *instance = (widget_instance *) client_data;
80
81 if (instance->info->highlight_cb
82 && !w->core.being_destroyed)
83 instance->info->highlight_cb (w, instance->info->id, call_data);
84}
85
07bf635f 86static void
345a94f9
RS
87pre_hook (w, client_data, call_data)
88 Widget w;
89 XtPointer client_data;
90 XtPointer call_data;
07bf635f
RS
91{
92 widget_instance* instance = (widget_instance*)client_data;
93 widget_value* val;
94
95 if (w->core.being_destroyed)
96 return;
97
98 val = lw_get_widget_value_for_widget (instance, w);
99 if (instance->info->pre_activate_cb)
100 instance->info->pre_activate_cb (w, instance->info->id,
101 val ? val->call_data : NULL);
102}
103
104static void
345a94f9
RS
105pick_hook (w, client_data, call_data)
106 Widget w;
107 XtPointer client_data;
108 XtPointer call_data;
07bf635f
RS
109{
110 widget_instance* instance = (widget_instance*)client_data;
111 widget_value* contents_val = (widget_value*)call_data;
112 widget_value* widget_val;
113 XtPointer widget_arg;
114
115 if (w->core.being_destroyed)
116 return;
117
118 if (instance->info->selection_cb && contents_val && contents_val->enabled
119 && !contents_val->contents)
120 instance->info->selection_cb (w, instance->info->id,
121 contents_val->call_data);
122
123 widget_val = lw_get_widget_value_for_widget (instance, w);
124 widget_arg = widget_val ? widget_val->call_data : NULL;
125 if (instance->info->post_activate_cb)
126 instance->info->post_activate_cb (w, instance->info->id, widget_arg);
127
128}
129
130\f/* creation functions */
0b96f00b 131
07bf635f 132static Widget
345a94f9
RS
133xlw_create_menubar (instance)
134 widget_instance* instance;
07bf635f 135{
9acc68b1 136 Widget widget;
5acc1a62 137 Arg al[5];
c52de5eb 138 int ac = 0;
9acc68b1 139
c52de5eb 140 XtSetArg (al[ac], XtNmenu, instance->info->val); ac++;
5acc1a62
PR
141#ifdef emacs
142 XtSetArg (al[ac], XtNshowGrip, 0); ac++;
143 XtSetArg (al[ac], XtNresizeToPreferred, 1); ac++;
144 XtSetArg (al[ac], XtNallowResize, 1); ac++;
145#endif
9acc68b1 146
c52de5eb
RS
147 /* This used to use XtVaCreateWidget, but an old Xt version
148 has a bug in XtVaCreateWidget that frees instance->info->name. */
364e6904 149 widget
c52de5eb
RS
150 = XtCreateWidget (instance->info->name, xlwMenuWidgetClass,
151 instance->parent, al, ac);
19240c20 152
07bf635f
RS
153 XtAddCallback (widget, XtNopen, pre_hook, (XtPointer)instance);
154 XtAddCallback (widget, XtNselect, pick_hook, (XtPointer)instance);
fa616ec4
GM
155 XtAddCallback (widget, XtNhighlightCallback, highlight_hook,
156 (XtPointer)instance);
07bf635f
RS
157 return widget;
158}
159
160static Widget
345a94f9
RS
161xlw_create_popup_menu (instance)
162 widget_instance* instance;
07bf635f 163{
364e6904
RS
164 Widget popup_shell
165 = XtCreatePopupShell (instance->info->name, overrideShellWidgetClass,
166 instance->parent, NULL, 0);
177c0ea7 167
19240c20 168 Widget widget;
c52de5eb
RS
169 Arg al[2];
170 int ac = 0;
19240c20 171
c52de5eb
RS
172 XtSetArg (al[ac], XtNmenu, instance->info->val); ac++;
173 XtSetArg (al[ac], XtNhorizontal, False); ac++;
19240c20 174
c52de5eb
RS
175 /* This used to use XtVaManagedCreateWidget, but an old Xt version
176 has a bug in XtVaManagedCreateWidget that frees instance->info->name. */
364e6904 177 widget
c52de5eb
RS
178 = XtCreateManagedWidget ("popup", xlwMenuWidgetClass,
179 popup_shell, al, ac);
19240c20 180
07bf635f 181 XtAddCallback (widget, XtNselect, pick_hook, (XtPointer)instance);
fa616ec4
GM
182 XtAddCallback (widget, XtNhighlightCallback, highlight_hook,
183 (XtPointer)instance);
244c93fe 184
07bf635f
RS
185 return popup_shell;
186}
187
177c0ea7 188widget_creation_entry
07bf635f
RS
189xlw_creation_table [] =
190{
191 {"menubar", xlw_create_menubar},
192 {"popup", xlw_create_popup_menu},
193 {NULL, NULL}
194};
195
196Boolean
345a94f9
RS
197lw_lucid_widget_p (widget)
198 Widget widget;
07bf635f
RS
199{
200 WidgetClass the_class = XtClass (widget);
364e6904 201
07bf635f
RS
202 if (the_class == xlwMenuWidgetClass)
203 return True;
204 if (the_class == overrideShellWidgetClass)
364e6904
RS
205 return (XtClass (((CompositeWidget)widget)->composite.children [0])
206 == xlwMenuWidgetClass);
07bf635f
RS
207 return False;
208}
209
210void
e226063c
DL
211#ifdef PROTOTYPES
212xlw_update_one_widget (widget_instance* instance, Widget widget,
213 widget_value* val, Boolean deep_p)
214#else
345a94f9
RS
215xlw_update_one_widget (instance, widget, val, deep_p)
216 widget_instance* instance;
217 Widget widget;
218 widget_value* val;
219 Boolean deep_p;
e226063c 220#endif
07bf635f 221{
c52de5eb 222 Arg al[1];
07bf635f 223
c52de5eb
RS
224 /* This used to use XtVaSetValues, but some old Xt versions
225 that have a bug in XtVaCreateWidget might have it here too. */
226 XtSetArg (al[0], XtNmenu, instance->info->val);
227
228 XtSetValues (widget, al, 1);
07bf635f
RS
229}
230
231void
345a94f9
RS
232xlw_update_one_value (instance, widget, val)
233 widget_instance* instance;
234 Widget widget;
235 widget_value* val;
07bf635f
RS
236{
237 return;
238}
239
240void
e226063c
DL
241#ifdef PROTOTYPES
242xlw_pop_instance (widget_instance* instance, Boolean up)
243#else
345a94f9
RS
244xlw_pop_instance (instance, up)
245 widget_instance* instance;
246 Boolean up;
e226063c 247#endif
07bf635f
RS
248{
249}
250
251void
0c7c510c 252xlw_popup_menu (widget, event)
345a94f9 253 Widget widget;
0c7c510c 254 XEvent *event;
07bf635f 255{
07bf635f
RS
256 XlwMenuWidget mw;
257
258 if (!XtIsShell (widget))
259 return;
260
261 mw = (XlwMenuWidget)((CompositeWidget)widget)->composite.children [0];
262
0c7c510c 263 if (event)
244c93fe 264 XtCallActionProc ((Widget) mw, "start", event, NULL, 0);
0c7c510c
RS
265 else
266 {
244c93fe
JD
267 XEvent dummy;
268 XButtonPressedEvent *bd = &dummy.xbutton;
269
270 bd->type = ButtonPress;
271 bd->serial = 0;
272 bd->send_event = 0;
273 bd->display = XtDisplay (widget);
274 bd->window = XtWindow (XtParent (widget));
275 bd->time = CurrentTime;
276 bd->button = 0;
277 XQueryPointer (bd->display, bd->window, &bd->root,
278 &bd->subwindow, &bd->x_root, &bd->y_root,
279 &bd->x, &bd->y, &bd->state);
280
281 XtCallActionProc ((Widget) mw, "start", &dummy, NULL, 0);
0c7c510c 282 }
07bf635f
RS
283}
284
285\f/* Destruction of instances */
286void
345a94f9
RS
287xlw_destroy_instance (instance)
288 widget_instance* instance;
07bf635f
RS
289{
290 if (instance->widget)
291 XtDestroyWidget (instance->widget);
292}
293
ab5796a9
MB
294/* arch-tag: 541e3912-477d-406e-9bf2-dbf2b7ff8c3b
295 (do not change this comment) */