annotate src/menubar.c @ 418:e804706bfb8c r21-2-17

Import from CVS: tag r21-2-17
author cvs
date Mon, 13 Aug 2007 11:23:13 +0200
parents 697ef44129c6
children 11054d720c21
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.
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
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
24 /* #### There ain't much here because menubars have not been
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
25 properly abstracted yet. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
30 #include "buffer.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "frame.h"
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
33 #include "gui.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "menubar.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 int menubar_show_keybindings;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 Lisp_Object Vmenubar_configuration;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 Lisp_Object Qcurrent_menubar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 Lisp_Object Qactivate_menubar_hook, Vactivate_menubar_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 Lisp_Object Vmenubar_visible_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 static Lisp_Object Vcurrent_menubar; /* DO NOT ever reference this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 Always go through Qcurrent_menubar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 See below. */
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 20
diff changeset
50
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 Lisp_Object Vblank_menubar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 int popup_menu_titles;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Lisp_Object Vmenubar_pointer_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 menubar_variable_changed (Lisp_Object sym, Lisp_Object *val,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Lisp_Object in_object, int flags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 MARK_MENUBAR_CHANGED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 update_frame_menubars (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 if (f->menubar_changed || f->windows_changed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 MAYBE_FRAMEMETH (f, update_frame_menubars, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 f->menubar_changed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 free_frame_menubars (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 /* If we had directly allocated any memory for the menubars instead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 of using all Lisp_Objects this is where we would now free it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 MAYBE_FRAMEMETH (f, free_frame_menubars, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 menubar_visible_p_changed (Lisp_Object specifier, struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 Lisp_Object oldval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 MARK_MENUBAR_CHANGED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 menubar_visible_p_changed_in_frame (Lisp_Object specifier, struct frame *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 Lisp_Object oldval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 update_frame_menubars (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
97 Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
98 current_frame_menubar (CONST struct frame* f)
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
99 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
100 struct window *w = XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
101 return symbol_value_in_buffer (Qcurrent_menubar, w->buffer);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
102 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
103
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
104 Lisp_Object
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
105 menu_parse_submenu_keywords (Lisp_Object desc, Lisp_Object gui_item)
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
106 {
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
107 struct Lisp_Gui_Item* pgui_item = XGUI_ITEM (gui_item);
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
108
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
109 /* Menu descriptor should be a list */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
110 CHECK_CONS (desc);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
111
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
112 /* First element may be menu name, although can be omitted.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
113 Let's think that if stuff begins with anything than a keyword
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 377
diff changeset
114 or a list (submenu), this is a menu name, expected to be a string */
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
115 if (!KEYWORDP (XCAR (desc)) && !CONSP (XCAR (desc)))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
116 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
117 CHECK_STRING (XCAR (desc));
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
118 pgui_item->name = XCAR (desc);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
119 desc = XCDR (desc);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
120 if (!NILP (desc))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
121 CHECK_CONS (desc);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
122 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
123
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
124 /* Walk along all key-value pairs */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
125 while (!NILP(desc) && KEYWORDP (XCAR (desc)))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
126 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
127 Lisp_Object key, val;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
128 key = XCAR (desc);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
129 desc = XCDR (desc);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
130 CHECK_CONS (desc);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
131 val = XCAR (desc);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
132 desc = XCDR (desc);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
133 if (!NILP (desc))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
134 CHECK_CONS (desc);
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
135 gui_item_add_keyval_pair (gui_item, key, val, ERROR_ME);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
136 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
137
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
138 /* Return the rest - supposed to be a list of items */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
139 return desc;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
140 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
141
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
142 DEFUN ("menu-find-real-submenu", Fmenu_find_real_submenu, 2, 2, 0, /*
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
143 Find a submenu descriptor within DESC by following PATH.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
144 This function finds a submenu descriptor, either from the description
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
145 DESC or generated by a filter within DESC. The function regards :config
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
146 and :included keywords in the DESC, and expands submenus along the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
147 PATH using :filter functions. Return value is a descriptor for the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
148 submenu, NOT expanded and NOT checked against :config and :included.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
149 Also, individual menu items are not looked for, only submenus.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
150
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
151 See also 'find-menu-item'.
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
152 */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
153 (desc, path))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
154 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
155 Lisp_Object path_entry, submenu_desc, submenu;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
156 struct gcpro gcpro1;
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
157 Lisp_Object gui_item = allocate_gui_item ();
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
158 struct Lisp_Gui_Item* pgui_item = XGUI_ITEM (gui_item);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
159
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
160 GCPRO1 (gui_item);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 377
diff changeset
161
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
162 EXTERNAL_LIST_LOOP (path_entry, path)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
163 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
164 /* Verify that DESC describes a menu, not single item */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
165 if (!CONSP (desc))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
166 RETURN_UNGCPRO (Qnil);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
167
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
168 /* Parse this menu */
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
169 desc = menu_parse_submenu_keywords (desc, gui_item);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
170
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
171 /* Check that this (sub)menu is active */
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
172 if (!gui_item_active_p (gui_item))
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
173 RETURN_UNGCPRO (Qnil);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
174
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
175 /* Apply :filter */
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
176 if (!NILP (pgui_item->filter))
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
177 desc = call1 (pgui_item->filter, desc);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
178
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
179 /* Find the next menu on the path inside this one */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
180 EXTERNAL_LIST_LOOP (submenu_desc, desc)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
181 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
182 submenu = XCAR (submenu_desc);
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
183 if (CONSP (submenu)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
184 && STRINGP (XCAR (submenu))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
185 && !NILP (Fstring_equal (XCAR (submenu), XCAR (path_entry))))
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
186 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
187 desc = submenu;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
188 goto descend;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
189 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
190 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
191 /* Submenu not found */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
192 RETURN_UNGCPRO (Qnil);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
193
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
194 descend:
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
195 /* Prepare for the next iteration */
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
196 gui_item_init (gui_item);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
197 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
198
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
199 /* We have successfully descended down the end of the path */
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
200 UNGCPRO;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
201 return desc;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
202 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
203
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
204 DEFUN ("popup-menu", Fpopup_menu, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 Pop up the given menu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 A menu description is a list of menu items, strings, and submenus.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 The first element of a menu must be a string, which is the name of the menu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 This is the string that will be displayed in the parent menu, if any. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 toplevel menus, it is ignored. This string is not displayed in the menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 itself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 If an element of a menu is a string, then that string will be presented in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 the menu as unselectable text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 If an element of a menu is a string consisting solely of hyphens, then that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 item will be presented as a solid horizontal line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 If an element of a menu is a list, it is treated as a submenu. The name of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 that submenu (the first element in the list) will be used as the name of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 item representing this menu on the parent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 Otherwise, the element must be a vector, which describes a menu item.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 A menu item can have any of the following forms:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
226 [ "name" callback <active-p> ]
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
227 [ "name" callback <active-p> <suffix> ]
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
228 [ "name" callback :<keyword> <value> :<keyword> <value> ... ]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 The name is the string to display on the menu; it is filtered through the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 resource database, so it is possible for resources to override what string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 is actually displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 If the `callback' of a menu item is a symbol, then it must name a command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 It will be invoked with `call-interactively'. If it is a list, then it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 evaluated with `eval'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 The possible keywords are this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 :active <form> Same as <active-p> in the first two forms: the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 expression is evaluated just before the menu is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 displayed, and the menu will be selectable only if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 the result is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
245 :suffix <form> Same as <suffix> in the second form: the expression
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
246 is evaluated just before the menu is displayed and
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
247 resulting string is appended to the displayed name,
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
248 providing a convenient way of adding the name of a
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
249 command's ``argument'' to the menu, like
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
250 ``Kill Buffer NAME''.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
252 :keys "string" Normally, the keyboard equivalents of commands in
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 menus are displayed when the `callback' is a symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 This can be used to specify keys for more complex menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 items. It is passed through `substitute-command-keys'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 :style <style> Specifies what kind of object this menu item is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 nil A normal menu item.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 toggle A toggle button.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 radio A radio button.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 The only difference between toggle and radio buttons is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 how they are displayed. But for consistency, a toggle
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 button should be used when there is one option whose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 value can be turned on or off, and radio buttons should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 be used when there is a set of mutually exclusive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 options. When using a group of radio buttons, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 should arrange for no more than one to be marked as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 selected at a time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 :selected <form> Meaningful only when STYLE is `toggle' or `radio'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 This specifies whether the button will be in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 selected or unselected state.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 For example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
279 [ "Save As..." write-file t ]
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
280 [ "Revert Buffer" revert-buffer (buffer-modified-p) ]
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
281 [ "Read Only" toggle-read-only :style toggle :selected buffer-read-only ]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 See menubar.el for many more examples.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
284 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
285 (menu_desc, event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 struct frame *f = decode_frame(Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 MAYBE_FRAMEMETH (f, popup_menu, (menu_desc,event));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
292 DEFUN ("normalize-menu-item-name", Fnormalize_menu_item_name, 1, 2, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
293 Convert a menu item name string into normal form, and return the new string.
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
294 Menu item names should be converted to normal form before being compared.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
295 */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
296 (name, buffer))
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
297 {
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
298 struct buffer *buf = decode_buffer (buffer, 0);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
299 struct Lisp_String *n;
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
300 Charcount end;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
301 int i;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
302 Bufbyte *name_data;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
303 Bufbyte *string_result;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
304 Bufbyte *string_result_ptr;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
305 Emchar elt;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
306 int expecting_underscore = 0;
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
307
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
308 CHECK_STRING (name);
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
309
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
310 n = XSTRING (name);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
311 end = string_char_length (n);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
312 name_data = string_data (n);
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
313
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
314 string_result = (Bufbyte *) alloca (end * MAX_EMCHAR_LEN);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
315 string_result_ptr = string_result;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
316 for (i = 0; i < end; i++)
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
317 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
318 elt = charptr_emchar (name_data);
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
319 elt = DOWNCASE (buf, elt);
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
320 if (expecting_underscore)
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
321 {
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
322 expecting_underscore = 0;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
323 switch (elt)
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
324 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
325 case '%':
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
326 /* Allow `%%' to mean `%'. */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
327 string_result_ptr += set_charptr_emchar (string_result_ptr, '%');
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
328 break;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
329 case '_':
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
330 break;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
331 default:
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
332 string_result_ptr += set_charptr_emchar (string_result_ptr, '%');
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
333 string_result_ptr += set_charptr_emchar (string_result_ptr, elt);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
334 }
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
335 }
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
336 else if (elt == '%')
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
337 expecting_underscore = 1;
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
338 else
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
339 string_result_ptr += set_charptr_emchar (string_result_ptr, elt);
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 197
diff changeset
340 INC_CHARPTR (name_data);
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
341 }
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
342
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
343 return make_string (string_result, string_result_ptr - string_result);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
344 }
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
345
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 syms_of_menubar (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 defsymbol (&Qcurrent_menubar, "current-menubar");
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
350 DEFSUBR (Fpopup_menu);
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
351 DEFSUBR (Fnormalize_menu_item_name);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 219
diff changeset
352 DEFSUBR (Fmenu_find_real_submenu);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 vars_of_menubar (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
358 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
359 /* put in Vblank_menubar a menubar value which has no visible
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
360 * items. This is a bit tricky due to various quirks. We
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
361 * could use '(["" nil nil]), but this is apparently equivalent
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
362 * to '(nil), and a new frame created with this menubar will
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
363 * get a vertically-squished menubar. If we use " " as the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
364 * button title instead of "", we get an etched button border.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
365 * So we use
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
366 * '(("No active menubar" ["" nil nil]))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
367 * which creates a menu whose title is "No active menubar",
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
368 * and this works fine.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
369 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
371 Lisp_Object menu_item[3];
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
372 static CONST char *blank_msg = "No active menubar";
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
373
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
374 menu_item[0] = build_string ("");
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
375 menu_item[1] = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
376 menu_item[2] = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
377 Vblank_menubar = Fcons (Fcons (build_string (blank_msg),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
378 Fcons (Fvector (3, &menu_item[0]),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
379 Qnil)),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
380 Qnil);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
381 Vblank_menubar = Fpurecopy (Vblank_menubar);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
382 staticpro (&Vblank_menubar);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
383 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 DEFVAR_BOOL ("popup-menu-titles", &popup_menu_titles /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 If true, popup menus will have title bars at the top.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 popup_menu_titles = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 /* #### Replace current menubar with a specifier. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 /* All C code must access the menubar via Qcurrent_menubar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 because it can be buffer-local. Note that Vcurrent_menubar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 doesn't need to exist at all, except for the magic function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 DEFVAR_LISP_MAGIC ("current-menubar", &Vcurrent_menubar /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 The current menubar. This may be buffer-local.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 When the menubar is changed, the function `set-menubar-dirty-flag' has to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 be called for the menubar to be updated on the frame. See `set-menubar'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 and `set-buffer-menubar'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 A menubar is a list of menus and menu-items.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 A menu is a list of menu items, keyword-value pairs, strings, and submenus.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 The first element of a menu must be a string, which is the name of the menu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 This is the string that will be displayed in the parent menu, if any. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 toplevel menus, it is ignored. This string is not displayed in the menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 itself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
411 Immediately following the name string of the menu, any of three
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
412 optional keyword-value pairs is permitted.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 If an element of a menu (or menubar) is a string, then that string will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 presented as unselectable text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 If an element of a menu is a string consisting solely of hyphens, then that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 item will be presented as a solid horizontal line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 If an element of a menu is a list, it is treated as a submenu. The name of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 that submenu (the first element in the list) will be used as the name of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 item representing this menu on the parent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 If an element of a menubar is `nil', then it is used to represent the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 division between the set of menubar-items which are flushleft and those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 which are flushright.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 Otherwise, the element must be a vector, which describes a menu item.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
429 A menu item can have any of the following forms:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
431 [ "name" callback <active-p> ]
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 251
diff changeset
432 [ "name" callback <active-p> <suffix> ]
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
433 [ "name" callback :<keyword> <value> :<keyword> <value> ... ]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 The name is the string to display on the menu; it is filtered through the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 resource database, so it is possible for resources to override what string
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
437 is actually displayed.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 If the `callback' of a menu item is a symbol, then it must name a command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 It will be invoked with `call-interactively'. If it is a list, then it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 evaluated with `eval'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
443 The possible keywords are this:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
445 :active <form> Same as <active-p> in the first two forms: the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
446 expression is evaluated just before the menu is
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 displayed, and the menu will be selectable only if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 the result is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
450 :suffix <form> Same as <suffix> in the second form: the expression
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
451 is evaluated just before the menu is displayed and
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
452 resulting string is appended to the displayed name,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
453 providing a convenient way of adding the name of a
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
454 command's ``argument'' to the menu, like
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
455 ``Kill Buffer NAME''.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
457 :keys "string" Normally, the keyboard equivalents of commands in
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 menus are displayed when the `callback' is a symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 This can be used to specify keys for more complex menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 items. It is passed through `substitute-command-keys'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 :style <style> Specifies what kind of object this menu item is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 nil A normal menu item.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 toggle A toggle button.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 radio A radio button.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 button A menubar button.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 The only difference between toggle and radio buttons is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 how they are displayed. But for consistency, a toggle
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 button should be used when there is one option whose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 value can be turned on or off, and radio buttons should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 be used when there is a set of mutually exclusive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 options. When using a group of radio buttons, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 should arrange for no more than one to be marked as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 selected at a time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 :selected <form> Meaningful only when STYLE is `toggle', `radio' or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 `button'. This specifies whether the button will be in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 the selected or unselected state.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 :included <form> This can be used to control the visibility of a menu or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 menu item. The form is evaluated and the menu or menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 item is only displayed if the result is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 :config <symbol> This is an efficient shorthand for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 :included (memq symbol menubar-configuration)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 See the variable `menubar-configuration'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 :filter <function> A menu filter can only be used in a menu item list.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
492 (i.e.: not in a menu item itself). It is used to
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
493 sensitize or incrementally create a submenu only when
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
494 it is selected by the user and not every time the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
495 menubar is activated. The filter function is passed
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
496 the list of menu items in the submenu and must return a
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
497 list of menu items to be used for the menu. It is
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
498 called only when the menu is about to be displayed, so
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
499 other menus may already be displayed. Vile and
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
500 terrible things will happen if a menu filter function
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
501 changes the current buffer, window, or frame. It
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
502 also should not raise, lower, or iconify any frames.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
503 Basically, the filter function should have no
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
504 side-effects.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505
377
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 371
diff changeset
506 :key-sequence keys Used in FSF Emacs as an hint to an equivalent keybinding.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
507 Ignored by XEnacs for easymenu.el compatability.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
508
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
509 :label <form> (unimplemented!) Like :suffix, but replaces label
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
510 completely.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
511 (might be added in 21.2).
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 377
diff changeset
512
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 For example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
515 ("File"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 :filter file-menu-filter ; file-menu-filter is a function that takes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 ; one argument (a list of menu items) and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 ; returns a list of menu items
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
519 [ "Save As..." write-file t ]
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
520 [ "Revert Buffer" revert-buffer (buffer-modified-p) ]
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
521 [ "Read Only" toggle-read-only :style toggle
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 :selected buffer-read-only ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
525 See x-menubar.el for many more examples.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 After the menubar is clicked upon, but before any menus are popped up,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 the functions on the `activate-menubar-hook' are invoked to make top-level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 changes to the menus and menubar. Note, however, that the use of menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 filters (using the :filter keyword) is usually a more efficient way to
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
531 dynamically alter or sensitize menus.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
532 */, menubar_variable_changed);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 Vcurrent_menubar = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 DEFVAR_LISP ("activate-menubar-hook", &Vactivate_menubar_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 Function or functions called before a menubar menu is pulled down.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 These functions are called with no arguments, and should interrogate and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 modify the value of `current-menubar' as desired.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 The functions on this hook are invoked after the mouse goes down, but before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 the menu is mapped, and may be used to activate, deactivate, add, or delete
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 items from the menus. However, it is probably the case that using a :filter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 keyword in a submenu would be a more efficient way of updating menus. See
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 the documentation of `current-menubar'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 These functions may return the symbol `t' to assert that they have made
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 no changes to the menubar. If any other value is returned, the menubar is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 recomputed. If `t' is returned but the menubar has been changed, then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 changes may not show up right away. Returning `nil' when the menubar has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 not changed is not so bad; more computation will be done, but redisplay of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 the menubar will still be performed optimally.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 Vactivate_menubar_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 defsymbol (&Qactivate_menubar_hook, "activate-menubar-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 DEFVAR_BOOL ("menubar-show-keybindings", &menubar_show_keybindings /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 If true, the menubar will display keyboard equivalents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 If false, only the command names will be displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 menubar_show_keybindings = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 DEFVAR_LISP_MAGIC ("menubar-configuration", &Vmenubar_configuration /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 A list of symbols, against which the value of the :config tag for each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 menubar item will be compared. If a menubar item has a :config tag, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 it is omitted from the menubar if that tag is not a member of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 `menubar-configuration' list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 */ , menubar_variable_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 Vmenubar_configuration = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 DEFVAR_LISP ("menubar-pointer-glyph", &Vmenubar_pointer_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 *The shape of the mouse-pointer when over the menubar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 This is a glyph; use `set-glyph-image' to change it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 If unspecified in a particular domain, the window-system-provided
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 default pointer is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 Fprovide (intern ("menubar"));
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 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 specifier_vars_of_menubar (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 DEFVAR_SPECIFIER ("menubar-visible-p", &Vmenubar_visible_p /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 *Whether the menubar is visible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 This is a specifier; use `set-specifier' to change it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 Vmenubar_visible_p = Fmake_specifier (Qboolean);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 set_specifier_fallback (Vmenubar_visible_p, list1 (Fcons (Qnil, Qt)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 set_specifier_caching (Vmenubar_visible_p,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
592 slot_offset (struct window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
593 menubar_visible_p),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 menubar_visible_p_changed,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
595 slot_offset (struct frame,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
596 menubar_visible_p),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 menubar_visible_p_changed_in_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 complex_vars_of_menubar (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 Vmenubar_pointer_glyph = Fmake_glyph_internal (Qpointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 }