Mercurial > emacs
annotate lwlib/lwlib-Xm.c @ 15701:5db02009315e libc-1-93 libc-960716 libc-960717 libc-960718 libc-960719 libc-960720 libc-960721 libc-960722 libc-960723 libc-960724 libc-960725 libc-960726 libc-960727 libc-960728 libc-960729 libc-960730 libc-960731 libc-960801 libc-960802 libc-960803 libc-960804 libc-960805 libc-960806 libc-960807 libc-960808 libc-960809 libc-960810 libc-960811 libc-960812 libc-960813 libc-960814 libc-960815 libc-960816 libc-960817 libc-960818 libc-960819 libc-960820 libc-960821 libc-960822 libc-960823 libc-960824 libc-960825 libc-960826 libc-960827 libc-960828 libc-960829 libc-960830 libc-960831 libc-960901 libc-960902 libc-960903 libc-960904 libc-960905 libc-960906 libc-960907 libc-960908 libc-960909 libc-960910 libc-960911 libc-960912 release-0-0 release-0-1
Fix previous change. Use sed's y command instead.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 16 Jul 1996 04:47:46 +0000 |
parents | 432750098147 |
children | e1e9df8a862e |
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 { | |
11435
efaaecd960ae
(update_one_menu_entry, make_menu_in_widget):
Richard M. Stallman <rms@gnu.org>
parents:
11299
diff
changeset
|
512 menu = XmCreatePulldownMenu (XtParent (widget), XtName (widget), NULL, 0); |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
513 make_menu_in_widget (instance, menu, contents, 0); |
5626 | 514 ac = 0; |
515 XtSetArg (al [ac], XmNsubMenuId, menu); ac++; | |
516 XtSetValues (widget, al, ac); | |
517 } | |
518 } | |
519 else if (!contents) | |
520 { | |
521 ac = 0; | |
522 XtSetArg (al [ac], XmNsubMenuId, NULL); ac++; | |
523 XtSetValues (widget, al, ac); | |
524 XtDestroyWidget (menu); | |
525 } | |
526 else if (deep_p && contents->change != NO_CHANGE) | |
527 xm_update_menu (instance, menu, val, 1); | |
528 } | |
529 | |
530 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
531 xm_update_menu (instance, widget, val, deep_p) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
532 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
533 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
534 widget_value* val; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
535 Boolean deep_p; |
5626 | 536 { |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
537 Widget* children; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
538 unsigned int num_children; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
539 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
|
540 int i; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
541 widget_value* cur; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
542 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
543 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
|
544 |
5626 | 545 /* Widget is a RowColumn widget whose contents have to be updated |
546 * 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
|
547 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
548 /* 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
|
549 must completely replace. */ |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
550 if (val->contents == 0) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
551 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
|
552 else if (val->contents->change == STRUCTURAL_CHANGE) |
5626 | 553 { |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
554 if (children) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
555 { |
15665
432750098147
(xm_update_menu): Fix loop termination test.
Karl Heuer <kwzh@gnu.org>
parents:
15630
diff
changeset
|
556 for (i = 0, cur = val->contents; |
432750098147
(xm_update_menu): Fix loop termination test.
Karl Heuer <kwzh@gnu.org>
parents:
15630
diff
changeset
|
557 (i < num_children |
432750098147
(xm_update_menu): Fix loop termination test.
Karl Heuer <kwzh@gnu.org>
parents:
15630
diff
changeset
|
558 && 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
|
559 i++, cur = cur->next) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
560 { |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
561 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
|
562 break; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
563 } |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
564 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
565 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
|
566 } |
5626 | 567 } |
568 else | |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
569 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
|
570 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
571 /* 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
|
572 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
|
573 if (children) |
5626 | 574 { |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
575 for (i = 0, cur = val->contents; i < num_children_to_keep; i++) |
5626 | 576 { |
14877
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
577 if (!cur) |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
578 abort (); |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
579 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
|
580 || 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
|
581 continue; |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
582 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
|
583 cur = cur->next; |
5626 | 584 } |
585 } | |
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 /* 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
|
588 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
|
589 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
|
590 { |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
591 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
|
592 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
|
593 num_children_to_keep); |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
594 } |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
595 |
62fc4d7a846f
(destroy_all_children): New arg first_child_to_destroy.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
596 XtFree ((char *) children); |
5626 | 597 } |
598 | |
599 | |
600 /* update text widgets */ | |
601 | |
602 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
603 xm_update_text (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
604 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
605 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
606 widget_value* val; |
5626 | 607 { |
608 XmTextSetString (widget, val->value ? val->value : ""); | |
609 XtRemoveAllCallbacks (widget, XmNactivateCallback); | |
610 XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance); | |
611 XtRemoveAllCallbacks (widget, XmNvalueChangedCallback); | |
612 XtAddCallback (widget, XmNvalueChangedCallback, | |
613 xm_internal_update_other_instances, instance); | |
614 } | |
615 | |
616 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
617 xm_update_text_field (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
618 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
619 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
620 widget_value* val; |
5626 | 621 { |
622 XmTextFieldSetString (widget, val->value ? val->value : ""); | |
623 XtRemoveAllCallbacks (widget, XmNactivateCallback); | |
624 XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance); | |
625 XtRemoveAllCallbacks (widget, XmNvalueChangedCallback); | |
626 XtAddCallback (widget, XmNvalueChangedCallback, | |
627 xm_internal_update_other_instances, instance); | |
628 } | |
629 | |
630 | |
631 /* update a motif widget */ | |
632 | |
633 void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
634 xm_update_one_widget (instance, widget, val, deep_p) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
635 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
636 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
637 widget_value* val; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
638 Boolean deep_p; |
5626 | 639 { |
640 WidgetClass class; | |
641 | |
642 /* Mark as not edited */ | |
643 val->edited = False; | |
644 | |
645 /* Common to all widget types */ | |
646 XtVaSetValues (widget, | |
647 XmNsensitive, val->enabled, | |
648 XmNuserData, val->call_data, | |
649 0); | |
650 | |
651 /* Common to all label like widgets */ | |
652 if (XtIsSubclass (widget, xmLabelWidgetClass)) | |
653 xm_update_label (instance, widget, val); | |
654 | |
655 class = XtClass (widget); | |
656 /* Class specific things */ | |
657 if (class == xmPushButtonWidgetClass || | |
658 class == xmArrowButtonWidgetClass) | |
659 { | |
660 xm_update_pushbutton (instance, widget, val); | |
661 } | |
662 else if (class == xmCascadeButtonWidgetClass) | |
663 { | |
664 xm_update_cascadebutton (instance, widget, val); | |
665 } | |
666 else if (class == xmToggleButtonWidgetClass | |
667 || class == xmToggleButtonGadgetClass) | |
668 { | |
669 xm_update_toggle (instance, widget, val); | |
670 } | |
671 else if (class == xmRowColumnWidgetClass) | |
672 { | |
673 Boolean radiobox = 0; | |
674 int ac = 0; | |
675 Arg al [1]; | |
676 | |
677 XtSetArg (al [ac], XmNradioBehavior, &radiobox); ac++; | |
678 XtGetValues (widget, al, ac); | |
679 | |
680 if (radiobox) | |
681 xm_update_radiobox (instance, widget, val); | |
682 else | |
683 xm_update_menu (instance, widget, val, deep_p); | |
684 } | |
685 else if (class == xmTextWidgetClass) | |
686 { | |
687 xm_update_text (instance, widget, val); | |
688 } | |
689 else if (class == xmTextFieldWidgetClass) | |
690 { | |
691 xm_update_text_field (instance, widget, val); | |
692 } | |
693 else if (class == xmListWidgetClass) | |
694 { | |
695 xm_update_list (instance, widget, val); | |
696 } | |
697 } | |
698 | |
699 /* getting the value back */ | |
700 void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
701 xm_update_one_value (instance, widget, val) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
702 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
703 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
704 widget_value* val; |
5626 | 705 { |
706 WidgetClass class = XtClass (widget); | |
707 widget_value *old_wv; | |
708 | |
709 /* copy the call_data slot into the "return" widget_value */ | |
710 for (old_wv = instance->info->val->contents; old_wv; old_wv = old_wv->next) | |
711 if (!strcmp (val->name, old_wv->name)) | |
712 { | |
713 val->call_data = old_wv->call_data; | |
714 break; | |
715 } | |
716 | |
717 if (class == xmToggleButtonWidgetClass || class == xmToggleButtonGadgetClass) | |
718 { | |
719 XtVaGetValues (widget, XmNset, &val->selected, 0); | |
720 val->edited = True; | |
721 } | |
722 else if (class == xmTextWidgetClass) | |
723 { | |
724 if (val->value) | |
725 free (val->value); | |
726 val->value = XmTextGetString (widget); | |
727 val->edited = True; | |
728 } | |
729 else if (class == xmTextFieldWidgetClass) | |
730 { | |
731 if (val->value) | |
732 free (val->value); | |
733 val->value = XmTextFieldGetString (widget); | |
734 val->edited = True; | |
735 } | |
736 else if (class == xmRowColumnWidgetClass) | |
737 { | |
738 Boolean radiobox = 0; | |
739 int ac = 0; | |
740 Arg al [1]; | |
741 | |
742 XtSetArg (al [ac], XmNradioBehavior, &radiobox); ac++; | |
743 XtGetValues (widget, al, ac); | |
744 | |
745 if (radiobox) | |
746 { | |
747 CompositeWidget radio = (CompositeWidget)widget; | |
748 int i; | |
749 for (i = 0; i < radio->composite.num_children; i++) | |
750 { | |
751 int set = False; | |
752 Widget toggle = radio->composite.children [i]; | |
753 | |
754 XtVaGetValues (toggle, XmNset, &set, 0); | |
755 if (set) | |
756 { | |
757 if (val->value) | |
758 free (val->value); | |
8784 | 759 val->value = safe_strdup (XtName (toggle)); |
5626 | 760 } |
761 } | |
762 val->edited = True; | |
763 } | |
764 } | |
765 else if (class == xmListWidgetClass) | |
766 { | |
767 int pos_cnt; | |
768 int* pos_list; | |
769 if (XmListGetSelectedPos (widget, &pos_list, &pos_cnt)) | |
770 { | |
771 int i; | |
772 widget_value* cur; | |
773 for (cur = val->contents, i = 0; cur; cur = cur->next) | |
774 if (cur->value) | |
775 { | |
776 int j; | |
777 cur->selected = False; | |
778 i += 1; | |
779 for (j = 0; j < pos_cnt; j++) | |
780 if (pos_list [j] == i) | |
781 { | |
782 cur->selected = True; | |
8784 | 783 val->value = safe_strdup (cur->name); |
5626 | 784 } |
785 } | |
786 val->edited = 1; | |
787 XtFree ((char *) pos_list); | |
788 } | |
789 } | |
790 } | |
791 | |
792 | |
793 /* This function is for activating a button from a program. It's wrong because | |
794 we pass a NULL argument in the call_data which is not Motif compatible. | |
795 This is used from the XmNdefaultAction callback of the List widgets to | |
14018 | 796 have a double-click put down a dialog box like the button would do. |
5626 | 797 I could not find a way to do that with accelerators. |
798 */ | |
799 static void | |
11862
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
800 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
|
801 Widget widget; |
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
802 XtPointer closure; |
10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
Karl Heuer <kwzh@gnu.org>
parents:
11435
diff
changeset
|
803 XtPointer call_data; |
5626 | 804 { |
805 Widget button = (Widget)closure; | |
806 XtCallCallbacks (button, XmNactivateCallback, NULL); | |
807 } | |
808 | |
809 /* creation functions */ | |
810 | |
811 /* dialogs */ | |
812 static Widget | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
813 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
|
814 radio_box, list, left_buttons, right_buttons) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
815 char* name; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
816 Widget parent; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
817 Boolean pop_up_p; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
818 char* shell_title; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
819 char* icon_name; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
820 Boolean text_input_slot; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
821 Boolean radio_box; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
822 Boolean list; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
823 int left_buttons; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
824 int right_buttons; |
5626 | 825 { |
826 Widget result; | |
827 Widget form; | |
828 Widget row; | |
829 Widget icon; | |
830 Widget icon_separator; | |
831 Widget message; | |
832 Widget value = 0; | |
833 Widget separator; | |
834 Widget button = 0; | |
835 Widget children [16]; /* for the final XtManageChildren */ | |
836 int n_children; | |
837 Arg al[64]; /* Arg List */ | |
838 int ac; /* Arg Count */ | |
839 int i; | |
840 | |
841 if (pop_up_p) | |
842 { | |
843 ac = 0; | |
844 XtSetArg(al[ac], XmNtitle, shell_title); ac++; | |
845 XtSetArg(al[ac], XtNallowShellResize, True); ac++; | |
846 XtSetArg(al[ac], XmNdeleteResponse, XmUNMAP); ac++; | |
847 result = XmCreateDialogShell (parent, "dialog", al, ac); | |
848 ac = 0; | |
849 XtSetArg(al[ac], XmNautoUnmanage, FALSE); ac++; | |
850 /* XtSetArg(al[ac], XmNautoUnmanage, TRUE); ac++; */ /* ####is this ok? */ | |
851 XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++; | |
852 form = XmCreateForm (result, shell_title, al, ac); | |
853 } | |
854 else | |
855 { | |
856 ac = 0; | |
857 XtSetArg(al[ac], XmNautoUnmanage, FALSE); ac++; | |
858 XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++; | |
859 form = XmCreateForm (parent, shell_title, al, ac); | |
860 result = form; | |
861 } | |
862 | |
8884 | 863 n_children = left_buttons + right_buttons + 1; |
5626 | 864 ac = 0; |
8884 | 865 XtSetArg(al[ac], XmNpacking, n_children == 3? |
866 XmPACK_COLUMN: XmPACK_TIGHT); ac++; | |
867 XtSetArg(al[ac], XmNorientation, n_children == 3? | |
868 XmVERTICAL: XmHORIZONTAL); ac++; | |
5626 | 869 XtSetArg(al[ac], XmNnumColumns, left_buttons + right_buttons + 1); ac++; |
870 XtSetArg(al[ac], XmNmarginWidth, 0); ac++; | |
871 XtSetArg(al[ac], XmNmarginHeight, 0); ac++; | |
872 XtSetArg(al[ac], XmNspacing, 13); ac++; | |
873 XtSetArg(al[ac], XmNadjustLast, False); ac++; | |
874 XtSetArg(al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++; | |
875 XtSetArg(al[ac], XmNisAligned, True); ac++; | |
876 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++; | |
877 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_FORM); ac++; | |
878 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
879 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++; | |
880 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
881 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
882 XtSetArg(al[ac], XmNrightOffset, 13); ac++; | |
883 row = XmCreateRowColumn (form, "row", al, ac); | |
884 | |
885 n_children = 0; | |
886 for (i = 0; i < left_buttons; i++) | |
887 { | |
888 char button_name [16]; | |
889 sprintf (button_name, "button%d", i + 1); | |
890 ac = 0; | |
891 if (i == 0) | |
892 { | |
893 XtSetArg(al[ac], XmNhighlightThickness, 1); ac++; | |
894 XtSetArg(al[ac], XmNshowAsDefault, TRUE); ac++; | |
895 } | |
8884 | 896 XtSetArg(al[ac], XmNmarginWidth, 10); ac++; |
5626 | 897 XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++; |
898 children [n_children] = XmCreatePushButton (row, button_name, al, ac); | |
899 | |
900 if (i == 0) | |
901 { | |
902 button = children [n_children]; | |
903 ac = 0; | |
904 XtSetArg(al[ac], XmNdefaultButton, button); ac++; | |
905 XtSetValues (row, al, ac); | |
906 } | |
907 | |
908 n_children++; | |
909 } | |
910 | |
14018 | 911 /* invisible separator button */ |
5626 | 912 ac = 0; |
913 XtSetArg (al[ac], XmNmappedWhenManaged, FALSE); ac++; | |
914 children [n_children] = XmCreateLabel (row, "separator_button", al, ac); | |
915 n_children++; | |
916 | |
917 for (i = 0; i < right_buttons; i++) | |
918 { | |
919 char button_name [16]; | |
920 sprintf (button_name, "button%d", left_buttons + i + 1); | |
921 ac = 0; | |
8884 | 922 XtSetArg(al[ac], XmNmarginWidth, 10); ac++; |
5626 | 923 XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++; |
924 children [n_children] = XmCreatePushButton (row, button_name, al, ac); | |
925 if (! button) button = children [n_children]; | |
926 n_children++; | |
927 } | |
928 | |
929 XtManageChildren (children, n_children); | |
930 | |
931 ac = 0; | |
932 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++; | |
933 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
934 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
935 XtSetArg(al[ac], XmNbottomWidget, row); ac++; | |
936 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++; | |
937 XtSetArg(al[ac], XmNleftOffset, 0); ac++; | |
938 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
939 XtSetArg(al[ac], XmNrightOffset, 0); ac++; | |
940 separator = XmCreateSeparator (form, "", al, ac); | |
941 | |
942 ac = 0; | |
943 XtSetArg(al[ac], XmNlabelType, XmPIXMAP); ac++; | |
944 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM); ac++; | |
945 XtSetArg(al[ac], XmNtopOffset, 13); ac++; | |
946 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_NONE); ac++; | |
947 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++; | |
948 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
949 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_NONE); ac++; | |
950 icon = XmCreateLabel (form, icon_name, al, ac); | |
951 | |
952 ac = 0; | |
953 XtSetArg(al[ac], XmNmappedWhenManaged, FALSE); ac++; | |
954 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_WIDGET); ac++; | |
955 XtSetArg(al[ac], XmNtopOffset, 6); ac++; | |
956 XtSetArg(al[ac], XmNtopWidget, icon); ac++; | |
957 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
958 XtSetArg(al[ac], XmNbottomOffset, 6); ac++; | |
959 XtSetArg(al[ac], XmNbottomWidget, separator); ac++; | |
960 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_NONE); ac++; | |
961 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_NONE); ac++; | |
962 icon_separator = XmCreateLabel (form, "", al, ac); | |
963 | |
964 if (text_input_slot) | |
965 { | |
966 ac = 0; | |
967 XtSetArg(al[ac], XmNcolumns, 50); ac++; | |
968 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++; | |
969 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
970 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
971 XtSetArg(al[ac], XmNbottomWidget, separator); ac++; | |
972 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++; | |
973 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
974 XtSetArg(al[ac], XmNleftWidget, icon); ac++; | |
975 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
976 XtSetArg(al[ac], XmNrightOffset, 13); ac++; | |
977 value = XmCreateTextField (form, "value", al, ac); | |
978 } | |
979 else if (radio_box) | |
980 { | |
981 Widget radio_butt; | |
982 ac = 0; | |
983 XtSetArg(al[ac], XmNmarginWidth, 0); ac++; | |
984 XtSetArg(al[ac], XmNmarginHeight, 0); ac++; | |
985 XtSetArg(al[ac], XmNspacing, 13); ac++; | |
986 XtSetArg(al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++; | |
987 XtSetArg(al[ac], XmNorientation, XmHORIZONTAL); ac++; | |
988 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
989 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
990 XtSetArg(al[ac], XmNbottomWidget, separator); ac++; | |
991 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++; | |
992 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
993 XtSetArg(al[ac], XmNleftWidget, icon); ac++; | |
994 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
995 XtSetArg(al[ac], XmNrightOffset, 13); ac++; | |
996 value = XmCreateRadioBox (form, "radiobutton1", al, ac); | |
997 ac = 0; | |
998 i = 0; | |
999 radio_butt = XmCreateToggleButtonGadget (value, "radio1", al, ac); | |
1000 children [i++] = radio_butt; | |
1001 radio_butt = XmCreateToggleButtonGadget (value, "radio2", al, ac); | |
1002 children [i++] = radio_butt; | |
1003 radio_butt = XmCreateToggleButtonGadget (value, "radio3", al, ac); | |
1004 children [i++] = radio_butt; | |
1005 XtManageChildren (children, i); | |
1006 } | |
1007 else if (list) | |
1008 { | |
1009 ac = 0; | |
1010 XtSetArg(al[ac], XmNvisibleItemCount, 5); ac++; | |
1011 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++; | |
1012 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
1013 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
1014 XtSetArg(al[ac], XmNbottomWidget, separator); ac++; | |
1015 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++; | |
1016 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
1017 XtSetArg(al[ac], XmNleftWidget, icon); ac++; | |
1018 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
1019 XtSetArg(al[ac], XmNrightOffset, 13); ac++; | |
1020 value = XmCreateScrolledList (form, "list", al, ac); | |
1021 | |
1022 /* this is the easiest way I found to have the dble click in the | |
1023 list activate the default button */ | |
1024 XtAddCallback (value, XmNdefaultActionCallback, activate_button, button); | |
1025 } | |
1026 | |
1027 ac = 0; | |
1028 XtSetArg(al[ac], XmNalignment, XmALIGNMENT_BEGINNING); ac++; | |
1029 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM); ac++; | |
1030 XtSetArg(al[ac], XmNtopOffset, 13); ac++; | |
1031 XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++; | |
1032 XtSetArg(al[ac], XmNbottomOffset, 13); ac++; | |
1033 XtSetArg(al[ac], XmNbottomWidget, | |
1034 text_input_slot || radio_box || list ? value : separator); ac++; | |
1035 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++; | |
1036 XtSetArg(al[ac], XmNleftOffset, 13); ac++; | |
1037 XtSetArg(al[ac], XmNleftWidget, icon); ac++; | |
1038 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
1039 XtSetArg(al[ac], XmNrightOffset, 13); ac++; | |
1040 message = XmCreateLabel (form, "message", al, ac); | |
1041 | |
1042 if (list) | |
1043 XtManageChild (value); | |
1044 | |
1045 i = 0; | |
1046 children [i] = row; i++; | |
1047 children [i] = separator; i++; | |
1048 if (text_input_slot || radio_box) | |
1049 { | |
1050 children [i] = value; i++; | |
1051 } | |
1052 children [i] = message; i++; | |
1053 children [i] = icon; i++; | |
1054 children [i] = icon_separator; i++; | |
1055 XtManageChildren (children, i); | |
1056 | |
1057 if (text_input_slot || list) | |
1058 { | |
1059 XtInstallAccelerators (value, button); | |
1060 XtSetKeyboardFocus (result, value); | |
1061 } | |
1062 else | |
1063 { | |
1064 XtInstallAccelerators (form, button); | |
1065 XtSetKeyboardFocus (result, button); | |
1066 } | |
1067 | |
1068 return result; | |
1069 } | |
1070 | |
1071 static destroyed_instance* | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1072 find_matching_instance (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1073 widget_instance* instance; |
5626 | 1074 { |
1075 destroyed_instance* cur; | |
1076 destroyed_instance* prev; | |
1077 char* type = instance->info->type; | |
1078 char* name = instance->info->name; | |
1079 | |
1080 for (prev = NULL, cur = all_destroyed_instances; | |
1081 cur; | |
1082 prev = cur, cur = cur->next) | |
1083 { | |
1084 if (!strcmp (cur->name, name) | |
1085 && !strcmp (cur->type, type) | |
1086 && cur->parent == instance->parent | |
1087 && cur->pop_up_p == instance->pop_up_p) | |
1088 { | |
1089 if (prev) | |
1090 prev->next = cur->next; | |
1091 else | |
1092 all_destroyed_instances = cur->next; | |
1093 return cur; | |
1094 } | |
1095 /* do some cleanup */ | |
1096 else if (!cur->widget) | |
1097 { | |
1098 if (prev) | |
1099 prev->next = cur->next; | |
1100 else | |
1101 all_destroyed_instances = cur->next; | |
1102 free_destroyed_instance (cur); | |
1103 cur = prev ? prev : all_destroyed_instances; | |
1104 } | |
1105 } | |
1106 return NULL; | |
1107 } | |
1108 | |
1109 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1110 mark_dead_instance_destroyed (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1111 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1112 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1113 XtPointer call_data; |
5626 | 1114 { |
1115 destroyed_instance* instance = (destroyed_instance*)closure; | |
1116 instance->widget = NULL; | |
1117 } | |
1118 | |
1119 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1120 recenter_widget (widget) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1121 Widget widget; |
5626 | 1122 { |
1123 Widget parent = XtParent (widget); | |
1124 Screen* screen = XtScreen (widget); | |
1125 Dimension screen_width = WidthOfScreen (screen); | |
1126 Dimension screen_height = HeightOfScreen (screen); | |
1127 Dimension parent_width = 0; | |
1128 Dimension parent_height = 0; | |
1129 Dimension child_width = 0; | |
1130 Dimension child_height = 0; | |
1131 Position x; | |
1132 Position y; | |
1133 | |
1134 XtVaGetValues (widget, XtNwidth, &child_width, XtNheight, &child_height, 0); | |
1135 XtVaGetValues (parent, XtNwidth, &parent_width, XtNheight, &parent_height, | |
1136 0); | |
1137 | |
1138 x = (((Position)parent_width) - ((Position)child_width)) / 2; | |
1139 y = (((Position)parent_height) - ((Position)child_height)) / 2; | |
1140 | |
1141 XtTranslateCoords (parent, x, y, &x, &y); | |
1142 | |
1143 if (x + child_width > screen_width) | |
1144 x = screen_width - child_width; | |
1145 if (x < 0) | |
1146 x = 0; | |
1147 | |
1148 if (y + child_height > screen_height) | |
1149 y = screen_height - child_height; | |
1150 if (y < 0) | |
1151 y = 0; | |
1152 | |
1153 XtVaSetValues (widget, XtNx, x, XtNy, y, 0); | |
1154 } | |
1155 | |
1156 static Widget | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1157 recycle_instance (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1158 destroyed_instance* instance; |
5626 | 1159 { |
1160 Widget widget = instance->widget; | |
1161 | |
1162 /* widget is NULL if the parent was destroyed. */ | |
1163 if (widget) | |
1164 { | |
1165 Widget focus; | |
1166 Widget separator; | |
1167 | |
1168 /* Remove the destroy callback as the instance is not in the list | |
1169 anymore */ | |
1170 XtRemoveCallback (instance->parent, XtNdestroyCallback, | |
1171 mark_dead_instance_destroyed, | |
1172 (XtPointer)instance); | |
1173 | |
1174 /* Give the focus to the initial item */ | |
1175 focus = XtNameToWidget (widget, "*value"); | |
1176 if (!focus) | |
1177 focus = XtNameToWidget (widget, "*button1"); | |
1178 if (focus) | |
1179 XtSetKeyboardFocus (widget, focus); | |
1180 | |
1181 /* shrink the separator label back to their original size */ | |
1182 separator = XtNameToWidget (widget, "*separator_button"); | |
1183 if (separator) | |
1184 XtVaSetValues (separator, XtNwidth, 5, XtNheight, 5, 0); | |
1185 | |
1186 /* Center the dialog in its parent */ | |
1187 recenter_widget (widget); | |
1188 } | |
1189 free_destroyed_instance (instance); | |
1190 return widget; | |
1191 } | |
1192 | |
1193 Widget | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1194 xm_create_dialog (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1195 widget_instance* instance; |
5626 | 1196 { |
1197 char* name = instance->info->type; | |
1198 Widget parent = instance->parent; | |
1199 Widget widget; | |
1200 Boolean pop_up_p = instance->pop_up_p; | |
1201 char* shell_name = 0; | |
1202 char* icon_name; | |
1203 Boolean text_input_slot = False; | |
1204 Boolean radio_box = False; | |
1205 Boolean list = False; | |
1206 int total_buttons; | |
1207 int left_buttons = 0; | |
1208 int right_buttons = 1; | |
1209 destroyed_instance* dead_one; | |
1210 | |
1211 /* try to find a widget to recycle */ | |
1212 dead_one = find_matching_instance (instance); | |
1213 if (dead_one) | |
1214 { | |
1215 Widget recycled_widget = recycle_instance (dead_one); | |
1216 if (recycled_widget) | |
1217 return recycled_widget; | |
1218 } | |
1219 | |
1220 switch (name [0]){ | |
1221 case 'E': case 'e': | |
1222 icon_name = "dbox-error"; | |
1223 shell_name = "Error"; | |
1224 break; | |
1225 | |
1226 case 'I': case 'i': | |
1227 icon_name = "dbox-info"; | |
1228 shell_name = "Information"; | |
1229 break; | |
1230 | |
1231 case 'L': case 'l': | |
1232 list = True; | |
1233 icon_name = "dbox-question"; | |
1234 shell_name = "Prompt"; | |
1235 break; | |
1236 | |
1237 case 'P': case 'p': | |
1238 text_input_slot = True; | |
1239 icon_name = "dbox-question"; | |
1240 shell_name = "Prompt"; | |
1241 break; | |
1242 | |
1243 case 'Q': case 'q': | |
1244 icon_name = "dbox-question"; | |
1245 shell_name = "Question"; | |
1246 break; | |
1247 } | |
1248 | |
1249 total_buttons = name [1] - '0'; | |
1250 | |
1251 if (name [3] == 'T' || name [3] == 't') | |
1252 { | |
1253 text_input_slot = False; | |
1254 radio_box = True; | |
1255 } | |
1256 else if (name [3]) | |
1257 right_buttons = name [4] - '0'; | |
1258 | |
1259 left_buttons = total_buttons - right_buttons; | |
1260 | |
1261 widget = make_dialog (name, parent, pop_up_p, | |
1262 shell_name, icon_name, text_input_slot, radio_box, | |
1263 list, left_buttons, right_buttons); | |
1264 | |
1265 XtAddCallback (widget, XmNpopdownCallback, xm_nosel_callback, | |
1266 (XtPointer) instance); | |
1267 return widget; | |
1268 } | |
1269 | |
1270 static Widget | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1271 make_menubar (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1272 widget_instance* instance; |
5626 | 1273 { |
1274 return XmCreateMenuBar (instance->parent, instance->info->name, NULL, 0); | |
1275 } | |
1276 | |
1277 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1278 remove_grabs (shell, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1279 Widget shell; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1280 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1281 XtPointer call_data; |
5626 | 1282 { |
11245
5fdf816307c6
(remove_grabs): Use type Widget for `menu'.
Richard M. Stallman <rms@gnu.org>
parents:
9835
diff
changeset
|
1283 Widget menu = (Widget) closure; |
5fdf816307c6
(remove_grabs): Use type Widget for `menu'.
Richard M. Stallman <rms@gnu.org>
parents:
9835
diff
changeset
|
1284 XmRemoveFromPostFromList (menu, XtParent (XtParent (menu))); |
5626 | 1285 } |
1286 | |
1287 static Widget | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1288 make_popup_menu (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1289 widget_instance* instance; |
5626 | 1290 { |
1291 Widget parent = instance->parent; | |
1292 Window parent_window = parent->core.window; | |
1293 Widget result; | |
1294 | |
1295 /* sets the parent window to 0 to fool Motif into not generating a grab */ | |
1296 parent->core.window = 0; | |
1297 result = XmCreatePopupMenu (parent, instance->info->name, NULL, 0); | |
1298 XtAddCallback (XtParent (result), XmNpopdownCallback, remove_grabs, | |
1299 (XtPointer)result); | |
1300 parent->core.window = parent_window; | |
1301 return result; | |
1302 } | |
8784 | 1303 static Widget |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1304 make_main (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1305 widget_instance* instance; |
8784 | 1306 { |
1307 Widget parent = instance->parent; | |
1308 Widget result; | |
1309 Arg al[2]; | |
1310 int ac; | |
1311 | |
1312 ac = 0; | |
1313 XtSetArg (al[ac], XtNborderWidth, 0); ac++; | |
1314 XtSetArg (al[ac], XmNspacing, 0); ac++; | |
1315 result = XmCreateMainWindow (parent, instance->info->name, al, ac); | |
1316 return result; | |
1317 } | |
5626 | 1318 |
1319 /* Table of functions to create widgets */ | |
1320 | |
1321 #ifdef ENERGIZE | |
1322 | |
1323 /* interface with the XDesigner generated functions */ | |
1324 typedef Widget (*widget_maker) (Widget); | |
1325 extern Widget create_project_p_sheet (Widget parent); | |
1326 extern Widget create_debugger_p_sheet (Widget parent); | |
1327 extern Widget create_breaklist_p_sheet (Widget parent); | |
1328 extern Widget create_le_browser_p_sheet (Widget parent); | |
1329 extern Widget create_class_browser_p_sheet (Widget parent); | |
1330 extern Widget create_call_browser_p_sheet (Widget parent); | |
1331 extern Widget create_build_dialog (Widget parent); | |
1332 extern Widget create_editmode_dialog (Widget parent); | |
1333 extern Widget create_search_dialog (Widget parent); | |
1334 extern Widget create_project_display_dialog (Widget parent); | |
1335 | |
1336 static Widget | |
1337 make_one (widget_instance* instance, widget_maker fn) | |
1338 { | |
1339 Widget result; | |
1340 Arg al [64]; | |
1341 int ac = 0; | |
1342 | |
1343 if (instance->pop_up_p) | |
1344 { | |
1345 XtSetArg (al [ac], XmNallowShellResize, TRUE); ac++; | |
1346 result = XmCreateDialogShell (instance->parent, "dialog", NULL, 0); | |
1347 XtAddCallback (result, XmNpopdownCallback, &xm_nosel_callback, | |
1348 (XtPointer) instance); | |
1349 (*fn) (result); | |
1350 } | |
1351 else | |
1352 { | |
1353 result = (*fn) (instance->parent); | |
1354 XtRealizeWidget (result); | |
1355 } | |
1356 return result; | |
1357 } | |
1358 | |
1359 static Widget | |
1360 make_project_p_sheet (widget_instance* instance) | |
1361 { | |
1362 return make_one (instance, create_project_p_sheet); | |
1363 } | |
1364 | |
1365 static Widget | |
1366 make_debugger_p_sheet (widget_instance* instance) | |
1367 { | |
1368 return make_one (instance, create_debugger_p_sheet); | |
1369 } | |
1370 | |
1371 static Widget | |
1372 make_breaklist_p_sheet (widget_instance* instance) | |
1373 { | |
1374 return make_one (instance, create_breaklist_p_sheet); | |
1375 } | |
1376 | |
1377 static Widget | |
1378 make_le_browser_p_sheet (widget_instance* instance) | |
1379 { | |
1380 return make_one (instance, create_le_browser_p_sheet); | |
1381 } | |
1382 | |
1383 static Widget | |
1384 make_class_browser_p_sheet (widget_instance* instance) | |
1385 { | |
1386 return make_one (instance, create_class_browser_p_sheet); | |
1387 } | |
1388 | |
1389 static Widget | |
1390 make_call_browser_p_sheet (widget_instance* instance) | |
1391 { | |
1392 return make_one (instance, create_call_browser_p_sheet); | |
1393 } | |
1394 | |
1395 static Widget | |
1396 make_build_dialog (widget_instance* instance) | |
1397 { | |
1398 return make_one (instance, create_build_dialog); | |
1399 } | |
1400 | |
1401 static Widget | |
1402 make_editmode_dialog (widget_instance* instance) | |
1403 { | |
1404 return make_one (instance, create_editmode_dialog); | |
1405 } | |
1406 | |
1407 static Widget | |
1408 make_search_dialog (widget_instance* instance) | |
1409 { | |
1410 return make_one (instance, create_search_dialog); | |
1411 } | |
1412 | |
1413 static Widget | |
1414 make_project_display_dialog (widget_instance* instance) | |
1415 { | |
1416 return make_one (instance, create_project_display_dialog); | |
1417 } | |
1418 | |
1419 #endif /* ENERGIZE */ | |
1420 | |
1421 widget_creation_entry | |
1422 xm_creation_table [] = | |
1423 { | |
1424 {"menubar", make_menubar}, | |
1425 {"popup", make_popup_menu}, | |
8784 | 1426 {"main", make_main}, |
5626 | 1427 #ifdef ENERGIZE |
1428 {"project_p_sheet", make_project_p_sheet}, | |
1429 {"debugger_p_sheet", make_debugger_p_sheet}, | |
1430 {"breaklist_psheet", make_breaklist_p_sheet}, | |
1431 {"leb_psheet", make_le_browser_p_sheet}, | |
1432 {"class_browser_psheet", make_class_browser_p_sheet}, | |
1433 {"ctree_browser_psheet", make_call_browser_p_sheet}, | |
1434 {"build", make_build_dialog}, | |
1435 {"editmode", make_editmode_dialog}, | |
1436 {"search", make_search_dialog}, | |
1437 {"project_display", make_project_display_dialog}, | |
1438 #endif /* ENERGIZE */ | |
1439 {NULL, NULL} | |
1440 }; | |
1441 | |
1442 /* Destruction of instances */ | |
1443 void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1444 xm_destroy_instance (instance) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1445 widget_instance* instance; |
5626 | 1446 { |
1447 Widget widget = instance->widget; | |
1448 /* recycle the dialog boxes */ | |
1449 /* Disable the recycling until we can find a way to have the dialog box | |
1450 get reasonable layout after we modify its contents. */ | |
1451 if (0 | |
1452 && XtClass (widget) == xmDialogShellWidgetClass) | |
1453 { | |
1454 destroyed_instance* dead_instance = | |
1455 make_destroyed_instance (instance->info->name, | |
1456 instance->info->type, | |
1457 instance->widget, | |
1458 instance->parent, | |
1459 instance->pop_up_p); | |
1460 dead_instance->next = all_destroyed_instances; | |
1461 all_destroyed_instances = dead_instance; | |
1462 XtUnmanageChild (first_child (instance->widget)); | |
1463 XFlush (XtDisplay (instance->widget)); | |
1464 XtAddCallback (instance->parent, XtNdestroyCallback, | |
1465 mark_dead_instance_destroyed, (XtPointer)dead_instance); | |
1466 } | |
1467 else | |
1468 { | |
1469 /* This might not be necessary now that the nosel is attached to | |
1470 popdown instead of destroy, but it can't hurt. */ | |
1471 XtRemoveCallback (instance->widget, XtNdestroyCallback, | |
1472 xm_nosel_callback, (XtPointer)instance); | |
1473 XtDestroyWidget (instance->widget); | |
1474 } | |
1475 } | |
1476 | |
1477 /* popup utility */ | |
1478 void | |
12746
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1479 xm_popup_menu (widget, event) |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1480 Widget widget; |
12746
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1481 XEvent *event; |
5626 | 1482 { |
1483 XButtonPressedEvent dummy; | |
1484 | |
12746
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1485 if (event == 0) |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1486 { |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1487 dummy.type = ButtonPress; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1488 dummy.serial = 0; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1489 dummy.send_event = 0; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1490 dummy.display = XtDisplay (widget); |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1491 dummy.window = XtWindow (XtParent (widget)); |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1492 dummy.time = 0; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1493 dummy.button = 0; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1494 XQueryPointer (dummy.display, dummy.window, &dummy.root, |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1495 &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
|
1496 &dummy.x, &dummy.y, &dummy.state); |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1497 event = (XEvent *) &dummy; |
23cd08c6dd2a
(xm_popup_menu): New arg `event'.
Richard M. Stallman <rms@gnu.org>
parents:
11862
diff
changeset
|
1498 } |
5626 | 1499 |
1500 if (event->type == ButtonPress || event->type == ButtonRelease) | |
1501 { | |
1502 /* This is so totally ridiculous: there's NO WAY to tell Motif | |
1503 that *any* button can select a menu item. Only one button | |
1504 can have that honor. | |
1505 */ | |
1506 char *trans = 0; | |
1507 if (event->xbutton.state & Button5Mask) trans = "<Btn5Down>"; | |
1508 else if (event->xbutton.state & Button4Mask) trans = "<Btn4Down>"; | |
1509 else if (event->xbutton.state & Button3Mask) trans = "<Btn3Down>"; | |
1510 else if (event->xbutton.state & Button2Mask) trans = "<Btn2Down>"; | |
1511 else if (event->xbutton.state & Button1Mask) trans = "<Btn1Down>"; | |
1512 if (trans) XtVaSetValues (widget, XmNmenuPost, trans, 0); | |
1513 XmMenuPosition (widget, (XButtonPressedEvent *) event); | |
1514 } | |
1515 XtManageChild (widget); | |
1516 } | |
1517 | |
1518 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1519 set_min_dialog_size (w) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1520 Widget w; |
5626 | 1521 { |
1522 short width; | |
1523 short height; | |
1524 XtVaGetValues (w, XmNwidth, &width, XmNheight, &height, 0); | |
1525 XtVaSetValues (w, XmNminWidth, width, XmNminHeight, height, 0); | |
1526 } | |
1527 | |
1528 void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1529 xm_pop_instance (instance, up) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1530 widget_instance* instance; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1531 Boolean up; |
5626 | 1532 { |
1533 Widget widget = instance->widget; | |
1534 | |
1535 if (XtClass (widget) == xmDialogShellWidgetClass) | |
1536 { | |
1537 Widget widget_to_manage = first_child (widget); | |
1538 if (up) | |
1539 { | |
1540 XtManageChild (widget_to_manage); | |
1541 set_min_dialog_size (widget); | |
1542 XtSetKeyboardFocus (instance->parent, widget); | |
1543 } | |
1544 else | |
1545 XtUnmanageChild (widget_to_manage); | |
1546 } | |
1547 else | |
1548 { | |
1549 if (up) | |
1550 XtManageChild (widget); | |
1551 else | |
1552 XtUnmanageChild (widget); | |
1553 } | |
1554 } | |
1555 | |
1556 | |
1557 /* motif callback */ | |
1558 | |
1559 enum do_call_type { pre_activate, selection, no_selection, post_activate }; | |
1560 | |
1561 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1562 do_call (widget, closure, type) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1563 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1564 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1565 enum do_call_type type; |
5626 | 1566 { |
1567 Arg al [256]; | |
1568 int ac; | |
1569 XtPointer user_data; | |
1570 widget_instance* instance = (widget_instance*)closure; | |
1571 Widget instance_widget; | |
1572 LWLIB_ID id; | |
1573 | |
1574 if (!instance) | |
1575 return; | |
1576 if (widget->core.being_destroyed) | |
1577 return; | |
1578 | |
1579 instance_widget = instance->widget; | |
1580 if (!instance_widget) | |
1581 return; | |
1582 | |
1583 id = instance->info->id; | |
1584 ac = 0; | |
1585 user_data = NULL; | |
1586 XtSetArg (al [ac], XmNuserData, &user_data); ac++; | |
1587 XtGetValues (widget, al, ac); | |
1588 switch (type) | |
1589 { | |
1590 case pre_activate: | |
1591 if (instance->info->pre_activate_cb) | |
1592 instance->info->pre_activate_cb (widget, id, user_data); | |
1593 break; | |
1594 case selection: | |
1595 if (instance->info->selection_cb) | |
1596 instance->info->selection_cb (widget, id, user_data); | |
1597 break; | |
1598 case no_selection: | |
1599 if (instance->info->selection_cb) | |
1600 instance->info->selection_cb (widget, id, (XtPointer) -1); | |
1601 break; | |
1602 case post_activate: | |
1603 if (instance->info->post_activate_cb) | |
1604 instance->info->post_activate_cb (widget, id, user_data); | |
1605 break; | |
1606 default: | |
1607 abort (); | |
1608 } | |
1609 } | |
1610 | |
1611 /* Like lw_internal_update_other_instances except that it does not do | |
1612 anything if its shell parent is not managed. This is to protect | |
1613 lw_internal_update_other_instances to dereference freed memory | |
1614 if the widget was ``destroyed'' by caching it in the all_destroyed_instances | |
1615 list */ | |
1616 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1617 xm_internal_update_other_instances (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1618 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1619 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1620 XtPointer call_data; |
5626 | 1621 { |
1622 Widget parent; | |
1623 for (parent = widget; parent; parent = XtParent (parent)) | |
1624 if (XtIsShell (parent)) | |
1625 break; | |
1626 else if (!XtIsManaged (parent)) | |
1627 return; | |
1628 lw_internal_update_other_instances (widget, closure, call_data); | |
1629 } | |
1630 | |
1631 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1632 xm_generic_callback (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1633 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1634 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1635 XtPointer call_data; |
5626 | 1636 { |
1637 lw_internal_update_other_instances (widget, closure, call_data); | |
1638 do_call (widget, closure, selection); | |
1639 } | |
1640 | |
1641 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1642 xm_nosel_callback (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1643 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1644 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1645 XtPointer call_data; |
5626 | 1646 { |
1647 /* This callback is only called when a dialog box is dismissed with the wm's | |
1648 destroy button (WM_DELETE_WINDOW.) We want the dialog box to be destroyed | |
1649 in that case, not just unmapped, so that it releases its keyboard grabs. | |
1650 But there are problems with running our callbacks while the widget is in | |
1651 the process of being destroyed, so we set XmNdeleteResponse to XmUNMAP | |
1652 instead of XmDESTROY and then destroy it ourself after having run the | |
1653 callback. | |
1654 */ | |
1655 do_call (widget, closure, no_selection); | |
1656 XtDestroyWidget (widget); | |
1657 } | |
1658 | |
1659 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1660 xm_pull_down_callback (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1661 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1662 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1663 XtPointer call_data; |
5626 | 1664 { |
1665 do_call (widget, closure, pre_activate); | |
1666 } | |
1667 | |
1668 static void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1669 xm_pop_down_callback (widget, closure, call_data) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1670 Widget widget; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1671 XtPointer closure; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1672 XtPointer call_data; |
5626 | 1673 { |
9835
d2250d1b0f48
(make_menu_in_widget): Differentiate a separator entry ("--") from a
Paul Reilly <pmr@pajato.com>
parents:
9825
diff
changeset
|
1674 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
|
1675 |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1676 if ((!instance->pop_up_p && (XtParent (widget) == instance->widget)) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1677 || (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
|
1678 do_call (widget, closure, post_activate); |
5626 | 1679 } |
1680 | |
1681 | |
1682 /* set the keyboard focus */ | |
1683 void | |
11299
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1684 xm_set_keyboard_focus (parent, w) |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1685 Widget parent; |
f82f4e93e523
(*): remove function prototypes.
Paul Reilly <pmr@pajato.com>
parents:
11245
diff
changeset
|
1686 Widget w; |
5626 | 1687 { |
1688 XmProcessTraversal (w, 0); | |
1689 XtSetKeyboardFocus (parent, w); | |
1690 } | |
9224
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1691 |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1692 /* 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
|
1693 void |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1694 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
|
1695 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
|
1696 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
|
1697 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
|
1698 { |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1699 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
|
1700 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
|
1701 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
|
1702 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
|
1703 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
|
1704 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
|
1705 } |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1706 |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1707 /* 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
|
1708 void |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1709 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
|
1710 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
|
1711 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
|
1712 { |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1713 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
|
1714 { |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1715 /* 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
|
1716 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
|
1717 |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1718 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
|
1719 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
|
1720 } |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1721 else |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1722 { |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1723 /* 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
|
1724 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
|
1725 |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1726 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
|
1727 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
|
1728 } |
b4563001d783
(make_menu_in_widget): Add support for displaying a title in pop up
Paul Reilly <pmr@pajato.com>
parents:
8884
diff
changeset
|
1729 } |