Fix calendar-cursor-to-date to handle starred days correctly.
[emacs.git] / lwlib / lwlib-Xlw.c
blob4b48b231a4dbe066f3618085c81c0d5436d3e180
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)
9 any later version.
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, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 #include "lwlib-Xlw.h"
21 #include <X11/StringDefs.h>
22 #include <X11/IntrinsicP.h>
23 #include <X11/ObjectP.h>
24 #include <X11/CompositeP.h>
25 #include <X11/Shell.h>
26 #include "xlwmenu.h"
28 \f/* Menu callbacks */
29 static void
30 pre_hook (w, client_data, call_data)
31 Widget w;
32 XtPointer client_data;
33 XtPointer call_data;
35 widget_instance* instance = (widget_instance*)client_data;
36 widget_value* val;
38 if (w->core.being_destroyed)
39 return;
41 val = lw_get_widget_value_for_widget (instance, w);
42 if (instance->info->pre_activate_cb)
43 instance->info->pre_activate_cb (w, instance->info->id,
44 val ? val->call_data : NULL);
47 static void
48 pick_hook (w, client_data, call_data)
49 Widget w;
50 XtPointer client_data;
51 XtPointer call_data;
53 widget_instance* instance = (widget_instance*)client_data;
54 widget_value* contents_val = (widget_value*)call_data;
55 widget_value* widget_val;
56 XtPointer widget_arg;
58 if (w->core.being_destroyed)
59 return;
61 if (instance->info->selection_cb && contents_val && contents_val->enabled
62 && !contents_val->contents)
63 instance->info->selection_cb (w, instance->info->id,
64 contents_val->call_data);
66 widget_val = lw_get_widget_value_for_widget (instance, w);
67 widget_arg = widget_val ? widget_val->call_data : NULL;
68 if (instance->info->post_activate_cb)
69 instance->info->post_activate_cb (w, instance->info->id, widget_arg);
73 \f/* creation functions */
75 static Widget
76 xlw_create_menubar (instance)
77 widget_instance* instance;
79 Widget widget;
81 /* Don't use malloc_widget_value, because the freeing will be done by free.
82 (Also it wastes time calling memset). */
83 widget_value *tem = (widget_value *) malloc (sizeof (widget_value));
85 /* _XtCreate is freeing the object we passed,
86 so make a copy that we free later. */
87 bcopy (instance->info->val, tem, sizeof (widget_value));
89 widget
90 = XtVaCreateWidget (instance->info->name, xlwMenuWidgetClass,
91 instance->parent,
92 XtNmenu, tem,
93 0);
95 #if 0 /* XtVaCreateWidget frees this, at least in the X11R4
96 version that is running on mole.gnu.ai.mit.edu. */
97 free_widget_value (tem);
98 #endif
100 XtAddCallback (widget, XtNopen, pre_hook, (XtPointer)instance);
101 XtAddCallback (widget, XtNselect, pick_hook, (XtPointer)instance);
102 return widget;
105 static Widget
106 xlw_create_popup_menu (instance)
107 widget_instance* instance;
109 Widget popup_shell
110 = XtCreatePopupShell (instance->info->name, overrideShellWidgetClass,
111 instance->parent, NULL, 0);
113 Widget widget;
115 /* Don't use malloc_widget_value, because the freeing will be done by free.
116 (Also it wastes time calling memset). */
117 widget_value *tem = (widget_value *) malloc (sizeof (widget_value));
119 /* _XtCreate is freeing the object we passed,
120 so make a copy that we free later. */
121 bcopy (instance->info->val, tem, sizeof (widget_value));
123 widget
124 = XtVaCreateManagedWidget ("popup", xlwMenuWidgetClass,
125 popup_shell,
126 XtNmenu, tem,
127 XtNhorizontal, False,
130 #if 0
131 free_widget_value (tem);
132 #endif
134 XtAddCallback (widget, XtNselect, pick_hook, (XtPointer)instance);
136 return popup_shell;
139 widget_creation_entry
140 xlw_creation_table [] =
142 {"menubar", xlw_create_menubar},
143 {"popup", xlw_create_popup_menu},
144 {NULL, NULL}
147 Boolean
148 lw_lucid_widget_p (widget)
149 Widget widget;
151 WidgetClass the_class = XtClass (widget);
153 if (the_class == xlwMenuWidgetClass)
154 return True;
155 if (the_class == overrideShellWidgetClass)
156 return (XtClass (((CompositeWidget)widget)->composite.children [0])
157 == xlwMenuWidgetClass);
158 return False;
161 void
162 xlw_update_one_widget (instance, widget, val, deep_p)
163 widget_instance* instance;
164 Widget widget;
165 widget_value* val;
166 Boolean deep_p;
168 XlwMenuWidget mw;
170 if (XtIsShell (widget))
171 mw = (XlwMenuWidget)((CompositeWidget)widget)->composite.children [0];
172 else
173 mw = (XlwMenuWidget)widget;
174 XtVaSetValues (widget, XtNmenu, val, 0);
177 void
178 xlw_update_one_value (instance, widget, val)
179 widget_instance* instance;
180 Widget widget;
181 widget_value* val;
183 return;
186 void
187 xlw_pop_instance (instance, up)
188 widget_instance* instance;
189 Boolean up;
193 void
194 xlw_popup_menu (widget)
195 Widget widget;
197 XButtonPressedEvent dummy;
198 XlwMenuWidget mw;
200 if (!XtIsShell (widget))
201 return;
203 mw = (XlwMenuWidget)((CompositeWidget)widget)->composite.children [0];
205 dummy.type = ButtonPress;
206 dummy.serial = 0;
207 dummy.send_event = 0;
208 dummy.display = XtDisplay (widget);
209 dummy.window = XtWindow (XtParent (widget));
210 dummy.time = CurrentTime;
211 dummy.button = 0;
212 XQueryPointer (dummy.display, dummy.window, &dummy.root,
213 &dummy.subwindow, &dummy.x_root, &dummy.y_root,
214 &dummy.x, &dummy.y, &dummy.state);
216 pop_up_menu (mw, &dummy);
219 \f/* Destruction of instances */
220 void
221 xlw_destroy_instance (instance)
222 widget_instance* instance;
224 if (instance->widget)
225 XtDestroyWidget (instance->widget);