Mercurial > emacs
annotate lwlib/lwlib-Xm.c @ 27377:deeb1c237778
(dolist, dotimes): Moved to subr.el.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 21 Jan 2000 02:09:37 +0000 |
parents | 15a661269a09 |
children | 5c5bb4b1ff45 |
rev | line source |
---|---|
5626 | 1 /* The lwlib interface to Motif widgets. |
2 Copyright (C) 1992 Lucid, Inc. | |
3 | |
4 This file is part of the Lucid Widget Library. | |
5 | |
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. | |
10 | |
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. | |
15 | |
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 | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14018
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14018
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
5626 | 20 |
26087
e0d966fb548f
Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents:
25885
diff
changeset
|
21 #ifdef HAVE_CONFIG_H |
e0d966fb548f
Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents:
25885
diff
changeset
|
22 #include <config.h> |
e0d966fb548f
Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents:
25885
diff
changeset
|
23 #endif |
e0d966fb548f
Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents:
25885
diff
changeset
|
24 |
5626 | 25 #include <unistd.h> |
26 #include <stdio.h> | |
27 | |
28 #include <X11/StringDefs.h> | |
29 #include <X11/IntrinsicP.h> | |
30 #include <X11/ObjectP.h> | |
31 #include <X11/CoreP.h> | |
32 #include <X11/CompositeP.h> | |
33 | |
34 #include "lwlib-Xm.h" | |
35 #include "lwlib-utils.h" | |
36 | |
37 #include <Xm/BulletinB.h> | |
38 #include <Xm/CascadeB.h> | |
14931
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
39 #include <Xm/CascadeBG.h> |
5626 | 40 #include <Xm/DrawingA.h> |
41 #include <Xm/FileSB.h> | |
42 #include <Xm/Label.h> | |
43 #include <Xm/List.h> | |
8784 | 44 #include <Xm/MainW.h> |
5626 | 45 #include <Xm/MenuShell.h> |
46 #include <Xm/MessageB.h> | |
8784 | 47 #include <Xm/PanedW.h> |
5626 | 48 #include <Xm/PushB.h> |
49 #include <Xm/PushBG.h> | |
50 #include <Xm/ArrowB.h> | |
51 #include <Xm/SelectioB.h> | |
52 #include <Xm/Text.h> | |
53 #include <Xm/TextF.h> | |
54 #include <Xm/ToggleB.h> | |
55 #include <Xm/ToggleBG.h> | |
56 #include <Xm/RowColumn.h> | |
57 #include <Xm/ScrolledW.h> | |
58 #include <Xm/Separator.h> | |
59 #include <Xm/DialogS.h> | |
60 #include <Xm/Form.h> | |
61 | |
25037 | 62 #ifdef __STDC__ |
63 #define P_(X) X | |
64 #else | |
65 #define P_(X) () | |
66 #endif | |
5626 | 67 |
25037 | 68 enum do_call_type { pre_activate, selection, no_selection, post_activate }; |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
69 |
5626 | 70 |
71 /* Structures to keep destroyed instances */ | |
72 typedef struct _destroyed_instance | |
73 { | |
74 char* name; | |
75 char* type; | |
76 Widget widget; | |
77 Widget parent; | |
78 Boolean pop_up_p; | |
79 struct _destroyed_instance* next; | |
80 } destroyed_instance; | |
81 | |
25037 | 82 static destroyed_instance *make_destroyed_instance P_ ((char *, char *, |
83 Widget, Widget, | |
84 Boolean)); | |
85 static void free_destroyed_instance P_ ((destroyed_instance*)); | |
86 Widget first_child P_ ((Widget)); | |
87 Boolean lw_motif_widget_p P_ ((Widget)); | |
88 static XmString resource_motif_string P_ ((Widget, char *)); | |
89 static void destroy_all_children P_ ((Widget, int)); | |
90 static void xm_update_label P_ ((widget_instance *, Widget, widget_value *)); | |
91 static void xm_update_list P_ ((widget_instance *, Widget, widget_value *)); | |
92 static void xm_update_pushbutton P_ ((widget_instance *, Widget, | |
93 widget_value *)); | |
94 static void xm_update_cascadebutton P_ ((widget_instance *, Widget, | |
95 widget_value *)); | |
96 static void xm_update_toggle P_ ((widget_instance *, Widget, widget_value *)); | |
97 static void xm_update_radiobox P_ ((widget_instance *, Widget, widget_value *)); | |
98 static void make_menu_in_widget P_ ((widget_instance *, Widget, | |
99 widget_value *, int)); | |
100 static void update_one_menu_entry P_ ((widget_instance *, Widget, | |
101 widget_value *, Boolean)); | |
102 static void xm_update_menu P_ ((widget_instance *, Widget, widget_value *, | |
103 Boolean)); | |
104 static void xm_update_text P_ ((widget_instance *, Widget, widget_value *)); | |
105 static void xm_update_text_field P_ ((widget_instance *, Widget, | |
106 widget_value *)); | |
107 void xm_update_one_value P_ ((widget_instance *, Widget, widget_value *)); | |
108 static void activate_button P_ ((Widget, XtPointer, XtPointer)); | |
109 static Widget make_dialog P_ ((char *, Widget, Boolean, char *, char *, | |
110 Boolean, Boolean, Boolean, int, int)); | |
111 static destroyed_instance* find_matching_instance P_ ((widget_instance*)); | |
112 static void mark_dead_instance_destroyed P_ ((Widget, XtPointer, XtPointer)); | |
113 static void recenter_widget P_ ((Widget)); | |
114 static Widget recycle_instance P_ ((destroyed_instance*)); | |
115 Widget xm_create_dialog P_ ((widget_instance*)); | |
116 static Widget make_menubar P_ ((widget_instance*)); | |
117 static void remove_grabs P_ ((Widget, XtPointer, XtPointer)); | |
118 static Widget make_popup_menu P_ ((widget_instance*)); | |
119 static Widget make_main P_ ((widget_instance*)); | |
120 void xm_destroy_instance P_ ((widget_instance*)); | |
121 void xm_popup_menu P_ ((Widget, XEvent *)); | |
122 static void set_min_dialog_size P_ ((Widget)); | |
123 static void do_call P_ ((Widget, XtPointer, enum do_call_type)); | |
124 static void xm_generic_callback P_ ((Widget, XtPointer, XtPointer)); | |
125 static void xm_nosel_callback P_ ((Widget, XtPointer, XtPointer)); | |
126 static void xm_pull_down_callback P_ ((Widget, XtPointer, XtPointer)); | |
127 static void xm_pop_down_callback P_ ((Widget, XtPointer, XtPointer)); | |
128 void xm_set_keyboard_focus P_ ((Widget, Widget)); | |
129 void xm_set_main_areas P_ ((Widget, Widget, Widget)); | |
130 static void xm_internal_update_other_instances P_ ((Widget, XtPointer, | |
131 XtPointer)); | |
27333
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
132 static void xm_arm_callback P_ ((Widget, XtPointer, XtPointer)); |
25037 | 133 |
134 #if 0 | |
135 void xm_update_one_widget P_ ((widget_instance *, Widget, widget_value *, | |
136 Boolean)); | |
137 void xm_pop_instance P_ ((widget_instance*, Boolean)); | |
138 void xm_manage_resizing P_ ((Widget, Boolean)); | |
139 #endif | |
140 | |
141 | |
27333
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
142 static destroyed_instance *all_destroyed_instances = NULL; |
5626 | 143 |
144 static destroyed_instance* | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
145 make_destroyed_instance (name, type, widget, parent, pop_up_p) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
146 char* name; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
147 char* type; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
148 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
149 Widget parent; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
150 Boolean pop_up_p; |
5626 | 151 { |
152 destroyed_instance* instance = | |
153 (destroyed_instance*)malloc (sizeof (destroyed_instance)); | |
8784 | 154 instance->name = safe_strdup (name); |
155 instance->type = safe_strdup (type); | |
5626 | 156 instance->widget = widget; |
157 instance->parent = parent; | |
158 instance->pop_up_p = pop_up_p; | |
159 instance->next = NULL; | |
160 return instance; | |
161 } | |
162 | |
163 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
164 free_destroyed_instance (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
165 destroyed_instance* instance; |
5626 | 166 { |
167 free (instance->name); | |
168 free (instance->type); | |
169 free (instance); | |
170 } | |
171 | |
172 /* motif utility functions */ | |
173 Widget | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
174 first_child (widget) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
175 Widget widget; |
5626 | 176 { |
177 return ((CompositeWidget)widget)->composite.children [0]; | |
178 } | |
179 | |
180 Boolean | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
181 lw_motif_widget_p (widget) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
182 Widget widget; |
5626 | 183 { |
184 return | |
185 XtClass (widget) == xmDialogShellWidgetClass | |
186 || XmIsPrimitive (widget) || XmIsManager (widget) || XmIsGadget (widget); | |
187 } | |
188 | |
189 static XmString | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
190 resource_motif_string (widget, name) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
191 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
192 char* name; |
5626 | 193 { |
194 XtResource resource; | |
195 XmString result = 0; | |
196 | |
197 resource.resource_name = name; | |
198 resource.resource_class = XmCXmString; | |
199 resource.resource_type = XmRXmString; | |
200 resource.resource_size = sizeof (XmString); | |
201 resource.resource_offset = 0; | |
202 resource.default_type = XtRImmediate; | |
203 resource.default_addr = 0; | |
204 | |
205 XtGetSubresources (widget, (XtPointer)&result, "dialogString", | |
206 "DialogString", &resource, 1, NULL, 0); | |
207 return result; | |
208 } | |
209 | |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
210 /* Destroy all of the children of WIDGET |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
211 starting with number FIRST_CHILD_TO_DESTROY. */ |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
212 |
5626 | 213 static void |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
214 destroy_all_children (widget, first_child_to_destroy) |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
215 Widget widget; |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
216 int first_child_to_destroy; |
5626 | 217 { |
218 Widget* children; | |
219 unsigned int number; | |
220 int i; | |
221 | |
222 children = XtCompositeChildren (widget, &number); | |
223 if (children) | |
224 { | |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
225 XtUnmanageChildren (children + first_child_to_destroy, |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
226 number - first_child_to_destroy); |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
227 |
5626 | 228 /* Unmanage all children and destroy them. They will only be |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
229 really destroyed when we get out of DispatchEvent. */ |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
230 for (i = first_child_to_destroy; i < number; i++) |
14931
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
231 { |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
232 Arg al[2]; |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
233 Widget submenu = 0; |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
234 /* Cascade buttons have submenus,and these submenus |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
235 need to be freed. But they are not included in |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
236 XtCompositeChildren. So get it out of the cascade button |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
237 and free it. If this child is not a cascade button, |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
238 then submenu should remain unchanged. */ |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
239 XtSetArg (al[0], XmNsubMenuId, &submenu); |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
240 XtGetValues (children[i], al, 1); |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
241 if (submenu) |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
242 XtDestroyWidget (submenu); |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
243 XtDestroyWidget (children[i]); |
0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
Richard M. Stallman <rms@gnu.org>
parents:
14877
diff
changeset
|
244 } |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
245 |
5626 | 246 XtFree ((char *) children); |
247 } | |
248 } | |
249 | |
27333
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
250 |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
251 |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
252 /* Callback XmNarmCallback and XmNdisarmCallback for buttons in a |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
253 menu. CLIENT_DATA contains a pointer to the widget_value |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
254 corresponding to widget W. CALL_DATA contains a |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
255 XmPushButtonCallbackStruct containing the reason why the callback |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
256 is called. */ |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
257 |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
258 static void |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
259 xm_arm_callback (w, client_data, call_data) |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
260 Widget w; |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
261 XtPointer client_data, call_data; |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
262 { |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
263 XmPushButtonCallbackStruct *cbs = (XmPushButtonCallbackStruct *) call_data; |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
264 widget_value *wv = (widget_value *) client_data; |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
265 widget_instance *instance; |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
266 |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
267 /* Get the id of the menu bar or popup menu this widget is in. */ |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
268 while (1) |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
269 { |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
270 if (XmIsRowColumn (w)) |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
271 { |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
272 unsigned char type = 0xff; |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
273 |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
274 XtVaGetValues (w, XmNrowColumnType, &type, NULL); |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
275 if (type == XmMENU_BAR || type == XmMENU_POPUP) |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
276 break; |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
277 } |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
278 |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
279 w = XtParent (w); |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
280 } |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
281 |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
282 instance = lw_get_widget_instance (w); |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
283 if (instance && instance->info->highlight_cb) |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
284 { |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
285 call_data = cbs->reason == XmCR_DISARM ? NULL : wv; |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
286 instance->info->highlight_cb (w, instance->info->id, call_data); |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
287 } |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
288 } |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
289 |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
290 |
25037 | 291 |
292 /* Update the label of widget WIDGET. WIDGET must be a Label widget | |
293 or a subclass of Label. WIDGET_INSTANCE is unused. VAL contains | |
294 the value to update. | |
295 | |
296 Menus: | |
297 | |
298 Emacs fills VAL->name with the text to display in the menu, and | |
299 sets VAL->value to null. Function make_menu_in_widget creates | |
300 widgets with VAL->name as resource name. This works because the | |
301 Label widget uses its resource name for display if no | |
302 XmNlabelString is set. | |
303 | |
304 Dialogs: | |
305 | |
306 VAL->name is again set to the resource name, but VAL->value is | |
307 not null, and contains the label string to display. */ | |
308 | |
5626 | 309 static void |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
310 xm_update_label (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
311 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
312 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
313 widget_value* val; |
5626 | 314 { |
315 XmString res_string = 0; | |
316 XmString built_string = 0; | |
317 XmString key_string = 0; | |
318 Arg al [256]; | |
319 int ac; | |
25037 | 320 |
5626 | 321 ac = 0; |
322 | |
323 if (val->value) | |
324 { | |
25037 | 325 /* A label string is specified, i.e. we are in a dialog. First |
326 see if it is overridden by something from the resource file. */ | |
5626 | 327 res_string = resource_motif_string (widget, val->value); |
328 | |
329 if (res_string) | |
330 { | |
331 XtSetArg (al [ac], XmNlabelString, res_string); ac++; | |
332 } | |
333 else | |
334 { | |
335 built_string = | |
336 XmStringCreateLtoR (val->value, XmSTRING_DEFAULT_CHARSET); | |
337 XtSetArg (al [ac], XmNlabelString, built_string); ac++; | |
338 } | |
25037 | 339 |
5626 | 340 XtSetArg (al [ac], XmNlabelType, XmSTRING); ac++; |
341 } | |
342 | |
343 if (val->key) | |
344 { | |
345 key_string = XmStringCreateLtoR (val->key, XmSTRING_DEFAULT_CHARSET); | |
346 XtSetArg (al [ac], XmNacceleratorText, key_string); ac++; | |
347 } | |
348 | |
349 if (ac) | |
350 XtSetValues (widget, al, ac); | |
351 | |
352 if (built_string) | |
353 XmStringFree (built_string); | |
354 | |
355 if (key_string) | |
356 XmStringFree (key_string); | |
357 } | |
358 | |
359 /* update of list */ | |
360 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
361 xm_update_list (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
362 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
363 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
364 widget_value* val; |
5626 | 365 { |
366 widget_value* cur; | |
367 int i; | |
368 XtRemoveAllCallbacks (widget, XmNsingleSelectionCallback); | |
369 XtAddCallback (widget, XmNsingleSelectionCallback, xm_generic_callback, | |
370 instance); | |
371 for (cur = val->contents, i = 0; cur; cur = cur->next) | |
372 if (cur->value) | |
373 { | |
374 XmString xmstr = XmStringCreate (cur->value, XmSTRING_DEFAULT_CHARSET); | |
375 i += 1; | |
376 XmListAddItem (widget, xmstr, 0); | |
377 if (cur->selected) | |
378 XmListSelectPos (widget, i, False); | |
379 XmStringFree (xmstr); | |
380 } | |
381 } | |
382 | |
383 /* update of buttons */ | |
384 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
385 xm_update_pushbutton (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
386 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
387 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
388 widget_value* val; |
5626 | 389 { |
390 XtVaSetValues (widget, XmNalignment, XmALIGNMENT_CENTER, 0); | |
391 XtRemoveAllCallbacks (widget, XmNactivateCallback); | |
392 XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance); | |
393 } | |
394 | |
395 static void | |
11862
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
396 xm_update_cascadebutton (instance, widget, val) |
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
397 widget_instance* instance; |
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
398 Widget widget; |
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
399 widget_value* val; |
5626 | 400 { |
401 /* Should also rebuild the menu by calling ...update_menu... */ | |
402 XtRemoveAllCallbacks (widget, XmNcascadingCallback); | |
403 XtAddCallback (widget, XmNcascadingCallback, xm_pull_down_callback, | |
404 instance); | |
405 } | |
406 | |
407 /* update toggle and radiobox */ | |
408 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
409 xm_update_toggle (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
410 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
411 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
412 widget_value* val; |
5626 | 413 { |
414 XtRemoveAllCallbacks (widget, XmNvalueChangedCallback); | |
415 XtAddCallback (widget, XmNvalueChangedCallback, | |
25037 | 416 xm_generic_callback, instance); |
5626 | 417 XtVaSetValues (widget, XmNset, val->selected, |
418 XmNalignment, XmALIGNMENT_BEGINNING, 0); | |
419 } | |
420 | |
421 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
422 xm_update_radiobox (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
423 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
424 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
425 widget_value* val; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
426 |
5626 | 427 { |
428 Widget toggle; | |
429 widget_value* cur; | |
430 | |
431 /* update the callback */ | |
432 XtRemoveAllCallbacks (widget, XmNentryCallback); | |
433 XtAddCallback (widget, XmNentryCallback, xm_generic_callback, instance); | |
434 | |
435 /* first update all the toggles */ | |
436 /* Energize kernel interface is currently bad. It sets the selected widget | |
437 with the selected flag but returns it by its name. So we currently | |
438 have to support both setting the selection with the selected slot | |
439 of val contents and setting it with the "value" slot of val. The latter | |
440 has a higher priority. This to be removed when the kernel is fixed. */ | |
441 for (cur = val->contents; cur; cur = cur->next) | |
442 { | |
443 toggle = XtNameToWidget (widget, cur->value); | |
444 if (toggle) | |
445 { | |
446 XtVaSetValues (toggle, XmNsensitive, cur->enabled, 0); | |
447 if (!val->value && cur->selected) | |
448 XtVaSetValues (toggle, XmNset, cur->selected, 0); | |
449 if (val->value && strcmp (val->value, cur->value)) | |
450 XtVaSetValues (toggle, XmNset, False, 0); | |
451 } | |
452 } | |
453 | |
454 /* The selected was specified by the value slot */ | |
455 if (val->value) | |
456 { | |
457 toggle = XtNameToWidget (widget, val->value); | |
458 if (toggle) | |
459 XtVaSetValues (toggle, XmNset, True, 0); | |
460 } | |
461 } | |
462 | |
25037 | 463 |
464 /* update a popup menu, pulldown menu or a menubar */ | |
5626 | 465 |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
466 /* KEEP_FIRST_CHILDREN gives the number of initial children to keep. */ |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
467 |
5626 | 468 static void |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
469 make_menu_in_widget (instance, widget, val, keep_first_children) |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
470 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
471 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
472 widget_value* val; |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
473 int keep_first_children; |
5626 | 474 { |
475 Widget* children = 0; | |
476 int num_children; | |
477 int child_index; | |
478 widget_value* cur; | |
479 Widget button = 0; | |
25037 | 480 Widget title = 0; |
5626 | 481 Widget menu; |
482 Arg al [256]; | |
483 int ac; | |
484 Boolean menubar_p; | |
25037 | 485 unsigned char type; |
5626 | 486 |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
487 Widget* old_children; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
488 unsigned int old_num_children; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
489 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
490 old_children = XtCompositeChildren (widget, &old_num_children); |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
491 |
5626 | 492 /* Allocate the children array */ |
493 for (num_children = 0, cur = val; cur; num_children++, cur = cur->next); | |
494 children = (Widget*)XtMalloc (num_children * sizeof (Widget)); | |
495 | |
25037 | 496 /* WIDGET should be a RowColumn. */ |
497 if (!XmIsRowColumn (widget)) | |
498 abort (); | |
499 | |
500 /* Determine whether WIDGET is a menu bar. */ | |
501 type = -1; | |
502 XtSetArg (al[0], XmNrowColumnType, &type); | |
5626 | 503 XtGetValues (widget, al, 1); |
25037 | 504 if (type != XmMENU_BAR && type != XmMENU_PULLDOWN && type != XmMENU_POPUP) |
505 abort (); | |
506 menubar_p = type == XmMENU_BAR; | |
5626 | 507 |
25037 | 508 /* Add a callback to popups and pulldowns that is called when |
509 it is made invisible again. */ | |
5626 | 510 if (!menubar_p) |
511 XtAddCallback (XtParent (widget), XmNpopdownCallback, | |
512 xm_pop_down_callback, (XtPointer)instance); | |
513 | |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
514 /* Preserve the first KEEP_FIRST_CHILDREN old children. */ |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
515 for (child_index = 0, cur = val; child_index < keep_first_children; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
516 child_index++, cur = cur->next) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
517 children[child_index] = old_children[child_index]; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
518 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
519 /* Check that those are all we have |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
520 (the caller should have deleted the rest). */ |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
521 if (old_num_children != keep_first_children) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
522 abort (); |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
523 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
524 /* Create the rest. */ |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
525 for (child_index = keep_first_children; cur; child_index++, cur = cur->next) |
25037 | 526 { |
527 enum menu_separator separator; | |
528 | |
5626 | 529 ac = 0; |
25037 | 530 XtSetArg (al[ac], XmNsensitive, cur->enabled); ac++; |
531 XtSetArg (al[ac], XmNalignment, XmALIGNMENT_BEGINNING); ac++; | |
532 XtSetArg (al[ac], XmNuserData, cur->call_data); ac++; | |
5626 | 533 |
9835
d2250d1b0f48
(make_menu_in_widget): Differentiate a separator entry ("--") from a
Paul Reilly <pmr@pajato.com>
parents:
9825
diff
changeset
|
534 if (instance->pop_up_p && !cur->contents && !cur->call_data |
25037 | 535 && !lw_separator_p (cur->name, &separator, 1)) |
9224
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
536 { |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
537 ac = 0; |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
538 XtSetArg (al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++; |
25037 | 539 title = button = XmCreateLabel (widget, cur->name, al, ac); |
9224
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
540 } |
25037 | 541 else if (lw_separator_p (cur->name, &separator, 1)) |
5626 | 542 { |
25037 | 543 ac = 0; |
544 XtSetArg (al[ac], XmNseparatorType, separator); ++ac; | |
545 button = XmCreateSeparator (widget, cur->name, al, ac); | |
5626 | 546 } |
547 else if (!cur->contents) | |
548 { | |
549 if (menubar_p) | |
550 button = XmCreateCascadeButton (widget, cur->name, al, ac); | |
551 else if (!cur->call_data) | |
552 button = XmCreateLabel (widget, cur->name, al, ac); | |
25037 | 553 else if (cur->button_type == BUTTON_TYPE_TOGGLE |
554 || cur->button_type == BUTTON_TYPE_RADIO) | |
555 { | |
556 XtSetArg (al[ac], XmNset, cur->selected); ++ac; | |
557 XtSetArg (al[ac], XmNvisibleWhenOff, True); ++ac; | |
558 XtSetArg (al[ac], XmNindicatorType, | |
559 (cur->button_type == BUTTON_TYPE_TOGGLE | |
560 ? XmN_OF_MANY : XmONE_OF_MANY)); | |
561 ++ac; | |
25885
6a0fe1278e4d
(make_menu_in_widget, update_one_menu_entry): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25037
diff
changeset
|
562 button = XmCreateToggleButton (widget, cur->name, al, ac); |
27333
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
563 XtAddCallback (button, XmNarmCallback, xm_arm_callback, cur); |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
564 XtAddCallback (button, XmNdisarmCallback, xm_arm_callback, cur); |
25037 | 565 } |
5626 | 566 else |
27333
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
567 { |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
568 button = XmCreatePushButton (widget, cur->name, al, ac); |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
569 XtAddCallback (button, XmNarmCallback, xm_arm_callback, cur); |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
570 XtAddCallback (button, XmNdisarmCallback, xm_arm_callback, cur); |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
571 } |
a5bceda5d689
(xm_arm_callback): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
572 |
5626 | 573 xm_update_label (instance, button, cur); |
25037 | 574 |
575 /* Add a callback that is called when the button is | |
576 selected. Toggle buttons don't support | |
577 XmNactivateCallback, we use XmNvalueChangedCallback in | |
578 that case. Don't add a callback to a simple label. */ | |
579 if (cur->button_type) | |
580 xm_update_toggle (instance, button, cur); | |
581 else if (cur->call_data) | |
5626 | 582 XtAddCallback (button, XmNactivateCallback, xm_generic_callback, |
583 (XtPointer)instance); | |
584 } | |
585 else | |
586 { | |
11435
efaaecd960ae
(update_one_menu_entry, make_menu_in_widget):
Richard M. Stallman <rms@gnu.org>
parents:
11299
diff
changeset
|
587 menu = XmCreatePulldownMenu (widget, cur->name, NULL, 0); |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
588 make_menu_in_widget (instance, menu, cur->contents, 0); |
15375
1beabd8b78a1
(make_menu_in_widget): Set mapping delay
Richard M. Stallman <rms@gnu.org>
parents:
14931
diff
changeset
|
589 XtSetArg (al [ac], XmNsubMenuId, menu); ac++; |
25037 | 590 /* Non-zero values don't work reliably in conjunction with |
591 Emacs' event loop */ | |
15375
1beabd8b78a1
(make_menu_in_widget): Set mapping delay
Richard M. Stallman <rms@gnu.org>
parents:
14931
diff
changeset
|
592 XtSetArg (al [ac], XmNmappingDelay, 0); ac++; |
25885
6a0fe1278e4d
(make_menu_in_widget, update_one_menu_entry): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25037
diff
changeset
|
593 button = XmCreateCascadeButton (widget, cur->name, al, ac); |
5626 | 594 |
595 xm_update_label (instance, button, cur); | |
596 | |
597 XtAddCallback (button, XmNcascadingCallback, xm_pull_down_callback, | |
598 (XtPointer)instance); | |
599 } | |
600 | |
25037 | 601 children[child_index] = button; |
5626 | 602 } |
603 | |
25037 | 604 /* Last entry is the help button. The original comment read "Has to |
605 be done after managing the buttons otherwise the menubar is only | |
606 4 pixels high." This is no longer true, and to make | |
607 XmNmenuHelpWidget work, we need to set it before managing the | |
608 children.. --gerd. */ | |
5626 | 609 if (button) |
25037 | 610 XtVaSetValues (widget, XmNmenuHelpWidget, button, 0); |
611 | |
612 /* LessTif apparently doesn't recompute centered text when more | |
613 widgets are added. So, do it after all widgets have been | |
614 created. */ | |
615 if (title) | |
616 XtVaSetValues (title, XmNalignment, XmALIGNMENT_CENTER, 0); | |
617 | |
618 if (num_children) | |
619 XtManageChildren (children, num_children); | |
5626 | 620 |
621 XtFree ((char *) children); | |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
622 if (old_children) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
623 XtFree ((char *) old_children); |
5626 | 624 } |
625 | |
626 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
627 update_one_menu_entry (instance, widget, val, deep_p) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
628 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
629 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
630 widget_value* val; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
631 Boolean deep_p; |
5626 | 632 { |
633 Arg al [256]; | |
634 int ac; | |
635 Widget menu; | |
636 widget_value* contents; | |
637 | |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
638 if (val->this_one_change == NO_CHANGE) |
5626 | 639 return; |
640 | |
641 /* update the sensitivity and userdata */ | |
642 /* Common to all widget types */ | |
643 XtVaSetValues (widget, | |
644 XmNsensitive, val->enabled, | |
645 XmNuserData, val->call_data, | |
646 0); | |
647 | |
648 /* update the menu button as a label. */ | |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
649 if (val->this_one_change >= VISIBLE_CHANGE) |
25037 | 650 { |
651 xm_update_label (instance, widget, val); | |
652 if (val->button_type) | |
653 xm_update_toggle (instance, widget, val); | |
654 } | |
5626 | 655 |
656 /* update the pulldown/pullaside as needed */ | |
657 ac = 0; | |
658 menu = NULL; | |
659 XtSetArg (al [ac], XmNsubMenuId, &menu); ac++; | |
660 XtGetValues (widget, al, ac); | |
661 | |
662 contents = val->contents; | |
663 | |
664 if (!menu) | |
665 { | |
666 if (contents) | |
667 { | |
15853
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
668 unsigned int old_num_children, i; |
15859
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
669 Widget parent; |
15853
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
670 Widget *widget_list; |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
671 |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
672 parent = XtParent (widget); |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
673 widget_list = XtCompositeChildren (parent, &old_num_children); |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
674 |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
675 /* Find the widget position within the parent's widget list. */ |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
676 for (i = 0; i < old_num_children; i++) |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
677 if (strcmp (XtName (widget_list[i]), XtName (widget)) == 0) |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
678 break; |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
679 if (i == old_num_children) |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
680 abort (); |
15859
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
681 if (XmIsCascadeButton (widget_list[i])) |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
682 { |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
683 menu = XmCreatePulldownMenu (parent, XtName(widget), NULL, 0); |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
684 make_menu_in_widget (instance, menu, contents, 0); |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
685 ac = 0; |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
686 XtSetArg (al [ac], XmNsubMenuId, menu); ac++; |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
687 XtSetValues (widget, al, ac); |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
688 } |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
689 else |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
690 { |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
691 Widget button; |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
692 |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
693 /* The current menuitem is a XmPushButtonGadget, it |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
694 needs to be replaced by a CascadeButtonGadget */ |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
695 XtDestroyWidget (widget_list[i]); |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
696 menu = XmCreatePulldownMenu (parent, val->name, NULL, 0); |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
697 make_menu_in_widget (instance, menu, contents, 0); |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
698 ac = 0; |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
699 XtSetArg (al [ac], XmNsubMenuId, menu); ac++; |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
700 /* Non-zero values don't work reliably in |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
701 conjunction with Emacs' event loop */ |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
702 XtSetArg (al [ac], XmNmappingDelay, 0); ac++; |
20471
d4e514328333
(update_one_menu_entry): Add conditional in case XmNpositionIndex is missing.
Richard M. Stallman <rms@gnu.org>
parents:
15859
diff
changeset
|
703 #ifdef XmNpositionIndex /* This is undefined on SCO ODT 2.0. */ |
15859
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
704 /* Tell Motif to put it in the right place */ |
20471
d4e514328333
(update_one_menu_entry): Add conditional in case XmNpositionIndex is missing.
Richard M. Stallman <rms@gnu.org>
parents:
15859
diff
changeset
|
705 XtSetArg (al [ac], XmNpositionIndex , i); ac++; |
d4e514328333
(update_one_menu_entry): Add conditional in case XmNpositionIndex is missing.
Richard M. Stallman <rms@gnu.org>
parents:
15859
diff
changeset
|
706 #endif |
25885
6a0fe1278e4d
(make_menu_in_widget, update_one_menu_entry): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25037
diff
changeset
|
707 button = XmCreateCascadeButton (parent, val->name, al, ac); |
15859
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
708 xm_update_label (instance, button, val); |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
709 |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
710 XtAddCallback (button, XmNcascadingCallback, xm_pull_down_callback, |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
711 (XtPointer)instance); |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
712 XtManageChild (button); |
2cb422e2d16c
(update_one_menu_entry): Fix previous change:
Richard M. Stallman <rms@gnu.org>
parents:
15853
diff
changeset
|
713 } |
5626 | 714 } |
715 } | |
716 else if (!contents) | |
717 { | |
718 ac = 0; | |
719 XtSetArg (al [ac], XmNsubMenuId, NULL); ac++; | |
720 XtSetValues (widget, al, ac); | |
721 XtDestroyWidget (menu); | |
722 } | |
723 else if (deep_p && contents->change != NO_CHANGE) | |
724 xm_update_menu (instance, menu, val, 1); | |
725 } | |
726 | |
727 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
728 xm_update_menu (instance, widget, val, deep_p) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
729 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
730 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
731 widget_value* val; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
732 Boolean deep_p; |
5626 | 733 { |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
734 Widget* children; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
735 unsigned int num_children; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
736 int num_children_to_keep = 0; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
737 int i; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
738 widget_value* cur; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
739 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
740 children = XtCompositeChildren (widget, &num_children); |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
741 |
5626 | 742 /* Widget is a RowColumn widget whose contents have to be updated |
743 * to reflect the list of items in val->contents */ | |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
744 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
745 /* See how many buttons we can keep, and how many we |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
746 must completely replace. */ |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
747 if (val->contents == 0) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
748 num_children_to_keep = 0; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
749 else if (val->contents->change == STRUCTURAL_CHANGE) |
5626 | 750 { |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
751 if (children) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
752 { |
15665
432750098147
(xm_update_menu): Fix loop termination test.
Karl Heuer <kwzh@gnu.org>
parents:
15630
diff
changeset
|
753 for (i = 0, cur = val->contents; |
432750098147
(xm_update_menu): Fix loop termination test.
Karl Heuer <kwzh@gnu.org>
parents:
15630
diff
changeset
|
754 (i < num_children |
432750098147
(xm_update_menu): Fix loop termination test.
Karl Heuer <kwzh@gnu.org>
parents:
15630
diff
changeset
|
755 && cur); /* how else to ditch unwanted children ?? - mgd */ |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
756 i++, cur = cur->next) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
757 { |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
758 if (cur->this_one_change == STRUCTURAL_CHANGE) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
759 break; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
760 } |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
761 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
762 num_children_to_keep = i; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
763 } |
5626 | 764 } |
765 else | |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
766 num_children_to_keep = num_children; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
767 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
768 /* Update all the buttons of the RowColumn, in order, |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
769 except for those we are going to replace entirely. */ |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
770 if (children) |
5626 | 771 { |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
772 for (i = 0, cur = val->contents; i < num_children_to_keep; i++) |
5626 | 773 { |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
774 if (!cur) |
15853
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
775 { |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
776 num_children_to_keep = i; |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
777 break; |
1ca5c3c9853a
(update_one_menu_entry): When creating a pulldown
Richard M. Stallman <rms@gnu.org>
parents:
15816
diff
changeset
|
778 } |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
779 if (children [i]->core.being_destroyed |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
780 || strcmp (XtName (children [i]), cur->name)) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
781 continue; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
782 update_one_menu_entry (instance, children [i], cur, deep_p); |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
783 cur = cur->next; |
5626 | 784 } |
785 } | |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
786 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
787 /* Now replace from scratch all the buttons after the last |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
788 place that the top-level structure changed. */ |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
789 if (val->contents->change == STRUCTURAL_CHANGE) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
790 { |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
791 destroy_all_children (widget, num_children_to_keep); |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
792 make_menu_in_widget (instance, widget, val->contents, |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
793 num_children_to_keep); |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
794 } |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
795 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
796 XtFree ((char *) children); |
5626 | 797 } |
798 | |
799 | |
800 /* update text widgets */ | |
801 | |
802 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
803 xm_update_text (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
804 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
805 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
806 widget_value* val; |
5626 | 807 { |
808 XmTextSetString (widget, val->value ? val->value : ""); | |
809 XtRemoveAllCallbacks (widget, XmNactivateCallback); | |
810 XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance); | |
811 XtRemoveAllCallbacks (widget, XmNvalueChangedCallback); | |
812 XtAddCallback (widget, XmNvalueChangedCallback, | |
813 xm_internal_update_other_instances, instance); | |
814 } | |
815 | |
816 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
817 xm_update_text_field (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
818 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
819 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
820 widget_value* val; |
5626 | 821 { |
822 XmTextFieldSetString (widget, val->value ? val->value : ""); | |
823 XtRemoveAllCallbacks (widget, XmNactivateCallback); | |
824 XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance); | |
825 XtRemoveAllCallbacks (widget, XmNvalueChangedCallback); | |
826 XtAddCallback (widget, XmNvalueChangedCallback, | |
827 xm_internal_update_other_instances, instance); | |
828 } | |
829 | |
830 | |
831 /* update a motif widget */ | |
832 | |
833 void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
834 xm_update_one_widget (instance, widget, val, deep_p) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
835 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
836 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
837 widget_value* val; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
838 Boolean deep_p; |
5626 | 839 { |
840 WidgetClass class; | |
841 | |
842 /* Mark as not edited */ | |
843 val->edited = False; | |
844 | |
845 /* Common to all widget types */ | |
846 XtVaSetValues (widget, | |
847 XmNsensitive, val->enabled, | |
848 XmNuserData, val->call_data, | |
849 0); | |
850 | |
851 /* Common to all label like widgets */ | |
852 if (XtIsSubclass (widget, xmLabelWidgetClass)) | |
853 xm_update_label (instance, widget, val); | |
854 | |
855 class = XtClass (widget); | |
856 /* Class specific things */ | |
857 if (class == xmPushButtonWidgetClass || | |
858 class == xmArrowButtonWidgetClass) | |
859 { | |
860 xm_update_pushbutton (instance, widget, val); | |
861 } | |
862 else if (class == xmCascadeButtonWidgetClass) | |
863 { | |
864 xm_update_cascadebutton (instance, widget, val); | |
865 } | |
866 else if (class == xmToggleButtonWidgetClass | |
867 || class == xmToggleButtonGadgetClass) | |
868 { | |
869 xm_update_toggle (instance, widget, val); | |
870 } | |
871 else if (class == xmRowColumnWidgetClass) | |
872 { | |
873 Boolean radiobox = 0; | |
874 int ac = 0; | |
875 Arg al [1]; | |
876 | |
877 XtSetArg (al [ac], XmNradioBehavior, &radiobox); ac++; | |
878 XtGetValues (widget, al, ac); | |
879 | |
880 if (radiobox) | |
881 xm_update_radiobox (instance, widget, val); | |
882 else | |
883 xm_update_menu (instance, widget, val, deep_p); | |
884 } | |
885 else if (class == xmTextWidgetClass) | |
886 { | |
887 xm_update_text (instance, widget, val); | |
888 } | |
889 else if (class == xmTextFieldWidgetClass) | |
890 { | |
891 xm_update_text_field (instance, widget, val); | |
892 } | |
893 else if (class == xmListWidgetClass) | |
894 { | |
895 xm_update_list (instance, widget, val); | |
896 } | |
897 } | |
898 | |
899 /* getting the value back */ | |
900 void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
901 xm_update_one_value (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
902 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
903 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
904 widget_value* val; |
5626 | 905 { |
906 WidgetClass class = XtClass (widget); | |
907 widget_value *old_wv; | |
908 | |
909 /* copy the call_data slot into the "return" widget_value */ | |
910 for (old_wv = instance->info->val->contents; old_wv; old_wv = old_wv->next) | |
911 if (!strcmp (val->name, old_wv->name)) | |
912 { | |
913 val->call_data = old_wv->call_data; | |
914 break; | |
915 } | |
916 | |
917 if (class == xmToggleButtonWidgetClass || class == xmToggleButtonGadgetClass) | |
918 { | |
919 XtVaGetValues (widget, XmNset, &val->selected, 0); | |
920 val->edited = True; | |
921 } | |
922 else if (class == xmTextWidgetClass) | |
923 { | |
924 if (val->value) | |
925 free (val->value); | |
926 val->value = XmTextGetString (widget); | |
927 val->edited = True; | |
928 } | |
929 else if (class == xmTextFieldWidgetClass) | |
930 { | |
931 if (val->value) | |
932 free (val->value); | |
933 val->value = XmTextFieldGetString (widget); | |
934 val->edited = True; | |
935 } | |
936 else if (class == xmRowColumnWidgetClass) | |
937 { | |
938 Boolean radiobox = 0; | |
939 int ac = 0; | |
940 Arg al [1]; | |
941 | |
942 XtSetArg (al [ac], XmNradioBehavior, &radiobox); ac++; | |
943 XtGetValues (widget, al, ac); | |
944 | |
945 if (radiobox) | |
946 { | |
947 CompositeWidget radio = (CompositeWidget)widget; | |
948 int i; | |
949 for (i = 0; i < radio->composite.num_children; i++) | |
950 { | |
951 int set = False; | |
952 Widget toggle = radio->composite.children [i]; | |
953 | |
954 XtVaGetValues (toggle, XmNset, &set, 0); | |
955 if (set) | |
956 { | |
957 if (val->value) | |
958 free (val->value); | |
8784 | 959 val->value = safe_strdup (XtName (toggle)); |
5626 | 960 } |
961 } | |
962 val->edited = True; | |
963 } | |
964 } | |
965 else if (class == xmListWidgetClass) | |
966 { | |
967 int pos_cnt; | |
968 int* pos_list; | |
969 if (XmListGetSelectedPos (widget, &pos_list, &pos_cnt)) | |
970 { | |
971 int i; | |
972 widget_value* cur; | |
973 for (cur = val->contents, i = 0; cur; cur = cur->next) | |
974 if (cur->value) | |
975 { | |
976 int j; | |
977 cur->selected = False; | |
978 i += 1; | |
979 for (j = 0; j < pos_cnt; j++) | |
980 if (pos_list [j] == i) | |
981 { | |
982 cur->selected = True; | |
8784 | 983 val->value = safe_strdup (cur->name); |
5626 | 984 } |
985 } | |
986 val->edited = 1; | |
987 XtFree ((char *) pos_list); | |
988 } | |
989 } | |
990 } | |
991 | |
992 | |
993 /* This function is for activating a button from a program. It's wrong because | |
994 we pass a NULL argument in the call_data which is not Motif compatible. | |
995 This is used from the XmNdefaultAction callback of the List widgets to | |
14018 | 996 have a double-click put down a dialog box like the button would do. |
5626 | 997 I could not find a way to do that with accelerators. |
998 */ | |
999 static void | |
11862
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
1000 activate_button (widget, closure, call_data) |
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
1001 Widget widget; |
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
1002 XtPointer closure; |
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
1003 XtPointer call_data; |
5626 | 1004 { |
1005 Widget button = (Widget)closure; | |
1006 XtCallCallbacks (button, XmNactivateCallback, NULL); | |
1007 } | |
1008 | |
1009 /* creation functions */ | |
1010 | |
1011 /* dialogs */ | |
1012 static Widget | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1013 make_dialog (name, parent, pop_up_p, shell_title, icon_name, text_input_slot, |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1014 radio_box, list, left_buttons, right_buttons) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1015 char* name; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1016 Widget parent; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1017 Boolean pop_up_p; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1018 char* shell_title; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1019 char* icon_name; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1020 Boolean text_input_slot; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1021 Boolean radio_box; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1022 Boolean list; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1023 int left_buttons; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1024 int right_buttons; |
5626 | 1025 { |
1026 Widget result; | |
1027 Widget form; | |
1028 Widget row; | |
1029 Widget icon; | |
1030 Widget icon_separator; | |
1031 Widget message; | |
1032 Widget value = 0; | |
1033 Widget separator; | |
1034 Widget button = 0; | |
1035 Widget children [16]; /* for the final XtManageChildren */ | |
1036 int n_children; | |
1037 Arg al[64]; /* Arg List */ | |
1038 int ac; /* Arg Count */ | |
1039 int i; | |
1040 | |
1041 if (pop_up_p) | |
1042 { | |
1043 ac = 0; | |
1044 XtSetArg(al[ac], XmNtitle, shell_title); ac++; | |
1045 XtSetArg(al[ac], XtNallowShellResize, True); ac++; | |
1046 XtSetArg(al[ac], XmNdeleteResponse, XmUNMAP); ac++; | |
1047 result = XmCreateDialogShell (parent, "dialog", al, ac); | |
1048 ac = 0; | |
1049 XtSetArg(al[ac], XmNautoUnmanage, FALSE); ac++; | |
1050 /* XtSetArg(al[ac], XmNautoUnmanage, TRUE); ac++; */ /* ####is this ok? */ | |
1051 XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++; | |
1052 form = XmCreateForm (result, shell_title, al, ac); | |
1053 } | |
1054 else | |
1055 { | |
1056 ac = 0; | |
1057 XtSetArg(al[ac], XmNautoUnmanage, FALSE); ac++; | |
1058 XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++; | |
1059 form = XmCreateForm (parent, shell_title, al, ac); | |
1060 result = form; | |
1061 } | |
1062 | |
8884 | 1063 n_children = left_buttons + right_buttons + 1; |
5626 | 1064 ac = 0; |
8884 | 1065 XtSetArg(al[ac], XmNpacking, n_children == 3? |
1066 XmPACK_COLUMN: XmPACK_TIGHT); ac++; | |
1067 XtSetArg(al[ac], XmNorientation, n_children == 3? | |
1068 XmVERTICAL: XmHORIZONTAL); ac++; | |
5626 | 1069 XtSetArg(al[ac], XmNnumColumns, left_buttons + right_buttons + 1); ac++; |
1070 XtSetArg(al[ac], XmNmarginWidth, 0); ac++; | |
1071 XtSetArg(al[ac], XmNmarginHeight, 0); ac++; | |
1072 XtSetArg(al[ac], XmNspacing, 13); ac++; | |
1073 XtSetArg(al[ac], XmNadjustLast, False); ac++; | |
1074 XtSetArg(al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++; | |
1075 XtSetArg(al[ac], XmNisAligned, True); ac++; | |
1076 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++; | |
1077 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_FORM); ac++; | |
1078 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
1079 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++; | |
1080 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
1081 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
1082 XtSetArg(al[ac], XmNrightOffset, 13); ac++; | |
1083 row = XmCreateRowColumn (form, "row", al, ac); | |
1084 | |
1085 n_children = 0; | |
1086 for (i = 0; i < left_buttons; i++) | |
1087 { | |
1088 char button_name [16]; | |
1089 sprintf (button_name, "button%d", i + 1); | |
1090 ac = 0; | |
1091 if (i == 0) | |
1092 { | |
1093 XtSetArg(al[ac], XmNhighlightThickness, 1); ac++; | |
1094 XtSetArg(al[ac], XmNshowAsDefault, TRUE); ac++; | |
1095 } | |
8884 | 1096 XtSetArg(al[ac], XmNmarginWidth, 10); ac++; |
5626 | 1097 XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++; |
1098 children [n_children] = XmCreatePushButton (row, button_name, al, ac); | |
1099 | |
1100 if (i == 0) | |
1101 { | |
1102 button = children [n_children]; | |
1103 ac = 0; | |
1104 XtSetArg(al[ac], XmNdefaultButton, button); ac++; | |
1105 XtSetValues (row, al, ac); | |
1106 } | |
1107 | |
1108 n_children++; | |
1109 } | |
1110 | |
14018 | 1111 /* invisible separator button */ |
5626 | 1112 ac = 0; |
1113 XtSetArg (al[ac], XmNmappedWhenManaged, FALSE); ac++; | |
1114 children [n_children] = XmCreateLabel (row, "separator_button", al, ac); | |
1115 n_children++; | |
1116 | |
1117 for (i = 0; i < right_buttons; i++) | |
1118 { | |
1119 char button_name [16]; | |
1120 sprintf (button_name, "button%d", left_buttons + i + 1); | |
1121 ac = 0; | |
8884 | 1122 XtSetArg(al[ac], XmNmarginWidth, 10); ac++; |
5626 | 1123 XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++; |
1124 children [n_children] = XmCreatePushButton (row, button_name, al, ac); | |
1125 if (! button) button = children [n_children]; | |
1126 n_children++; | |
1127 } | |
1128 | |
1129 XtManageChildren (children, n_children); | |
1130 | |
1131 ac = 0; | |
1132 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++; | |
1133 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
1134 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
1135 XtSetArg(al[ac], XmNbottomWidget, row); ac++; | |
1136 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++; | |
1137 XtSetArg(al[ac], XmNleftOffset, 0); ac++; | |
1138 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
1139 XtSetArg(al[ac], XmNrightOffset, 0); ac++; | |
1140 separator = XmCreateSeparator (form, "", al, ac); | |
1141 | |
1142 ac = 0; | |
1143 XtSetArg(al[ac], XmNlabelType, XmPIXMAP); ac++; | |
1144 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM); ac++; | |
1145 XtSetArg(al[ac], XmNtopOffset, 13); ac++; | |
1146 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_NONE); ac++; | |
1147 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++; | |
1148 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
1149 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_NONE); ac++; | |
1150 icon = XmCreateLabel (form, icon_name, al, ac); | |
1151 | |
1152 ac = 0; | |
1153 XtSetArg(al[ac], XmNmappedWhenManaged, FALSE); ac++; | |
1154 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_WIDGET); ac++; | |
1155 XtSetArg(al[ac], XmNtopOffset, 6); ac++; | |
1156 XtSetArg(al[ac], XmNtopWidget, icon); ac++; | |
1157 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
1158 XtSetArg(al[ac], XmNbottomOffset, 6); ac++; | |
1159 XtSetArg(al[ac], XmNbottomWidget, separator); ac++; | |
1160 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_NONE); ac++; | |
1161 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_NONE); ac++; | |
1162 icon_separator = XmCreateLabel (form, "", al, ac); | |
1163 | |
1164 if (text_input_slot) | |
1165 { | |
1166 ac = 0; | |
1167 XtSetArg(al[ac], XmNcolumns, 50); ac++; | |
1168 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++; | |
1169 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
1170 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
1171 XtSetArg(al[ac], XmNbottomWidget, separator); ac++; | |
1172 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++; | |
1173 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
1174 XtSetArg(al[ac], XmNleftWidget, icon); ac++; | |
1175 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
1176 XtSetArg(al[ac], XmNrightOffset, 13); ac++; | |
1177 value = XmCreateTextField (form, "value", al, ac); | |
1178 } | |
1179 else if (radio_box) | |
1180 { | |
1181 Widget radio_butt; | |
1182 ac = 0; | |
1183 XtSetArg(al[ac], XmNmarginWidth, 0); ac++; | |
1184 XtSetArg(al[ac], XmNmarginHeight, 0); ac++; | |
1185 XtSetArg(al[ac], XmNspacing, 13); ac++; | |
1186 XtSetArg(al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++; | |
1187 XtSetArg(al[ac], XmNorientation, XmHORIZONTAL); ac++; | |
1188 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
1189 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
1190 XtSetArg(al[ac], XmNbottomWidget, separator); ac++; | |
1191 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++; | |
1192 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
1193 XtSetArg(al[ac], XmNleftWidget, icon); ac++; | |
1194 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
1195 XtSetArg(al[ac], XmNrightOffset, 13); ac++; | |
1196 value = XmCreateRadioBox (form, "radiobutton1", al, ac); | |
1197 ac = 0; | |
1198 i = 0; | |
1199 radio_butt = XmCreateToggleButtonGadget (value, "radio1", al, ac); | |
1200 children [i++] = radio_butt; | |
1201 radio_butt = XmCreateToggleButtonGadget (value, "radio2", al, ac); | |
1202 children [i++] = radio_butt; | |
1203 radio_butt = XmCreateToggleButtonGadget (value, "radio3", al, ac); | |
1204 children [i++] = radio_butt; | |
1205 XtManageChildren (children, i); | |
1206 } | |
1207 else if (list) | |
1208 { | |
1209 ac = 0; | |
1210 XtSetArg(al[ac], XmNvisibleItemCount, 5); ac++; | |
1211 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++; | |
1212 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
1213 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
1214 XtSetArg(al[ac], XmNbottomWidget, separator); ac++; | |
1215 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++; | |
1216 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
1217 XtSetArg(al[ac], XmNleftWidget, icon); ac++; | |
1218 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
1219 XtSetArg(al[ac], XmNrightOffset, 13); ac++; | |
1220 value = XmCreateScrolledList (form, "list", al, ac); | |
1221 | |
1222 /* this is the easiest way I found to have the dble click in the | |
1223 list activate the default button */ | |
1224 XtAddCallback (value, XmNdefaultActionCallback, activate_button, button); | |
1225 } | |
1226 | |
1227 ac = 0; | |
1228 XtSetArg(al[ac], XmNalignment, XmALIGNMENT_BEGINNING); ac++; | |
1229 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM); ac++; | |
1230 XtSetArg(al[ac], XmNtopOffset, 13); ac++; | |
1231 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
1232 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
1233 XtSetArg(al[ac], XmNbottomWidget, | |
1234 text_input_slot || radio_box || list ? value : separator); ac++; | |
1235 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++; | |
1236 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
1237 XtSetArg(al[ac], XmNleftWidget, icon); ac++; | |
1238 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
1239 XtSetArg(al[ac], XmNrightOffset, 13); ac++; | |
1240 message = XmCreateLabel (form, "message", al, ac); | |
1241 | |
1242 if (list) | |
1243 XtManageChild (value); | |
1244 | |
1245 i = 0; | |
1246 children [i] = row; i++; | |
1247 children [i] = separator; i++; | |
1248 if (text_input_slot || radio_box) | |
1249 { | |
1250 children [i] = value; i++; | |
1251 } | |
1252 children [i] = message; i++; | |
1253 children [i] = icon; i++; | |
1254 children [i] = icon_separator; i++; | |
1255 XtManageChildren (children, i); | |
1256 | |
1257 if (text_input_slot || list) | |
1258 { | |
1259 XtInstallAccelerators (value, button); | |
1260 XtSetKeyboardFocus (result, value); | |
1261 } | |
1262 else | |
1263 { | |
1264 XtInstallAccelerators (form, button); | |
1265 XtSetKeyboardFocus (result, button); | |
1266 } | |
1267 | |
1268 return result; | |
1269 } | |
1270 | |
1271 static destroyed_instance* | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1272 find_matching_instance (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1273 widget_instance* instance; |
5626 | 1274 { |
1275 destroyed_instance* cur; | |
1276 destroyed_instance* prev; | |
1277 char* type = instance->info->type; | |
1278 char* name = instance->info->name; | |
1279 | |
1280 for (prev = NULL, cur = all_destroyed_instances; | |
1281 cur; | |
1282 prev = cur, cur = cur->next) | |
1283 { | |
1284 if (!strcmp (cur->name, name) | |
1285 && !strcmp (cur->type, type) | |
1286 && cur->parent == instance->parent | |
1287 && cur->pop_up_p == instance->pop_up_p) | |
1288 { | |
1289 if (prev) | |
1290 prev->next = cur->next; | |
1291 else | |
1292 all_destroyed_instances = cur->next; | |
1293 return cur; | |
1294 } | |
1295 /* do some cleanup */ | |
1296 else if (!cur->widget) | |
1297 { | |
1298 if (prev) | |
1299 prev->next = cur->next; | |
1300 else | |
1301 all_destroyed_instances = cur->next; | |
1302 free_destroyed_instance (cur); | |
1303 cur = prev ? prev : all_destroyed_instances; | |
1304 } | |
1305 } | |
1306 return NULL; | |
1307 } | |
1308 | |
1309 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1310 mark_dead_instance_destroyed (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1311 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1312 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1313 XtPointer call_data; |
5626 | 1314 { |
1315 destroyed_instance* instance = (destroyed_instance*)closure; | |
1316 instance->widget = NULL; | |
1317 } | |
1318 | |
1319 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1320 recenter_widget (widget) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1321 Widget widget; |
5626 | 1322 { |
1323 Widget parent = XtParent (widget); | |
1324 Screen* screen = XtScreen (widget); | |
1325 Dimension screen_width = WidthOfScreen (screen); | |
1326 Dimension screen_height = HeightOfScreen (screen); | |
1327 Dimension parent_width = 0; | |
1328 Dimension parent_height = 0; | |
1329 Dimension child_width = 0; | |
1330 Dimension child_height = 0; | |
1331 Position x; | |
1332 Position y; | |
1333 | |
1334 XtVaGetValues (widget, XtNwidth, &child_width, XtNheight, &child_height, 0); | |
1335 XtVaGetValues (parent, XtNwidth, &parent_width, XtNheight, &parent_height, | |
1336 0); | |
1337 | |
1338 x = (((Position)parent_width) - ((Position)child_width)) / 2; | |
1339 y = (((Position)parent_height) - ((Position)child_height)) / 2; | |
1340 | |
1341 XtTranslateCoords (parent, x, y, &x, &y); | |
1342 | |
1343 if (x + child_width > screen_width) | |
1344 x = screen_width - child_width; | |
1345 if (x < 0) | |
1346 x = 0; | |
1347 | |
1348 if (y + child_height > screen_height) | |
1349 y = screen_height - child_height; | |
1350 if (y < 0) | |
1351 y = 0; | |
1352 | |
1353 XtVaSetValues (widget, XtNx, x, XtNy, y, 0); | |
1354 } | |
1355 | |
1356 static Widget | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1357 recycle_instance (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1358 destroyed_instance* instance; |
5626 | 1359 { |
1360 Widget widget = instance->widget; | |
1361 | |
1362 /* widget is NULL if the parent was destroyed. */ | |
1363 if (widget) | |
1364 { | |
1365 Widget focus; | |
1366 Widget separator; | |
1367 | |
1368 /* Remove the destroy callback as the instance is not in the list | |
1369 anymore */ | |
1370 XtRemoveCallback (instance->parent, XtNdestroyCallback, | |
1371 mark_dead_instance_destroyed, | |
1372 (XtPointer)instance); | |
1373 | |
1374 /* Give the focus to the initial item */ | |
1375 focus = XtNameToWidget (widget, "*value"); | |
1376 if (!focus) | |
1377 focus = XtNameToWidget (widget, "*button1"); | |
1378 if (focus) | |
1379 XtSetKeyboardFocus (widget, focus); | |
1380 | |
1381 /* shrink the separator label back to their original size */ | |
1382 separator = XtNameToWidget (widget, "*separator_button"); | |
1383 if (separator) | |
1384 XtVaSetValues (separator, XtNwidth, 5, XtNheight, 5, 0); | |
1385 | |
1386 /* Center the dialog in its parent */ | |
1387 recenter_widget (widget); | |
1388 } | |
1389 free_destroyed_instance (instance); | |
1390 return widget; | |
1391 } | |
1392 | |
1393 Widget | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1394 xm_create_dialog (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1395 widget_instance* instance; |
5626 | 1396 { |
1397 char* name = instance->info->type; | |
1398 Widget parent = instance->parent; | |
1399 Widget widget; | |
1400 Boolean pop_up_p = instance->pop_up_p; | |
1401 char* shell_name = 0; | |
1402 char* icon_name; | |
1403 Boolean text_input_slot = False; | |
1404 Boolean radio_box = False; | |
1405 Boolean list = False; | |
1406 int total_buttons; | |
1407 int left_buttons = 0; | |
1408 int right_buttons = 1; | |
1409 destroyed_instance* dead_one; | |
1410 | |
1411 /* try to find a widget to recycle */ | |
1412 dead_one = find_matching_instance (instance); | |
1413 if (dead_one) | |
1414 { | |
1415 Widget recycled_widget = recycle_instance (dead_one); | |
1416 if (recycled_widget) | |
1417 return recycled_widget; | |
1418 } | |
1419 | |
1420 switch (name [0]){ | |
1421 case 'E': case 'e': | |
1422 icon_name = "dbox-error"; | |
1423 shell_name = "Error"; | |
1424 break; | |
1425 | |
1426 case 'I': case 'i': | |
1427 icon_name = "dbox-info"; | |
1428 shell_name = "Information"; | |
1429 break; | |
1430 | |
1431 case 'L': case 'l': | |
1432 list = True; | |
1433 icon_name = "dbox-question"; | |
1434 shell_name = "Prompt"; | |
1435 break; | |
1436 | |
1437 case 'P': case 'p': | |
1438 text_input_slot = True; | |
1439 icon_name = "dbox-question"; | |
1440 shell_name = "Prompt"; | |
1441 break; | |
1442 | |
1443 case 'Q': case 'q': | |
1444 icon_name = "dbox-question"; | |
1445 shell_name = "Question"; | |
1446 break; | |
1447 } | |
1448 | |
1449 total_buttons = name [1] - '0'; | |
1450 | |
1451 if (name [3] == 'T' || name [3] == 't') | |
1452 { | |
1453 text_input_slot = False; | |
1454 radio_box = True; | |
1455 } | |
1456 else if (name [3]) | |
1457 right_buttons = name [4] - '0'; | |
1458 | |
1459 left_buttons = total_buttons - right_buttons; | |
1460 | |
1461 widget = make_dialog (name, parent, pop_up_p, | |
1462 shell_name, icon_name, text_input_slot, radio_box, | |
1463 list, left_buttons, right_buttons); | |
1464 | |
1465 XtAddCallback (widget, XmNpopdownCallback, xm_nosel_callback, | |
1466 (XtPointer) instance); | |
1467 return widget; | |
1468 } | |
1469 | |
15816
e1e9df8a862e
(make_menubar): Turn off menu accelerator.
Richard M. Stallman <rms@gnu.org>
parents:
15665
diff
changeset
|
1470 /* Create a menu bar. We turn off the f10 key |
e1e9df8a862e
(make_menubar): Turn off menu accelerator.
Richard M. Stallman <rms@gnu.org>
parents:
15665
diff
changeset
|
1471 because we have not yet managed to make it work right in Motif. */ |
e1e9df8a862e
(make_menubar): Turn off menu accelerator.
Richard M. Stallman <rms@gnu.org>
parents:
15665
diff
changeset
|
1472 |
5626 | 1473 static Widget |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1474 make_menubar (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1475 widget_instance* instance; |
5626 | 1476 { |
27345
15a661269a09
(make_menubar): Set XmNresizeHeight and XmNresizeWidth to False.
Gerd Moellmann <gerd@gnu.org>
parents:
27333
diff
changeset
|
1477 Arg al[3]; |
15816
e1e9df8a862e
(make_menubar): Turn off menu accelerator.
Richard M. Stallman <rms@gnu.org>
parents:
15665
diff
changeset
|
1478 int ac; |
e1e9df8a862e
(make_menubar): Turn off menu accelerator.
Richard M. Stallman <rms@gnu.org>
parents:
15665
diff
changeset
|
1479 |
e1e9df8a862e
(make_menubar): Turn off menu accelerator.
Richard M. Stallman <rms@gnu.org>
parents:
15665
diff
changeset
|
1480 ac = 0; |
27345
15a661269a09
(make_menubar): Set XmNresizeHeight and XmNresizeWidth to False.
Gerd Moellmann <gerd@gnu.org>
parents:
27333
diff
changeset
|
1481 XtSetArg(al[ac], XmNmenuAccelerator, 0); ++ac; |
15a661269a09
(make_menubar): Set XmNresizeHeight and XmNresizeWidth to False.
Gerd Moellmann <gerd@gnu.org>
parents:
27333
diff
changeset
|
1482 |
15a661269a09
(make_menubar): Set XmNresizeHeight and XmNresizeWidth to False.
Gerd Moellmann <gerd@gnu.org>
parents:
27333
diff
changeset
|
1483 /* As of 2000-01-17, the LessTif menu bar resizes to height 0 when |
15a661269a09
(make_menubar): Set XmNresizeHeight and XmNresizeWidth to False.
Gerd Moellmann <gerd@gnu.org>
parents:
27333
diff
changeset
|
1484 all its children are removed, causing an annoying flickering |
15a661269a09
(make_menubar): Set XmNresizeHeight and XmNresizeWidth to False.
Gerd Moellmann <gerd@gnu.org>
parents:
27333
diff
changeset
|
1485 behavior. Prevent that by not allowing resizing. */ |
15a661269a09
(make_menubar): Set XmNresizeHeight and XmNresizeWidth to False.
Gerd Moellmann <gerd@gnu.org>
parents:
27333
diff
changeset
|
1486 XtSetArg(al[ac], XmNresizeHeight, False); ++ac; |
15a661269a09
(make_menubar): Set XmNresizeHeight and XmNresizeWidth to False.
Gerd Moellmann <gerd@gnu.org>
parents:
27333
diff
changeset
|
1487 XtSetArg(al[ac], XmNresizeWidth, False); ++ac; |
15a661269a09
(make_menubar): Set XmNresizeHeight and XmNresizeWidth to False.
Gerd Moellmann <gerd@gnu.org>
parents:
27333
diff
changeset
|
1488 |
15a661269a09
(make_menubar): Set XmNresizeHeight and XmNresizeWidth to False.
Gerd Moellmann <gerd@gnu.org>
parents:
27333
diff
changeset
|
1489 return XmCreateMenuBar (instance->parent, instance->info->name, al, ac); |
5626 | 1490 } |
1491 | |
1492 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1493 remove_grabs (shell, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1494 Widget shell; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1495 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1496 XtPointer call_data; |
5626 | 1497 { |
11245
5fdf816307c6
(remove_grabs): Use type Widget for `menu'.
Richard M. Stallman <rms@gnu.org>
parents:
9835
diff
changeset
|
1498 Widget menu = (Widget) closure; |
5fdf816307c6
(remove_grabs): Use type Widget for `menu'.
Richard M. Stallman <rms@gnu.org>
parents:
9835
diff
changeset
|
1499 XmRemoveFromPostFromList (menu, XtParent (XtParent (menu))); |
5626 | 1500 } |
1501 | |
1502 static Widget | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1503 make_popup_menu (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1504 widget_instance* instance; |
5626 | 1505 { |
1506 Widget parent = instance->parent; | |
1507 Window parent_window = parent->core.window; | |
1508 Widget result; | |
1509 | |
1510 /* sets the parent window to 0 to fool Motif into not generating a grab */ | |
1511 parent->core.window = 0; | |
1512 result = XmCreatePopupMenu (parent, instance->info->name, NULL, 0); | |
1513 XtAddCallback (XtParent (result), XmNpopdownCallback, remove_grabs, | |
1514 (XtPointer)result); | |
1515 parent->core.window = parent_window; | |
1516 return result; | |
1517 } | |
25037 | 1518 |
8784 | 1519 static Widget |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1520 make_main (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1521 widget_instance* instance; |
8784 | 1522 { |
1523 Widget parent = instance->parent; | |
1524 Widget result; | |
1525 Arg al[2]; | |
1526 int ac; | |
1527 | |
1528 ac = 0; | |
1529 XtSetArg (al[ac], XtNborderWidth, 0); ac++; | |
1530 XtSetArg (al[ac], XmNspacing, 0); ac++; | |
1531 result = XmCreateMainWindow (parent, instance->info->name, al, ac); | |
1532 return result; | |
1533 } | |
5626 | 1534 |
1535 /* Table of functions to create widgets */ | |
1536 | |
1537 #ifdef ENERGIZE | |
1538 | |
1539 /* interface with the XDesigner generated functions */ | |
1540 typedef Widget (*widget_maker) (Widget); | |
1541 extern Widget create_project_p_sheet (Widget parent); | |
1542 extern Widget create_debugger_p_sheet (Widget parent); | |
1543 extern Widget create_breaklist_p_sheet (Widget parent); | |
1544 extern Widget create_le_browser_p_sheet (Widget parent); | |
1545 extern Widget create_class_browser_p_sheet (Widget parent); | |
1546 extern Widget create_call_browser_p_sheet (Widget parent); | |
1547 extern Widget create_build_dialog (Widget parent); | |
1548 extern Widget create_editmode_dialog (Widget parent); | |
1549 extern Widget create_search_dialog (Widget parent); | |
1550 extern Widget create_project_display_dialog (Widget parent); | |
1551 | |
1552 static Widget | |
1553 make_one (widget_instance* instance, widget_maker fn) | |
1554 { | |
1555 Widget result; | |
1556 Arg al [64]; | |
1557 int ac = 0; | |
1558 | |
1559 if (instance->pop_up_p) | |
1560 { | |
1561 XtSetArg (al [ac], XmNallowShellResize, TRUE); ac++; | |
1562 result = XmCreateDialogShell (instance->parent, "dialog", NULL, 0); | |
1563 XtAddCallback (result, XmNpopdownCallback, &xm_nosel_callback, | |
1564 (XtPointer) instance); | |
1565 (*fn) (result); | |
1566 } | |
1567 else | |
1568 { | |
1569 result = (*fn) (instance->parent); | |
1570 XtRealizeWidget (result); | |
1571 } | |
1572 return result; | |
1573 } | |
1574 | |
1575 static Widget | |
1576 make_project_p_sheet (widget_instance* instance) | |
1577 { | |
1578 return make_one (instance, create_project_p_sheet); | |
1579 } | |
1580 | |
1581 static Widget | |
1582 make_debugger_p_sheet (widget_instance* instance) | |
1583 { | |
1584 return make_one (instance, create_debugger_p_sheet); | |
1585 } | |
1586 | |
1587 static Widget | |
1588 make_breaklist_p_sheet (widget_instance* instance) | |
1589 { | |
1590 return make_one (instance, create_breaklist_p_sheet); | |
1591 } | |
1592 | |
1593 static Widget | |
1594 make_le_browser_p_sheet (widget_instance* instance) | |
1595 { | |
1596 return make_one (instance, create_le_browser_p_sheet); | |
1597 } | |
1598 | |
1599 static Widget | |
1600 make_class_browser_p_sheet (widget_instance* instance) | |
1601 { | |
1602 return make_one (instance, create_class_browser_p_sheet); | |
1603 } | |
1604 | |
1605 static Widget | |
1606 make_call_browser_p_sheet (widget_instance* instance) | |
1607 { | |
1608 return make_one (instance, create_call_browser_p_sheet); | |
1609 } | |
1610 | |
1611 static Widget | |
1612 make_build_dialog (widget_instance* instance) | |
1613 { | |
1614 return make_one (instance, create_build_dialog); | |
1615 } | |
1616 | |
1617 static Widget | |
1618 make_editmode_dialog (widget_instance* instance) | |
1619 { | |
1620 return make_one (instance, create_editmode_dialog); | |
1621 } | |
1622 | |
1623 static Widget | |
1624 make_search_dialog (widget_instance* instance) | |
1625 { | |
1626 return make_one (instance, create_search_dialog); | |
1627 } | |
1628 | |
1629 static Widget | |
1630 make_project_display_dialog (widget_instance* instance) | |
1631 { | |
1632 return make_one (instance, create_project_display_dialog); | |
1633 } | |
1634 | |
1635 #endif /* ENERGIZE */ | |
1636 | |
1637 widget_creation_entry | |
1638 xm_creation_table [] = | |
1639 { | |
1640 {"menubar", make_menubar}, | |
1641 {"popup", make_popup_menu}, | |
8784 | 1642 {"main", make_main}, |
5626 | 1643 #ifdef ENERGIZE |
1644 {"project_p_sheet", make_project_p_sheet}, | |
1645 {"debugger_p_sheet", make_debugger_p_sheet}, | |
1646 {"breaklist_psheet", make_breaklist_p_sheet}, | |
1647 {"leb_psheet", make_le_browser_p_sheet}, | |
1648 {"class_browser_psheet", make_class_browser_p_sheet}, | |
1649 {"ctree_browser_psheet", make_call_browser_p_sheet}, | |
1650 {"build", make_build_dialog}, | |
1651 {"editmode", make_editmode_dialog}, | |
1652 {"search", make_search_dialog}, | |
1653 {"project_display", make_project_display_dialog}, | |
1654 #endif /* ENERGIZE */ | |
1655 {NULL, NULL} | |
1656 }; | |
1657 | |
1658 /* Destruction of instances */ | |
1659 void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1660 xm_destroy_instance (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1661 widget_instance* instance; |
5626 | 1662 { |
1663 Widget widget = instance->widget; | |
1664 /* recycle the dialog boxes */ | |
1665 /* Disable the recycling until we can find a way to have the dialog box | |
1666 get reasonable layout after we modify its contents. */ | |
1667 if (0 | |
1668 && XtClass (widget) == xmDialogShellWidgetClass) | |
1669 { | |
1670 destroyed_instance* dead_instance = | |
1671 make_destroyed_instance (instance->info->name, | |
1672 instance->info->type, | |
1673 instance->widget, | |
1674 instance->parent, | |
1675 instance->pop_up_p); | |
1676 dead_instance->next = all_destroyed_instances; | |
1677 all_destroyed_instances = dead_instance; | |
1678 XtUnmanageChild (first_child (instance->widget)); | |
1679 XFlush (XtDisplay (instance->widget)); | |
1680 XtAddCallback (instance->parent, XtNdestroyCallback, | |
1681 mark_dead_instance_destroyed, (XtPointer)dead_instance); | |
1682 } | |
1683 else | |
1684 { | |
1685 /* This might not be necessary now that the nosel is attached to | |
1686 popdown instead of destroy, but it can't hurt. */ | |
1687 XtRemoveCallback (instance->widget, XtNdestroyCallback, | |
1688 xm_nosel_callback, (XtPointer)instance); | |
1689 XtDestroyWidget (instance->widget); | |
1690 } | |
1691 } | |
1692 | |
1693 /* popup utility */ | |
1694 void | |
12746
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1695 xm_popup_menu (widget, event) |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1696 Widget widget; |
12746
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1697 XEvent *event; |
5626 | 1698 { |
1699 XButtonPressedEvent dummy; | |
1700 | |
12746
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1701 if (event == 0) |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1702 { |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1703 dummy.type = ButtonPress; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1704 dummy.serial = 0; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1705 dummy.send_event = 0; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1706 dummy.display = XtDisplay (widget); |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1707 dummy.window = XtWindow (XtParent (widget)); |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1708 dummy.time = 0; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1709 dummy.button = 0; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1710 XQueryPointer (dummy.display, dummy.window, &dummy.root, |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1711 &dummy.subwindow, &dummy.x_root, &dummy.y_root, |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1712 &dummy.x, &dummy.y, &dummy.state); |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1713 event = (XEvent *) &dummy; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1714 } |
5626 | 1715 |
1716 if (event->type == ButtonPress || event->type == ButtonRelease) | |
1717 { | |
1718 /* This is so totally ridiculous: there's NO WAY to tell Motif | |
1719 that *any* button can select a menu item. Only one button | |
1720 can have that honor. | |
1721 */ | |
1722 char *trans = 0; | |
1723 if (event->xbutton.state & Button5Mask) trans = "<Btn5Down>"; | |
1724 else if (event->xbutton.state & Button4Mask) trans = "<Btn4Down>"; | |
1725 else if (event->xbutton.state & Button3Mask) trans = "<Btn3Down>"; | |
1726 else if (event->xbutton.state & Button2Mask) trans = "<Btn2Down>"; | |
1727 else if (event->xbutton.state & Button1Mask) trans = "<Btn1Down>"; | |
1728 if (trans) XtVaSetValues (widget, XmNmenuPost, trans, 0); | |
1729 XmMenuPosition (widget, (XButtonPressedEvent *) event); | |
1730 } | |
1731 XtManageChild (widget); | |
1732 } | |
1733 | |
1734 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1735 set_min_dialog_size (w) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1736 Widget w; |
5626 | 1737 { |
1738 short width; | |
1739 short height; | |
1740 XtVaGetValues (w, XmNwidth, &width, XmNheight, &height, 0); | |
1741 XtVaSetValues (w, XmNminWidth, width, XmNminHeight, height, 0); | |
1742 } | |
1743 | |
1744 void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1745 xm_pop_instance (instance, up) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1746 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1747 Boolean up; |
5626 | 1748 { |
1749 Widget widget = instance->widget; | |
1750 | |
1751 if (XtClass (widget) == xmDialogShellWidgetClass) | |
1752 { | |
1753 Widget widget_to_manage = first_child (widget); | |
1754 if (up) | |
1755 { | |
1756 XtManageChild (widget_to_manage); | |
1757 set_min_dialog_size (widget); | |
1758 XtSetKeyboardFocus (instance->parent, widget); | |
1759 } | |
1760 else | |
1761 XtUnmanageChild (widget_to_manage); | |
1762 } | |
1763 else | |
1764 { | |
1765 if (up) | |
1766 XtManageChild (widget); | |
1767 else | |
1768 XtUnmanageChild (widget); | |
1769 } | |
1770 } | |
1771 | |
1772 | |
1773 /* motif callback */ | |
1774 | |
1775 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1776 do_call (widget, closure, type) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1777 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1778 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1779 enum do_call_type type; |
5626 | 1780 { |
1781 Arg al [256]; | |
1782 int ac; | |
1783 XtPointer user_data; | |
1784 widget_instance* instance = (widget_instance*)closure; | |
1785 Widget instance_widget; | |
1786 LWLIB_ID id; | |
1787 | |
1788 if (!instance) | |
1789 return; | |
1790 if (widget->core.being_destroyed) | |
1791 return; | |
1792 | |
1793 instance_widget = instance->widget; | |
1794 if (!instance_widget) | |
1795 return; | |
1796 | |
1797 id = instance->info->id; | |
1798 ac = 0; | |
1799 user_data = NULL; | |
1800 XtSetArg (al [ac], XmNuserData, &user_data); ac++; | |
1801 XtGetValues (widget, al, ac); | |
1802 switch (type) | |
1803 { | |
1804 case pre_activate: | |
1805 if (instance->info->pre_activate_cb) | |
1806 instance->info->pre_activate_cb (widget, id, user_data); | |
1807 break; | |
1808 case selection: | |
1809 if (instance->info->selection_cb) | |
1810 instance->info->selection_cb (widget, id, user_data); | |
1811 break; | |
1812 case no_selection: | |
1813 if (instance->info->selection_cb) | |
1814 instance->info->selection_cb (widget, id, (XtPointer) -1); | |
1815 break; | |
1816 case post_activate: | |
1817 if (instance->info->post_activate_cb) | |
1818 instance->info->post_activate_cb (widget, id, user_data); | |
1819 break; | |
1820 default: | |
1821 abort (); | |
1822 } | |
1823 } | |
1824 | |
1825 /* Like lw_internal_update_other_instances except that it does not do | |
1826 anything if its shell parent is not managed. This is to protect | |
1827 lw_internal_update_other_instances to dereference freed memory | |
1828 if the widget was ``destroyed'' by caching it in the all_destroyed_instances | |
1829 list */ | |
1830 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1831 xm_internal_update_other_instances (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1832 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1833 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1834 XtPointer call_data; |
5626 | 1835 { |
1836 Widget parent; | |
1837 for (parent = widget; parent; parent = XtParent (parent)) | |
1838 if (XtIsShell (parent)) | |
1839 break; | |
1840 else if (!XtIsManaged (parent)) | |
1841 return; | |
1842 lw_internal_update_other_instances (widget, closure, call_data); | |
1843 } | |
1844 | |
1845 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1846 xm_generic_callback (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1847 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1848 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1849 XtPointer call_data; |
5626 | 1850 { |
1851 lw_internal_update_other_instances (widget, closure, call_data); | |
1852 do_call (widget, closure, selection); | |
1853 } | |
1854 | |
1855 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1856 xm_nosel_callback (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1857 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1858 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1859 XtPointer call_data; |
5626 | 1860 { |
1861 /* This callback is only called when a dialog box is dismissed with the wm's | |
1862 destroy button (WM_DELETE_WINDOW.) We want the dialog box to be destroyed | |
1863 in that case, not just unmapped, so that it releases its keyboard grabs. | |
1864 But there are problems with running our callbacks while the widget is in | |
1865 the process of being destroyed, so we set XmNdeleteResponse to XmUNMAP | |
1866 instead of XmDESTROY and then destroy it ourself after having run the | |
1867 callback. | |
1868 */ | |
1869 do_call (widget, closure, no_selection); | |
1870 XtDestroyWidget (widget); | |
1871 } | |
1872 | |
1873 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1874 xm_pull_down_callback (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1875 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1876 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1877 XtPointer call_data; |
5626 | 1878 { |
1879 do_call (widget, closure, pre_activate); | |
1880 } | |
1881 | |
1882 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1883 xm_pop_down_callback (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1884 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1885 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1886 XtPointer call_data; |
5626 | 1887 { |
9835
d2250d1b0f48
(make_menu_in_widget): Differentiate a separator entry ("--") from a
Paul Reilly <pmr@pajato.com>
parents:
9825
diff
changeset
|
1888 widget_instance *instance = (widget_instance *) closure; |
d2250d1b0f48
(make_menu_in_widget): Differentiate a separator entry ("--") from a
Paul Reilly <pmr@pajato.com>
parents:
9825
diff
changeset
|
1889 |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1890 if ((!instance->pop_up_p && (XtParent (widget) == instance->widget)) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1891 || (XtParent (widget) == instance->parent)) |
9835
d2250d1b0f48
(make_menu_in_widget): Differentiate a separator entry ("--") from a
Paul Reilly <pmr@pajato.com>
parents:
9825
diff
changeset
|
1892 do_call (widget, closure, post_activate); |
5626 | 1893 } |
1894 | |
1895 | |
1896 /* set the keyboard focus */ | |
1897 void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1898 xm_set_keyboard_focus (parent, w) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1899 Widget parent; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1900 Widget w; |
5626 | 1901 { |
1902 XmProcessTraversal (w, 0); | |
1903 XtSetKeyboardFocus (parent, w); | |
1904 } | |
9224
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1905 |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1906 /* Motif hack to set the main window areas. */ |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1907 void |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1908 xm_set_main_areas (parent, menubar, work_area) |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1909 Widget parent; |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1910 Widget menubar; |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1911 Widget work_area; |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1912 { |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1913 XmMainWindowSetAreas (parent, |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1914 menubar, /* menubar (maybe 0) */ |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1915 0, /* command area (psheets) */ |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1916 0, /* horizontal scroll */ |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1917 0, /* vertical scroll */ |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1918 work_area); /* work area */ |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1919 } |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1920 |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1921 /* Motif hack to control resizing on the menubar. */ |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1922 void |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1923 xm_manage_resizing (w, flag) |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1924 Widget w; |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1925 Boolean flag; |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1926 { |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1927 if (flag) |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1928 { |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1929 /* Enable the edit widget for resizing. */ |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1930 Arg al[1]; |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1931 |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1932 XtSetArg (al[0], XtNallowShellResize, 0); |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1933 XtSetValues (w, al, 1); |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1934 } |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1935 else |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1936 { |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1937 /* Disable the edit widget from resizing. */ |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1938 Arg al[1]; |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1939 |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1940 XtSetArg (al[0], XtNallowShellResize, 0); |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1941 XtSetValues (w, al, 1); |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1942 } |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1943 } |