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