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