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