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