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