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