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