annotate src/menubar-x.c @ 371:cc15677e0335 r21-2b1

Import from CVS: tag r21-2b1
author cvs
date Mon, 13 Aug 2007 11:03:08 +0200
parents 8e84bee8ddd0
children 6240c7796c7a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Implements an elisp-programmable menubar -- X interface.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* created 16-dec-91 by jwz */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "EmacsManager.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "EmacsFrame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "EmacsShell.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "gui-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "commands.h" /* zmacs_regions */
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 219
diff changeset
37 #include "gui.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 static int set_frame_menubar (struct frame *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 int deep_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 int first_time_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #define FRAME_MENUBAR_DATA(frame) ((frame)->menubar_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #define XFRAME_MENUBAR_DATA(frame) XPOPUP_DATA ((frame)->menubar_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #define MENUBAR_TYPE 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #define SUBMENU_TYPE 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #define POPUP_TYPE 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 /* Converting Lisp menu tree descriptions to lwlib's `widget_value' form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 menu_item_descriptor_to_widget_value() converts a lisp description of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 menubar into a tree of widget_value structures. It allocates widget_values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 with malloc_widget_value() and allocates other storage only for the `key'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 slot. All other slots are filled with pointers to Lisp_String data. We
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 allocate a widget_value description of the menu or menubar, and hand it to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 lwlib, which then makes a copy of it, which it manages internally. We then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 immediately free our widget_value tree; it will not be referenced again.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Incremental menu construction callbacks operate just a bit differently.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 They allocate widget_values and call replace_widget_value_tree() to tell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 lwlib to destructively modify the incremental stub (subtree) of its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 separate widget_value tree.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 This function is highly recursive (it follows the menu trees) and may call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 eval. The reason we keep pointers to lisp string data instead of copying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 it and freeing it later is to avoid the speed penalty that would entail
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (since this needs to be fast, in the simple cases at least). (The reason
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 we malloc/free the keys slot is because there's not a lisp string around
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 for us to use in that case.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 Since we keep pointers to lisp strings, and we call eval, we could lose if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 GC relocates (or frees) those strings. It's not easy to gc protect the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 strings because of the recursive nature of this function, and the fact that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 it returns a data structure that gets freed later. So... we do the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 sleaziest thing possible and inhibit GC for the duration. This is probably
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 not a big deal...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 We do not have to worry about the pointers to Lisp_String data after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 this function successfully finishes. lwlib copies all such data with
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
86 strdup(). */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 static widget_value *
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
89 menu_item_descriptor_to_widget_value_1 (Lisp_Object desc,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 int menu_type, int deep_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 int filter_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 /* This function cannot GC.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 It is only called from menu_item_descriptor_to_widget_value, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 prohibits GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 /* !!#### This function has not been Mule-ized */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 int menubar_root_p = (menu_type == MENUBAR_TYPE && depth == 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 widget_value *wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 Lisp_Object wv_closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 int count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 int partition_seen = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 wv = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 wv_closure = make_opaque_ptr (wv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 record_unwind_protect (widget_value_unwind, wv_closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 if (STRINGP (desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
111 char *string_chars = (char *) XSTRING_DATA (desc);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 wv->type = (separator_string_p (string_chars) ? SEPARATOR_TYPE :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 TEXT_TYPE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 #if 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 /* #### - should internationalize with X resources instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 Not so! --ben */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 string_chars = GETTEXT (string_chars);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 if (wv->type == SEPARATOR_TYPE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 wv->value = menu_separator_style (string_chars);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
122 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 wv->name = string_chars;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 wv->enabled = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 else if (VECTORP (desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 if (!button_item_to_widget_value (desc, wv, 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (menu_type == MENUBAR_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 && depth <= 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* :included form was nil */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 wv = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 goto menu_item_done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 else if (CONSP (desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 Lisp_Object incremental_data = desc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 widget_value *prev = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 if (STRINGP (XCAR (desc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 Lisp_Object key, val;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
148 Lisp_Object include_p = Qnil, hook_fn = Qnil, config_tag = Qnil;
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
149 Lisp_Object accel;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 int included_spec = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 wv->type = CASCADE_TYPE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 wv->enabled = 1;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
153 wv->name = (char *) XSTRING_DATA (LISP_GETTEXT (XCAR (desc)));
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
154
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
155 accel = menu_name_to_accelerator (wv->name);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
156 wv->accel = LISP_TO_VOID (accel);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
157
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 desc = Fcdr (desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 while (key = Fcar (desc), KEYWORDP (key))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 Lisp_Object cascade = desc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 desc = Fcdr (desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 if (NILP (desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 signal_simple_error ("keyword in menu lacks a value",
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
166 cascade);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 val = Fcar (desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 desc = Fcdr (desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 if (EQ (key, Q_included))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 include_p = val, included_spec = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 else if (EQ (key, Q_config))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 config_tag = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 else if (EQ (key, Q_filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 hook_fn = val;
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
175 else if (EQ (key, Q_accelerator))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
176 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
177 if ( SYMBOLP (val)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
178 || CHARP (val))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
179 wv->accel = LISP_TO_VOID (val);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
180 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
181 signal_simple_error ("bad keyboard accelerator", val);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
182 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
183 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 signal_simple_error ("unknown menu cascade keyword", cascade);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 if ((!NILP (config_tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 && NILP (Fmemq (config_tag, Vmenubar_configuration)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 || (included_spec && NILP (Feval (include_p))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 wv = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 goto menu_item_done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 }
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
194 if (!NILP (hook_fn))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
196 #if defined LWLIB_MENUBARS_LUCID || defined LWLIB_MENUBARS_MOTIF
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 if (filter_p || depth == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
199 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 desc = call1_trapping_errors ("Error in menubar filter",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 hook_fn, desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 if (UNBOUNDP (desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 desc = Qnil;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
204 #if defined LWLIB_MENUBARS_LUCID || defined LWLIB_MENUBARS_MOTIF
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 widget_value *incr_wv = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 wv->contents = incr_wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 incr_wv->type = INCREMENTAL_TYPE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 incr_wv->enabled = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 incr_wv->name = wv->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 /* This is automatically GC protected through
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 the call to lw_map_widget_values(); no need
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 to worry. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 incr_wv->call_data = LISP_TO_VOID (incremental_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 goto menu_item_done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 }
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 231
diff changeset
219 #endif /* LWLIB_MENUBARS_LUCID || LWLIB_MENUBARS_MOTIF */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 if (menu_type == POPUP_TYPE && popup_menu_titles && depth == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 /* Simply prepend three more widget values to the contents of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 the menu: a label, and two separators (to get a double
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 line). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 widget_value *title_wv = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 widget_value *sep_wv = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 title_wv->type = TEXT_TYPE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 title_wv->name = wv->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 title_wv->enabled = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 title_wv->next = sep_wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 sep_wv->type = SEPARATOR_TYPE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 sep_wv->value = menu_separator_style ("==");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 sep_wv->next = 0;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
235
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 wv->contents = title_wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 prev = sep_wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 else if (menubar_root_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
242 wv->name = (char *) "menubar";
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 wv->type = CASCADE_TYPE; /* Well, nothing else seems to fit and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 this is ignored anyway... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 signal_simple_error ("menu name (first element) must be a string",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 }
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
251
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
252 wv->enabled = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 if (deep_p || menubar_root_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 widget_value *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 for (; !NILP (desc); desc = Fcdr (desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 Lisp_Object child = Fcar (desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 if (menubar_root_p && NILP (child)) /* the partition */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 if (partition_seen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 error (
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 "more than one partition (nil) in menubar description");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 partition_seen = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 next = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 next->type = PUSHRIGHT_TYPE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
270 next = menu_item_descriptor_to_widget_value_1
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
271 (child, menu_type, deep_p, filter_p, depth + 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 if (! next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 else if (prev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 prev->next = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 wv->contents = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 if (deep_p && !wv->contents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 wv = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 else if (NILP (desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 error ("nil may not appear in menu descriptions");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 signal_simple_error ("unrecognized menu descriptor", desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 menu_item_done:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 if (wv)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 /* Completed normally. Clear out the object that widget_value_unwind()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 will be called with to tell it not to free the wv (as we are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 returning it.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 set_opaque_ptr (wv_closure, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 return wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 static widget_value *
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
305 menu_item_descriptor_to_widget_value (Lisp_Object desc,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 int menu_type, /* if this is a menubar,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 popup or sub menu */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 int deep_p, /* */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 int filter_p) /* if :filter forms
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
310 should run now */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 widget_value *wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 int count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 record_unwind_protect (restore_gc_inhibit,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 make_int (gc_currently_forbidden));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 gc_currently_forbidden = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 /* Can't GC! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 wv = menu_item_descriptor_to_widget_value_1 (desc, menu_type, deep_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 filter_p, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 return wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
325 #if defined LWLIB_MENUBARS_LUCID || defined LWLIB_MENUBARS_MOTIF
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
326 int in_menu_callback;
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
327
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 165
diff changeset
328 static Lisp_Object
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 165
diff changeset
329 restore_in_menu_callback (Lisp_Object val)
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
330 {
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
331 in_menu_callback = XINT(val);
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
332 return Qnil;
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
333 }
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 231
diff changeset
334 #endif /* LWLIB_MENUBARS_LUCID || LWLIB_MENUBARS_MOTIF */
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
335
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
336
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 /* The order in which callbacks are run is funny to say the least.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 It's sometimes tricky to avoid running a callback twice, and to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 avoid returning prematurely. So, this function returns true
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 if the menu's callbacks are no longer gc protected. So long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 as we unprotect them before allowing other callbacks to run,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 everything should be ok.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 The pre_activate_callback() *IS* intentionally called multiple times.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 If client_data == NULL, then it's being called before the menu is posted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 If client_data != NULL, then client_data is a (widget_value *) and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 client_data->data is a Lisp_Object pointing to a lisp submenu description
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 that must be converted into widget_values. *client_data is destructively
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
349 modified.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 #### Stig thinks that there may be a GC problem here due to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 fact that pre_activate_callback() is called multiple times, but I
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 think he's wrong.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 pre_activate_callback (Widget widget, LWLIB_ID id, XtPointer client_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 /* This function can GC */
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
361 struct gcpro gcpro1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 struct device *d = get_device_from_display (XtDisplay (widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 struct frame *f = x_any_window_to_frame (d, XtWindow (widget));
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
364 Lisp_Object rest = Qnil;
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
365 Lisp_Object frame;
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
366 int any_changes = 0;
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
367 int count;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
369 /* set in lwlib to the time stamp associated with the most recent menu
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
370 operation */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
371 extern Time x_focus_timestamp_really_sucks_fix_me_better;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
372
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 if (!f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 f = x_any_window_to_frame (d, XtWindow (XtParent (widget)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 if (!f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
378 /* make sure f is the selected frame */
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
379 XSETFRAME (frame, f);
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
380 Fselect_frame (frame);
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
381
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 if (client_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 /* this is an incremental menu construction callback */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 widget_value *hack_wv = (widget_value *) client_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 Lisp_Object submenu_desc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 widget_value *wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 assert (hack_wv->type == INCREMENTAL_TYPE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 VOID_TO_LISP (submenu_desc, hack_wv->call_data);
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
391
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
392 /*
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
393 * #### Fix the menu code so this isn't necessary.
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
394 *
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
395 * Protect against reentering the menu code otherwise we will
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
396 * crash later when the code gets confused at the state
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
397 * changes.
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
398 */
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
399 count = specpdl_depth ();
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
400 record_unwind_protect (restore_in_menu_callback,
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
401 make_int (in_menu_callback));
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
402 in_menu_callback = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 wv = menu_item_descriptor_to_widget_value (submenu_desc, SUBMENU_TYPE,
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 102
diff changeset
404 1, 0);
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
405 unbind_to (count, Qnil);
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 114
diff changeset
406
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 if (!wv)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 wv = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 wv->type = CASCADE_TYPE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 wv->next = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 wv->contents = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 wv->contents->type = TEXT_TYPE;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
414 wv->contents->name = (char *) "No menu";
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 wv->contents->next = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 assert (wv && wv->type == CASCADE_TYPE && wv->contents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 replace_widget_value_tree (hack_wv, wv->contents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 free_popup_widget_value_tree (wv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 {
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
423 if (!POPUP_DATAP (FRAME_MENUBAR_DATA (f)))
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
424 return;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 /* #### - this menubar update mechanism is expensively anti-social and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 the activate-menubar-hook is now mostly obsolete. */
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
427 /* make the activate-menubar-hook be a list of functions, not a single
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
428 function, just to simplify things. */
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
429 if (!NILP (Vactivate_menubar_hook) &&
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
430 (!CONSP (Vactivate_menubar_hook) ||
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
431 EQ (XCAR (Vactivate_menubar_hook), Qlambda)))
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
432 Vactivate_menubar_hook = Fcons (Vactivate_menubar_hook, Qnil);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
433
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
434 GCPRO1 (rest);
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
435 for (rest = Vactivate_menubar_hook; !NILP (rest); rest = Fcdr (rest))
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
436 if (!EQ (call0 (XCAR (rest)), Qt))
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
437 any_changes = 1;
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
438 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 /* #### - It is necessary to *ALWAYS* call set_frame_menubar() now that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 incremental menus are implemented. If a subtree of a menu has been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 updated incrementally (a destructive operation), then that subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 must somehow be wiped.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 It is difficult to undo the destructive operation in lwlib because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 a pointer back to lisp data needs to be hidden away somewhere. So
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 that an INCREMENTAL_TYPE widget_value can be recreated... Hmmmmm. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 if (any_changes ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 !XFRAME_MENUBAR_DATA (f)->menubar_contents_up_to_date)
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
449 #endif
314
341dac730539 Import from CVS: tag r21-0b55
cvs
parents: 284
diff changeset
450 set_frame_menubar (f, 1, 0);
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
451 DEVICE_X_MOUSE_TIMESTAMP (XDEVICE (FRAME_DEVICE (f))) =
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
452 DEVICE_X_GLOBAL_MOUSE_TIMESTAMP (XDEVICE (FRAME_DEVICE (f))) =
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
453 x_focus_timestamp_really_sucks_fix_me_better;
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
454 UNGCPRO;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 static widget_value *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 compute_menubar_data (struct frame *f, Lisp_Object menubar, int deep_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 widget_value *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 if (NILP (menubar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 {
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
467 Lisp_Object old_buffer;
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
468 int count = specpdl_depth ();
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
469
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
470 old_buffer = Fcurrent_buffer ();
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
471 record_unwind_protect (Fset_buffer, old_buffer);
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
472 Fset_buffer ( XWINDOW (FRAME_SELECTED_WINDOW (f))->buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 data = menu_item_descriptor_to_widget_value (menubar, MENUBAR_TYPE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 deep_p, 0);
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
475 Fset_buffer (old_buffer);
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
476 unbind_to (count, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 return data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 set_frame_menubar (struct frame *f, int deep_p, int first_time_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 widget_value *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 Lisp_Object menubar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 int menubar_visible;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 long id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 /* As for the toolbar, the minibuffer does not have its own menubar. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 struct window *w = XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 if (! FRAME_X_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 /***** first compute the contents of the menubar *****/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 if (! first_time_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 /* evaluate `current-menubar' in the buffer of the selected window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 of the frame in question. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 menubar = symbol_value_in_buffer (Qcurrent_menubar, w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 /* That's a little tricky the first time since the frame isn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 fully initialized yet. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 menubar = Fsymbol_value (Qcurrent_menubar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 if (NILP (menubar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 menubar = Vblank_menubar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 menubar_visible = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 menubar_visible = !NILP (w->menubar_visible_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 data = compute_menubar_data (f, menubar, deep_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 if (!data || (!data->next && !data->contents))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 abort ();
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
520
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 if (NILP (FRAME_MENUBAR_DATA (f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 struct popup_data *mdata =
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
524 alloc_lcrecord_type (struct popup_data, lrecord_popup_data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 mdata->id = new_lwlib_id ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 mdata->last_menubar_buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 mdata->menubar_contents_up_to_date = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 XSETPOPUP_DATA (FRAME_MENUBAR_DATA (f), mdata);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 /***** now store into the menubar widget, creating it if necessary *****/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 id = XFRAME_MENUBAR_DATA (f)->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 if (!FRAME_X_MENUBAR_WIDGET (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 Widget parent = FRAME_X_CONTAINER_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 assert (first_time_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 /* It's the first time we've mapped the menubar so compute its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 contents completely once. This makes sure that the menubar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 components are created with the right type. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 if (!deep_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 free_popup_widget_value_tree (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 data = compute_menubar_data (f, menubar, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 FRAME_X_MENUBAR_WIDGET (f) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 lw_create_widget ("menubar", "menubar", id, data, parent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 0, pre_activate_callback,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 popup_selection_callback, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 lw_modify_all_widgets (id, data, deep_p ? True : False);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 free_popup_widget_value_tree (data);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
562
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 XFRAME_MENUBAR_DATA (f)->menubar_contents_up_to_date = deep_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 XFRAME_MENUBAR_DATA (f)->last_menubar_buffer =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f))->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 return menubar_visible;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 /* Called from x_create_widgets() to create the inital menubar of a frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 before it is mapped, so that the window is mapped with the menubar already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 there instead of us tacking it on later and thrashing the window after it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 is visible. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 x_initialize_frame_menubar (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 return set_frame_menubar (f, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 static LWLIB_ID last_popup_menu_selection_callback_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 popup_menu_selection_callback (Widget widget, LWLIB_ID id,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 XtPointer client_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 last_popup_menu_selection_callback_id = id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 popup_selection_callback (widget, id, client_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 /* lw_destroy_all_widgets() will be called from popup_down_callback() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 popup_menu_down_callback (Widget widget, LWLIB_ID id, XtPointer client_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 if (popup_handled_p (id))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 assert (popup_up_p != 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 ungcpro_popup_callbacks (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 popup_up_p--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 /* if this isn't called immediately after the selection callback, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 there wasn't a menu selection. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 if (id != last_popup_menu_selection_callback_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 popup_selection_callback (widget, id, (XtPointer) -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 lw_destroy_all_widgets (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 make_dummy_xbutton_event (XEvent *dummy,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
610 Widget daddy,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 struct Lisp_Event *eev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 /* NULL for eev means query pointer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 XButtonPressedEvent *btn = (XButtonPressedEvent *) dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 btn->type = ButtonPress;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 btn->serial = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 btn->send_event = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 btn->display = XtDisplay (daddy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 btn->window = XtWindow (daddy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 if (eev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 Position shellx, shelly, framex, framey;
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
624 Widget shell = XtParent (daddy);
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
625 Arg al [2];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 btn->time = eev->timestamp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 btn->button = eev->event.button.button;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 btn->root = RootWindowOfScreen (XtScreen (daddy));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 btn->subwindow = (Window) NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 btn->x = eev->event.button.x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 btn->y = eev->event.button.y;
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
632 XtSetArg (al [0], XtNx, &shellx);
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
633 XtSetArg (al [1], XtNy, &shelly);
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 359
diff changeset
634 XtGetValues (shell, al, 2);
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
635 XtSetArg (al [0], XtNx, &framex);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
636 XtSetArg (al [1], XtNy, &framey);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
637 XtGetValues (daddy, al, 2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 btn->x_root = shellx + framex + btn->x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 btn->y_root = shelly + framey + btn->y;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 btn->state = ButtonPressMask; /* all buttons pressed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 /* CurrentTime is just ZERO, so it's worthless for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 determining relative click times. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 struct device *d = get_device_from_display (XtDisplay (daddy));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 btn->time = DEVICE_X_MOUSE_TIMESTAMP (d); /* event-Xt maintains this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 btn->button = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 XQueryPointer (btn->display, btn->window, &btn->root,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 &btn->subwindow, &btn->x_root, &btn->y_root,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 &btn->x, &btn->y, &btn->state);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 x_update_frame_menubar_internal (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 /* We assume the menubar contents has changed if the global flag is set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 or if the current buffer has changed, or if the menubar has never
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 been updated before.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 int menubar_contents_changed =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 (f->menubar_changed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 || NILP (FRAME_MENUBAR_DATA (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 || (!EQ (XFRAME_MENUBAR_DATA (f)->last_menubar_buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f))->buffer)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
670 Boolean menubar_was_visible = XtIsManaged (FRAME_X_MENUBAR_WIDGET (f));
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
671 Boolean menubar_will_be_visible = menubar_was_visible;
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
672 Boolean menubar_visibility_changed;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
673
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 if (menubar_contents_changed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 menubar_will_be_visible = set_frame_menubar (f, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 menubar_visibility_changed = menubar_was_visible != menubar_will_be_visible;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
679 if (!menubar_visibility_changed)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 /* Set menubar visibility */
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
683 (menubar_will_be_visible ? XtManageChild : XtUnmanageChild)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
684 (FRAME_X_MENUBAR_WIDGET (f));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
685
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
686 MARK_FRAME_SIZE_SLIPPED (f);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 x_update_frame_menubars (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 assert (FRAME_X_P (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 x_update_frame_menubar_internal (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 /* #### This isn't going to work right now that this function works on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 a per-frame, not per-device basis. Guess what? I don't care. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 x_free_frame_menubars (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 Widget menubar_widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 assert (FRAME_X_P (f));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
706
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 menubar_widget = FRAME_X_MENUBAR_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 if (menubar_widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 LWLIB_ID id = XFRAME_MENUBAR_DATA (f)->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 lw_destroy_all_widgets (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 XFRAME_MENUBAR_DATA (f)->id = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 x_popup_menu (Lisp_Object menu_desc, Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 int menu_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 struct frame *f = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 widget_value *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 Widget parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 Widget menu;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 struct Lisp_Event *eev = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 XEvent xev;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
726 Lisp_Object frame;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 CHECK_X_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 parent = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 if (!NILP (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 eev= XEVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 if (eev->event_type != button_press_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 && eev->event_type != button_release_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 wrong_type_argument (Qmouse_event_p, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 else if (!NILP (Vthis_command_keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 /* if an event wasn't passed, use the last event of the event sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 currently being executed, if that event is a mouse event */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 eev = XEVENT (Vthis_command_keys); /* last event first */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 if (eev->event_type != button_press_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 && eev->event_type != button_release_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 eev = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 make_dummy_xbutton_event (&xev, parent, eev);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 if (SYMBOLP (menu_desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 menu_desc = Fsymbol_value (menu_desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 CHECK_CONS (menu_desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 CHECK_STRING (XCAR (menu_desc));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 data = menu_item_descriptor_to_widget_value (menu_desc, POPUP_TYPE, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 if (! data) error ("no menu");
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
758
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 menu_id = new_lwlib_id ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 menu = lw_create_widget ("popup", "popup" /* data->name */, menu_id, data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 parent, 1, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 popup_menu_selection_callback,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 popup_menu_down_callback);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 free_popup_widget_value_tree (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 gcpro_popup_callbacks (menu_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 /* Setting zmacs-region-stays is necessary here because executing a command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 from a menu is really a two-command process: the first command (bound to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 the button-click) simply pops up the menu, and returns. This causes a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 sequence of magic-events (destined for the popup-menu widget) to begin.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 Eventually, a menu item is selected, and a menu-event blip is pushed onto
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 the end of the input stream, which is then executed by the event loop.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
774
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 So there are two command-events, with a bunch of magic-events between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 them. We don't want the *first* command event to alter the state of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 region, so that the region can be available as an argument for the second
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 if (zmacs_regions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 zmacs_region_stays = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 popup_up_p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 lw_popup_menu (menu, &xev);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 /* this speeds up display of pop-up menus */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 XFlush (XtDisplay (parent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 syms_of_menubar_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 console_type_create_menubar_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 CONSOLE_HAS_METHOD (x, update_frame_menubars);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 CONSOLE_HAS_METHOD (x, free_frame_menubars);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 CONSOLE_HAS_METHOD (x, popup_menu);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 vars_of_menubar_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
806 last_popup_menu_selection_callback_id = (LWLIB_ID) -1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 #if defined (LWLIB_MENUBARS_LUCID)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 Fprovide (intern ("lucid-menubars"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 #elif defined (LWLIB_MENUBARS_MOTIF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 Fprovide (intern ("motif-menubars"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 #elif defined (LWLIB_MENUBARS_ATHENA)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 Fprovide (intern ("athena-menubars"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 }