Mercurial > hg > xemacs-beta
annotate lisp/menubar.el @ 5676:dede3f658f8e
Sanity check package roots in configure.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Sat, 04 Aug 2012 23:26:26 +0900 |
parents | cc6f0266bc36 |
children | 44b0b4ea5cae |
rev | line source |
---|---|
428 | 1 ;;; menubar.el --- Menubar support for XEmacs |
2 | |
3 ;; Copyright (C) 1991-4, 1997-1998 Free Software Foundation, Inc. | |
4 ;; Copyright (C) 1995 Tinker Systems and INS Engineering Corp. | |
2545 | 5 ;; Copyright (C) 1995, 1996, 2003 Ben Wing. |
428 | 6 |
7 ;; Maintainer: XEmacs Development Team | |
8 ;; Keywords: internal, extensions, dumped | |
9 | |
10 ;; This file is part of XEmacs. | |
11 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4310
diff
changeset
|
12 ;; XEmacs is free software: you can redistribute it and/or modify it |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4310
diff
changeset
|
13 ;; under the terms of the GNU General Public License as published by the |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4310
diff
changeset
|
14 ;; Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4310
diff
changeset
|
15 ;; option) any later version. |
428 | 16 |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4310
diff
changeset
|
17 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4310
diff
changeset
|
18 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4310
diff
changeset
|
19 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4310
diff
changeset
|
20 ;; for more details. |
428 | 21 |
22 ;; You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4310
diff
changeset
|
23 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
428 | 24 |
25 ;;; Synched up with: Not in FSF. (Completely divergent from FSF menu-bar.el) | |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;; This file is dumped with XEmacs (when menubar support is compiled in). | |
30 | |
442 | 31 ;; Some stuff in FSF menu-bar.el is in menubar-items.el |
428 | 32 |
33 ;;; Code: | |
34 | |
35 (defgroup menu nil | |
36 "Input from the menus." | |
37 :group 'environment) | |
38 | |
39 (defvar default-menubar nil) | |
40 | |
41 ;; this function is considered "part of the lexicon" by many, | |
42 ;; so we'll leave it here. | |
43 (defun kill-this-buffer () ; for the menubar | |
44 "Kill the current buffer." | |
45 (interactive) | |
46 (kill-buffer (current-buffer))) | |
47 | |
48 (defun set-menubar-dirty-flag () | |
49 "Tell XEmacs that the menubar has to be updated. | |
50 NOTE: XEmacs now recognizes when you set a different value for | |
51 `current-menubar'. You *only* need to call this function if you | |
52 destructively modify a part of the menubar and don't set `current-menubar'. | |
53 Note that all the functions that modify a menu call this automatically." | |
54 (setq-default current-menubar (default-value 'current-menubar))) | |
55 | |
56 ;; #### shouldn't this perhaps be `copy-tree'? | |
57 (defun set-menubar (menubar) | |
58 "Set the default menubar to be MENUBAR. | |
59 See `current-menubar' for a description of the syntax of a menubar." | |
60 (check-menu-syntax menubar t) | |
61 (setq-default current-menubar (copy-sequence menubar))) | |
62 | |
63 (defun set-buffer-menubar (menubar) | |
64 "Set the buffer-local menubar to be MENUBAR. | |
65 See `current-menubar' for a description of the syntax of a menubar." | |
66 (check-menu-syntax menubar t) | |
67 (make-local-variable 'current-menubar) | |
68 (setq current-menubar (copy-sequence menubar))) | |
69 | |
70 (defun check-menu-syntax (menu &optional menubar-p) | |
71 ;; The C code does syntax checking on the value of `current-menubar', | |
72 ;; but it's better to do it early, before things have gotten messed up. | |
73 (if menubar-p | |
74 nil | |
75 (or (stringp (car menu)) | |
76 (signal 'error | |
77 (list "menu name (first element) must be a string" menu))) | |
78 ;;(or (cdr menu) (signal 'error (list "menu is empty" menu))) | |
79 (setq menu (cdr menu))) | |
80 (let (menuitem item) | |
81 (while (keywordp (setq item (car menu))) | |
82 (or (memq item '(:config :included :filter :accelerator)) | |
83 (signal 'error | |
84 (list "menu keyword must be :config, :included, :accelerator or :filter" | |
85 item))) | |
86 (if (or (not (cdr menu)) | |
87 (vectorp (nth 1 menu)) | |
88 (keywordp (nth 1 menu))) | |
89 (signal 'error (list "strange keyword value" item (nth 1 menu)))) | |
90 (setq menu (nthcdr 2 menu))) | |
91 (while menu | |
92 (setq menuitem (car menu)) | |
93 (cond | |
94 ((stringp menuitem) | |
95 (and (string-match "^\\(-+\\|=+\\):\\(.*\\)" menuitem) | |
96 (setq item (match-string 2 menuitem)) | |
444 | 97 (or (member item '(;; Motif-compatible |
428 | 98 "singleLine" |
99 "doubleLine" | |
100 "singleDashedLine" | |
101 "doubleDashedLine" | |
102 "noLine" | |
103 "shadowEtchedIn" | |
104 "shadowEtchedOut" | |
105 "shadowEtchedInDash" | |
106 "shadowEtchedOutDash" | |
107 ;; non-Motif (Lucid menubar widget only) | |
108 "shadowDoubleEtchedIn" | |
109 "shadowDoubleEtchedOut" | |
110 "shadowDoubleEtchedInDash" | |
111 "shadowDoubleEtchedOutDash" | |
112 )) | |
113 (signal 'error (list "bogus separator style in menu item" item))) | |
114 )) | |
115 ((null menuitem) | |
116 (or menubar-p | |
117 (signal 'error (list "nil is only permitted in the top level of menubars")))) | |
118 ((consp menuitem) | |
119 (check-menu-syntax menuitem)) | |
120 ((vectorp menuitem) | |
121 (let ((L (length menuitem)) | |
122 plistp) | |
123 (and (< L 2) | |
124 (signal 'error | |
125 (list "button descriptors must be at least 2 long" | |
126 menuitem))) | |
127 (setq plistp (or (>= L 5) | |
128 (and (> L 2) (keywordp (aref menuitem 2))))) | |
129 (if plistp | |
130 (let ((i 2) | |
131 selp | |
132 style | |
133 item) | |
134 (while (< i L) | |
135 (setq item (aref menuitem i)) | |
136 (cond ((not (memq item '(:active :suffix :keys :style | |
137 :full :included :selected | |
138 :accelerator))) | |
139 (signal 'error | |
140 (list (if (keywordp item) | |
141 "unknown menu item keyword" | |
142 "not a keyword") | |
143 item menuitem))) | |
144 ((eq item :style) | |
145 (setq style (aref menuitem (1+ i))) | |
146 (or (memq style '(nil toggle radio button text)) | |
147 (signal 'error (list "unknown style" style | |
148 menuitem)))) | |
149 ((eq item :selected) (setq selp t)) | |
150 ) | |
151 (setq i (+ i (if (eq item :full) 1 2)))) | |
152 (if (and selp (not (memq style '(toggle button radio)))) | |
153 (signal 'error | |
154 (list | |
155 ":selected only makes sense with :style toggle, radio, or button" | |
156 menuitem))) | |
157 ))) | |
158 ) | |
159 ;; (t (signal 'error (list "unrecognized menu descriptor" menuitem)))) | |
160 (t (message "unrecognized menu descriptor %s" (prin1-to-string menuitem)))) | |
161 (setq menu (cdr menu))))) | |
162 | |
163 | |
2545 | 164 ;;; basic menu manipulation functions |
428 | 165 |
2545 | 166 (defun menu-item-text (item &optional normalize) |
167 "Return the text that is displayed for a menu item. | |
168 If ITEM is a string (unselectable text), it is returned; otherwise, | |
169 the first element of the cons or vector is returned. | |
170 If NORMALIZE is non-nil, pass the text through `normalize-menu-text' | |
171 before being returned, to remove accelerator specs and convert %% to %." | |
172 (let ((val (if (stringp item) item (elt item 0)))) | |
173 (if normalize (normalize-menu-text val) val))) | |
174 | |
175 (defun find-menu-item (menubar item-path-list) | |
176 "Search MENUBAR for item given by ITEM-PATH-LIST. | |
428 | 177 Returns (ITEM . PARENT), where PARENT is the immediate parent of |
178 the item found. | |
179 If the item does not exist, the car of the returned value is nil. | |
180 If some menu in the ITEM-PATH-LIST does not exist, an error is signalled." | |
5645
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
181 (labels |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
182 ((find-menu-item-1 (menubar item-path-list &optional parent) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
183 (check-argument-type 'listp item-path-list) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
184 (if (not (consp menubar)) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
185 nil |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
186 (let ((rest menubar) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
187 result) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
188 (when (stringp (car rest)) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
189 (setq rest (cdr rest))) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
190 (while (keywordp (car rest)) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
191 (setq rest (cddr rest))) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
192 (while rest |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
193 (if (and (car rest) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
194 (stringp (car item-path-list)) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
195 (= 0 (compare-menu-text (car item-path-list) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
196 (menu-item-text (car rest))))) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
197 (setq result (car rest) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
198 rest nil) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
199 (setq rest (cdr rest)))) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
200 (if (cdr item-path-list) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
201 (cond ((consp result) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
202 (find-menu-item-1 (cdr result) (cdr item-path-list) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
203 result)) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
204 (result |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
205 (signal 'error (list (gettext "not a submenu") result))) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
206 (t |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
207 (signal 'error (list (gettext "no such submenu") |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
208 (car item-path-list))))) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
209 (cons result parent)))))) |
5d3bb1100832
Remove some utility functions from the global namespace, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5490
diff
changeset
|
210 (find-menu-item-1 menubar item-path-list))) |
428 | 211 |
4310
a6d7e031a10b
Fix two Tailor glitches.
Mike Sperber <sperber@deinprogramm.de>
parents:
4164
diff
changeset
|
212 (defun add-menu-item-1 (leaf-p menu-path new-item before in-menu) |
428 | 213 ;; This code looks like it could be cleaned up some more |
214 ;; Do we really need 6 calls to find-menu-item? | |
215 (let* ((item-name | |
216 (cond ((vectorp new-item) (aref new-item 0)) | |
217 ((consp new-item) (car new-item)) | |
218 (t nil))) | |
219 (menubar (or in-menu current-menubar)) | |
220 (menu (condition-case () | |
221 (car (find-menu-item menubar menu-path)) | |
222 (error nil))) | |
223 (item-found (cond | |
224 ((null item-name) | |
225 nil) | |
226 ((not (listp menu)) | |
227 (signal 'error (list (gettext "not a submenu") | |
228 menu-path))) | |
229 (menu | |
230 (find-menu-item (cdr menu) (list item-name))) | |
231 (t | |
232 (find-menu-item menubar (list item-name))) | |
233 ))) | |
234 (unless menubar | |
235 (error "`current-menubar' is nil: can't add menus to it.")) | |
236 (unless menu | |
237 (let ((rest menu-path) | |
238 (so-far menubar)) | |
239 (while rest | |
240 ;;; (setq menu (car (find-menu-item (cdr so-far) (list (car rest))))) | |
241 (setq menu | |
242 (if (eq so-far menubar) | |
243 (car (find-menu-item so-far (list (car rest)))) | |
244 (car (find-menu-item (cdr so-far) (list (car rest)))))) | |
245 (unless menu | |
246 (let ((rest2 so-far)) | |
247 (while (and (cdr rest2) (car (cdr rest2))) | |
248 (setq rest2 (cdr rest2))) | |
249 (setcdr rest2 | |
250 (nconc (list (setq menu (list (car rest)))) | |
251 (cdr rest2))))) | |
252 (setq so-far menu) | |
253 (setq rest (cdr rest))))) | |
254 (if (and item-found (car item-found)) | |
255 ;; hack the item in place. | |
256 (if menu | |
257 ;; Isn't it very bad form to use nsubstitute for side effects? | |
258 (nsubstitute new-item (car item-found) menu) | |
259 (setq current-menubar (nsubstitute new-item | |
260 (car item-found) | |
261 current-menubar))) | |
262 ;; OK, we have to add the whole thing... | |
263 ;; if BEFORE is specified, try to add it there. | |
264 (unless menu (setq menu current-menubar)) | |
265 (when before | |
266 (setq before (car (find-menu-item menu (list before))))) | |
267 (let ((rest menu) | |
268 (added-before nil)) | |
269 (while rest | |
270 (if (eq before (car (cdr rest))) | |
271 (progn | |
272 (setcdr rest (cons new-item (cdr rest))) | |
273 (setq rest nil added-before t)) | |
274 (setq rest (cdr rest)))) | |
275 (when (not added-before) | |
276 ;; adding before the first item on the menubar itself is harder | |
277 (if (and (eq menu menubar) (eq before (car menu))) | |
278 (setq menu (cons new-item menu) | |
279 current-menubar menu) | |
280 ;; otherwise, add the item to the end. | |
281 (nconc menu (list new-item)))))) | |
282 (set-menubar-dirty-flag) | |
283 new-item)) | |
284 | |
4310
a6d7e031a10b
Fix two Tailor glitches.
Mike Sperber <sperber@deinprogramm.de>
parents:
4164
diff
changeset
|
285 (defun add-menu-button (menu-path menu-leaf &optional before in-menu) |
428 | 286 "Add a menu item to some menu, creating the menu first if necessary. |
287 If the named item exists already, it is changed. | |
288 MENU-PATH identifies the menu under which the new menu item should be inserted. | |
289 It is a list of strings; for example, (\"File\") names the top-level \"File\" | |
290 menu. (\"File\" \"Foo\") names a hypothetical submenu of \"File\". | |
4310
a6d7e031a10b
Fix two Tailor glitches.
Mike Sperber <sperber@deinprogramm.de>
parents:
4164
diff
changeset
|
291 MENU-LEAF is a menubar leaf node. See the documentation of `current-menubar'. |
428 | 292 BEFORE, if provided, is the name of a menu item before which this item should |
293 be added, if this item is not on the menu already. If the item is already | |
294 present, it will not be moved. | |
444 | 295 IN-MENU, if provided, means use that instead of `current-menubar' as the |
296 menu to change." | |
428 | 297 ;; Note easymenu.el uses the fact that menu-leaf can be a submenu. |
4310
a6d7e031a10b
Fix two Tailor glitches.
Mike Sperber <sperber@deinprogramm.de>
parents:
4164
diff
changeset
|
298 (add-menu-item-1 t menu-path menu-leaf before in-menu)) |
428 | 299 |
300 ;; I actually liked the old name better, but the interface has changed too | |
444 | 301 ;; drastically to keep it. --Stig |
428 | 302 (defun add-submenu (menu-path submenu &optional before in-menu) |
303 "Add a menu to the menubar or one of its submenus. | |
304 If the named menu exists already, it is changed. | |
305 MENU-PATH identifies the menu under which the new menu should be inserted. | |
306 It is a list of strings; for example, (\"File\") names the top-level \"File\" | |
307 menu. (\"File\" \"Foo\") names a hypothetical submenu of \"File\". | |
308 If MENU-PATH is nil, then the menu will be added to the menubar itself. | |
309 SUBMENU is the new menu to add. | |
310 See the documentation of `current-menubar' for the syntax. | |
311 BEFORE, if provided, is the name of a menu before which this menu should | |
312 be added, if this menu is not on its parent already. If the menu is already | |
444 | 313 present, it will not be moved. |
314 IN-MENU, if provided, means use that instead of `current-menubar' as the | |
315 menu to change." | |
428 | 316 (check-menu-syntax submenu nil) |
4310
a6d7e031a10b
Fix two Tailor glitches.
Mike Sperber <sperber@deinprogramm.de>
parents:
4164
diff
changeset
|
317 (add-menu-item-1 nil menu-path submenu before in-menu)) |
444 | 318 ;; purespace is no more, so this function is unnecessary |
319 ;(defun purecopy-menubar (x) | |
320 ; ;; this calls purecopy on the strings, and the contents of the vectors, | |
321 ; ;; but not on the vectors themselves, or the conses - those must be | |
322 ; ;; writable. | |
323 ; (cond ((vectorp x) | |
324 ; (let ((i (length x))) | |
325 ; (while (> i 0) | |
326 ; (aset x (1- i) (purecopy (aref x (1- i)))) | |
327 ; (setq i (1- i)))) | |
328 ; x) | |
329 ; ((consp x) | |
330 ; (let ((rest x)) | |
331 ; (while rest | |
332 ; (setcar rest (purecopy-menubar (car rest))) | |
333 ; (setq rest (cdr rest)))) | |
334 ; x) | |
335 ; (t | |
336 ; (purecopy x)))) | |
428 | 337 |
338 (defun delete-menu-item (path &optional from-menu) | |
339 "Remove the named menu item from the menu hierarchy. | |
444 | 340 PATH is a list of strings which identify the position of the menu item |
341 in the menu hierarchy. The documentation of `add-submenu' describes | |
342 menu paths. | |
343 FROM-MENU, if provided, means use that instead of `current-menubar' | |
344 as the menu to change." | |
428 | 345 (let* ((pair (condition-case nil (find-menu-item (or from-menu |
346 current-menubar) path) | |
347 (error nil))) | |
348 (item (car pair)) | |
349 (parent (or (cdr pair) current-menubar))) | |
350 (if (not item) | |
351 nil | |
352 ;; the menubar is the only special case, because other menus begin | |
353 ;; with their name. | |
354 (if (eq parent current-menubar) | |
5652
cc6f0266bc36
Avoid #'delq in core Lisp, for the sake of style, a very slightly smaller binary
Aidan Kehoe <kehoea@parhasard.net>
parents:
5645
diff
changeset
|
355 (setq current-menubar (delete* item parent)) |
cc6f0266bc36
Avoid #'delq in core Lisp, for the sake of style, a very slightly smaller binary
Aidan Kehoe <kehoea@parhasard.net>
parents:
5645
diff
changeset
|
356 (delete* item parent)) |
428 | 357 (set-menubar-dirty-flag) |
358 item))) | |
359 | |
360 (defun relabel-menu-item (path new-name) | |
361 "Change the string of the specified menu item. | |
444 | 362 PATH is a list of strings which identify the position of the menu item in |
428 | 363 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\" |
444 | 364 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the |
428 | 365 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\". |
366 NEW-NAME is the string that the menu item will be printed as from now on." | |
446 | 367 (check-type new-name string) |
428 | 368 (let* ((menubar current-menubar) |
369 (pair (find-menu-item menubar path)) | |
370 (item (car pair)) | |
371 (menu (cdr pair))) | |
372 (or item | |
373 (signal 'error (list (if menu (gettext "No such menu item") | |
374 (gettext "No such menu")) | |
375 path))) | |
376 (if (and (consp item) | |
377 (stringp (car item))) | |
378 (setcar item new-name) | |
379 (aset item 0 new-name)) | |
380 (set-menubar-dirty-flag) | |
381 item)) | |
382 | |
383 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
384 ;; | |
385 ;; these are all bad style. Why in the world would we put evaluable forms | |
386 ;; into the menubar if we didn't want people to use 'em? | |
387 ;; x-font-menu.el is the only known offender right now and that ought to be | |
388 ;; rehashed a bit. | |
444 | 389 ;; |
428 | 390 |
391 (defun enable-menu-item-1 (path toggle-p on-p) | |
392 (let (menu item) | |
393 (if (and (vectorp path) (> (length path) 2)) ; limited syntax checking... | |
394 (setq item path) | |
395 (let* ((menubar current-menubar) | |
396 (pair (find-menu-item menubar path))) | |
397 (setq item (car pair) | |
398 menu (cdr pair)) | |
399 (or item | |
400 (signal 'error (list (if menu | |
401 "No such menu item" | |
402 "No such menu") | |
403 path))) | |
404 (if (consp item) | |
405 (error "%S is a menu, not a menu item" path)))) | |
406 (if (or (> (length item) 4) | |
407 (and (symbolp (aref item 2)) | |
408 (= ?: (aref (symbol-name (aref item 2)) 0)))) | |
409 ;; plist-like syntax | |
410 (let ((i 2) | |
411 (keyword (if toggle-p :selected :active)) | |
412 (ok nil)) | |
413 (while (< i (length item)) | |
414 (cond ((eq (aref item i) keyword) | |
415 (aset item (1+ i) on-p) | |
416 (setq ok t))) | |
417 (setq i (+ i 2))) | |
418 (cond (ok nil) | |
419 (toggle-p | |
420 (signal 'error (list "not a toggle menu item" item))) | |
421 (t | |
422 ;; Need to copy the item to extend it, sigh... | |
423 (let ((cons (memq item menu)) | |
424 (new-item (vconcat item (list keyword on-p)))) | |
425 (if cons | |
426 (setcar cons (setq item new-item)) | |
427 (if menu | |
428 (error "couldn't find %S on its parent?" item) | |
429 (error "no %S slot to set: %S" keyword item))))))) | |
430 ;; positional syntax | |
431 (if toggle-p | |
432 (signal 'error (list "not a toggle menu item" item)) | |
433 (aset item 2 on-p))) | |
434 (set-menubar-dirty-flag) | |
435 item)) | |
436 | |
437 (defun enable-menu-item (path) | |
438 "Make the named menu item be selectable. | |
444 | 439 PATH is a list of strings which identify the position of the menu item in |
428 | 440 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\" |
444 | 441 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the |
428 | 442 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"." |
443 (enable-menu-item-1 path nil t)) | |
444 | |
445 (defun disable-menu-item (path) | |
446 "Make the named menu item be unselectable. | |
444 | 447 PATH is a list of strings which identify the position of the menu item in |
428 | 448 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\" |
444 | 449 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the |
428 | 450 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"." |
451 (enable-menu-item-1 path nil nil)) | |
452 | |
453 (defun select-toggle-menu-item (path) | |
454 "Make the named toggle- or radio-style menu item be in the `selected' state. | |
444 | 455 PATH is a list of strings which identify the position of the menu item in |
428 | 456 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\" |
444 | 457 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the |
428 | 458 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"." |
459 (enable-menu-item-1 path t t)) | |
460 | |
461 (defun deselect-toggle-menu-item (path) | |
462 "Make the named toggle- or radio-style menu item be in the `unselected' state. | |
444 | 463 PATH is a list of strings which identify the position of the menu item in |
428 | 464 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\" |
444 | 465 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the |
428 | 466 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"." |
467 (enable-menu-item-1 path t nil)) | |
468 | |
469 | |
2545 | 470 ;;; functions for manipulating whole menus -- adding accelerators, sorting, |
471 ;;; splitting long menus, etc. | |
472 | |
473 (defun submenu-generate-accelerator-spec (list &optional omit-chars-list) | |
474 "Add auto-generated accelerator specifications to a submenu. | |
475 This can be used to add accelerators to the return value of a menu filter | |
476 function. It correctly ignores unselectable items. It will destructively | |
477 modify the list passed to it. If an item already has an auto-generated | |
478 accelerator spec, this will be removed before the new one is added, making | |
479 this function idempotent. | |
480 | |
481 If OMIT-CHARS-LIST is given, it should be a list of lowercase characters, | |
482 which will not be used as accelerators." | |
483 (let ((n 0)) | |
484 (dolist (item list list) | |
485 (cond | |
486 ((or (vectorp item) (consp item)) | |
487 (incf n) | |
488 (setf (elt item 0) | |
489 (concat | |
490 (menu-item-generate-accelerator-spec n omit-chars-list) | |
491 (menu-item-strip-accelerator-spec (elt item 0))))))))) | |
492 | |
493 (defun menu-item-strip-accelerator-spec (item) | |
494 "Strip an auto-generated accelerator spec off of ITEM. | |
495 ITEM should be a string. This removes specs added by | |
496 `menu-item-generate-accelerator-spec' and `submenu-generate-accelerator-spec'." | |
497 (if (string-match "%_. " item) | |
498 (substring item 4) | |
499 item)) | |
500 | |
501 (defun menu-item-generate-accelerator-spec (n &optional omit-chars-list) | |
502 "Return an accelerator specification for use with auto-generated menus. | |
503 This should be concat'd onto the beginning of each menu line. The spec | |
504 allows the Nth line to be selected by the number N. '0' is used for the | |
505 10th line, and 'a' through 'z' are used for the following 26 lines. | |
506 | |
507 If OMIT-CHARS-LIST is given, it should be a list of lowercase characters, | |
508 which will not be used as accelerators." | |
509 (cond ((< n 10) (concat "%_" (int-to-string n) " ")) | |
510 ((= n 10) "%_0 ") | |
511 ((<= n 36) | |
512 (setq n (- n 10)) | |
513 (let ((m 0)) | |
514 (while (> n 0) | |
515 (setq m (1+ m)) | |
516 (while (memq (int-to-char (+ m (- (char-to-int ?a) 1))) | |
517 omit-chars-list) | |
518 (setq m (1+ m))) | |
519 (setq n (1- n))) | |
520 (if (<= m 26) | |
521 (concat | |
522 "%_" | |
523 (char-to-string (int-to-char (+ m (- (char-to-int ?a) 1)))) | |
524 " ") | |
525 ""))) | |
526 (t ""))) | |
527 | |
528 (defcustom menu-max-items 25 | |
529 "*Maximum number of items in generated menus. | |
530 If number of entries in such a menu is larger than this value, split menu | |
531 into submenus of nearly equal length (see `menu-submenu-max-items'). If | |
532 nil, never split menu into submenus." | |
533 :group 'menu | |
534 :type '(choice (const :tag "no submenus" nil) | |
535 (integer))) | |
536 | |
537 (defcustom menu-submenu-max-items 20 | |
538 "*Maximum number of items in submenus when splitting menus. | |
539 We split large menus into submenus of this many items, and then balance | |
540 them out as much as possible (otherwise the last submenu may have very few | |
541 items)." | |
542 :group 'menu | |
543 :type 'integer) | |
544 | |
545 (defcustom menu-submenu-name-format "%-12.12s ... %.12s" | |
546 "*Format specification of the submenu name when splitting menus. | |
547 Used by `menu-split-long-menu' if the number of entries in a menu is | |
548 larger than `menu-menu-max-items'. | |
549 This string should contain one %s for the name of the first entry and | |
550 one %s for the name of the last entry in the submenu. | |
551 If the value is a function, it should return the submenu name. The | |
552 function is be called with two arguments, the names of the first and | |
553 the last entry in the menu." | |
554 :group 'menu | |
555 :type '(choice (string :tag "Format string") | |
556 (function))) | |
557 | |
558 (defun menu-split-long-menu-and-sort (menu) | |
559 "Sort MENU, split according to `menu-max-items' and add accelerator specs. | |
560 This is useful for menus generated by filter functions, to make them look | |
561 nice. This is equivalent to | |
562 | |
563 \(menu-split-long-menu (menu-sort-menu menu)) | |
564 | |
565 and you can call those functions individually if necessary. | |
566 You can also call `submenu-generate-accelerator-spec' yourself to add | |
567 accelerator specs -- this works even if the specs have already been added." | |
568 (menu-split-long-menu (menu-sort-menu menu))) | |
569 | |
570 (defun menu-split-long-menu (menu) | |
571 "Split MENU according to `menu-max-items' and add accelerator specs. | |
572 If MENU already has accelerator specs, they will be removed and new ones | |
573 generated. You should normally use `menu-split-long-menu-and-sort' instead. | |
574 The menu should already be sorted to get meaningful results when it is | |
575 split, since the outer menus are of the format `FROM ... TO'." | |
576 (let ((len (length menu))) | |
577 (if (or (null menu-max-items) | |
578 (<= len menu-max-items)) | |
579 (submenu-generate-accelerator-spec menu) | |
580 (let* ((outer (/ (+ len (1- menu-submenu-max-items)) | |
581 menu-submenu-max-items)) | |
582 (inner (/ (+ len (1- outer)) outer)) | |
583 (result nil)) | |
584 (while menu | |
585 (let ((sub nil) | |
586 (from (car menu))) | |
587 (dotimes (foo (min inner len)) | |
588 (setq sub (cons (car menu) sub) | |
589 menu (cdr menu))) | |
590 (setq len (- len inner)) | |
591 (let* ((to (car sub)) | |
592 (ftext (menu-item-strip-accelerator-spec | |
593 (menu-item-text from))) | |
594 (ttext (menu-item-strip-accelerator-spec | |
595 (menu-item-text to)))) | |
596 (setq sub (nreverse sub)) | |
597 (setq result | |
598 (cons (cons (if (stringp menu-submenu-name-format) | |
599 (format menu-submenu-name-format | |
600 ftext ttext) | |
601 (funcall menu-submenu-name-format | |
602 ftext ttext)) | |
603 (submenu-generate-accelerator-spec sub)) | |
604 result))))) | |
605 (submenu-generate-accelerator-spec (nreverse result)))))) | |
606 | |
607 (defun menu-sort-menu (menu) | |
608 "Sort MENU alphabetically. | |
609 You should normally use `menu-split-long-menu-and-sort' instead." | |
610 (sort menu | |
611 #'(lambda (a b) (< (compare-menu-text | |
612 (menu-item-text a) (menu-item-text b)) | |
613 0)))) | |
614 | |
442 | 615 |
616 ;;;;;;; popup menus | |
617 | |
618 (defvar global-popup-menu nil | |
619 "The global popup menu. This is present in all modes. | |
620 See the function `popup-menu' for a description of menu syntax.") | |
621 | |
622 (defvar mode-popup-menu nil | |
623 "The mode-specific popup menu. Automatically buffer local. | |
624 This is appended to the default items in `global-popup-menu'. | |
625 See the function `popup-menu' for a description of menu syntax.") | |
626 (make-variable-buffer-local 'mode-popup-menu) | |
627 | |
628 (defvar activate-popup-menu-hook nil | |
629 "Function or functions run before a mode-specific popup menu is made visible. | |
630 These functions are called with no arguments, and should interrogate and | |
631 modify the value of `global-popup-menu' or `mode-popup-menu' as desired. | |
632 Note: this hook is only run if you use `popup-mode-menu' for activating the | |
633 global and mode-specific commands; if you have your own binding for button3, | |
634 this hook won't be run.") | |
635 | |
636 (defvar last-popup-menu-event nil | |
637 "The mouse event that invoked the last popup menu. | |
638 NOTE: This is EXPERIMENTAL and may change at any time.") | |
639 | |
640 (defun popup-mode-menu (&optional event) | |
641 "Pop up a menu of global and mode-specific commands. | |
642 The menu is computed by combining `global-popup-menu' and `mode-popup-menu' | |
643 with any items derived from the `context-menu' property of the extent where the | |
644 button was clicked." | |
645 (interactive "_e") | |
646 (setq last-popup-menu-event | |
647 (or (and event (button-event-p event) event) | |
648 (let* ((mouse-pos (mouse-position)) | |
649 (win (car mouse-pos)) | |
650 (x (cadr mouse-pos)) | |
651 (y (cddr mouse-pos)) | |
652 (edges (window-pixel-edges win)) | |
653 (winx (first edges)) | |
654 (winy (second edges)) | |
655 (x (+ x winx)) | |
656 (y (+ y winy))) | |
657 (make-event 'button-press | |
658 `(button 3 x ,x y ,y channel ,(window-frame win) | |
659 timestamp ,(current-event-timestamp | |
660 (cdfw-console win))))))) | |
661 (run-hooks 'activate-popup-menu-hook) | |
662 (let* ((context-window (and event (event-window event))) | |
663 (context-point (and event (event-point event))) | |
664 (context-extents (and context-window | |
665 context-point | |
666 (extents-at context-point | |
667 (window-buffer context-window) | |
668 'context-menu))) | |
669 (context-menu-items | |
670 (apply 'append (mapcar #'(lambda (extent) | |
671 (extent-property extent 'context-menu)) | |
672 context-extents)))) | |
673 (popup-menu | |
462 | 674 (progn |
442 | 675 ;; Merge global-popup-menu and mode-popup-menu |
462 | 676 (and mode-popup-menu (check-menu-syntax mode-popup-menu)) |
677 (let* ((mode-title (and (stringp (car mode-popup-menu)) | |
678 (car mode-popup-menu))) | |
679 (mode-items (if mode-title (cdr mode-popup-menu) | |
680 mode-popup-menu)) | |
681 (global-title (and (stringp (car global-popup-menu)) | |
682 (car global-popup-menu))) | |
683 (global-items (if global-title (cdr global-popup-menu) | |
684 global-popup-menu)) | |
442 | 685 mode-filters) |
686 ;; Strip keywords from local menu for attaching them at the top | |
462 | 687 (while (and mode-items |
688 (keywordp (car mode-items))) | |
442 | 689 ;; Push both keyword and its argument. |
462 | 690 (push (pop mode-items) mode-filters) |
691 (push (pop mode-items) mode-filters)) | |
442 | 692 (setq mode-filters (nreverse mode-filters)) |
693 ;; If mode-filters contains a keyword already present in | |
694 ;; `global-popup-menu', you will probably lose. | |
462 | 695 (append (and popup-menu-titles |
696 (cond (mode-title (list mode-title)) | |
697 (global-title (list global-title)) | |
698 (t ""))) | |
442 | 699 mode-filters |
462 | 700 context-menu-items |
701 (and context-menu-items mode-items '("---")) | |
702 mode-items | |
703 (and (or context-menu-items mode-items) | |
704 global-items '("---" "---")) | |
705 (and global-title (list global-title)) | |
706 global-items | |
707 )))) | |
442 | 708 |
709 (while (popup-up-p) | |
710 (dispatch-event (next-event))) | |
711 | |
712 )) | |
444 | 713 |
442 | 714 (defun popup-buffer-menu (event) |
502 | 715 "Pop up a copy of the menubar Buffers menu where the mouse is clicked." |
442 | 716 (interactive "e") |
717 (let ((window (and (event-over-text-area-p event) (event-window event))) | |
718 (bmenu nil)) | |
719 (or window | |
720 (error "Pointer must be in a normal window")) | |
721 (select-window window) | |
722 (if current-menubar | |
723 (setq bmenu (assoc "%_Buffers" current-menubar))) | |
724 (if (null bmenu) | |
725 (setq bmenu (assoc "%_Buffers" default-menubar))) | |
726 (if (null bmenu) | |
727 (error "Can't find the Buffers menu")) | |
728 (popup-menu bmenu))) | |
729 | |
730 (defun popup-menubar-menu (event) | |
731 "Pop up a copy of menu that also appears in the menubar." | |
732 (interactive "e") | |
733 (let ((window (and (event-over-text-area-p event) (event-window event))) | |
734 popup-menubar) | |
735 (or window | |
736 (error "Pointer must be in a normal window")) | |
737 (select-window window) | |
738 (and current-menubar (run-hooks 'activate-menubar-hook)) | |
739 ;; #### Instead of having to copy this just to safely get rid of | |
740 ;; any nil what we should really do is fix up the internal menubar | |
741 ;; code to just ignore nil if generating a popup menu | |
742 (setq popup-menubar (delete nil (copy-sequence (or current-menubar | |
743 default-menubar)))) | |
744 (popup-menu (cons "%_Menubar Menu" popup-menubar)) | |
745 )) | |
746 | |
747 (defun menu-call-at-event (form &optional event default-behavior-fallback) | |
748 "Call FORM while temporarily setting point to the position in EVENT. | |
749 NOTE: This is EXPERIMENTAL and may change at any time. | |
750 | |
751 FORM is called the way forms in menu specs are: i.e. if a symbol, it's called | |
752 with `call-interactively', otherwise with `eval'. EVENT defaults to | |
753 `last-popup-menu-event', making this function especially useful in popup | |
754 menus. The buffer and point are set temporarily within a `save-excursion'. | |
755 If EVENT is not a mouse event, or was not over a buffer, nothing | |
756 happens unless DEFAULT-BEHAVIOR-FALLBACK is non-nil, in which case the | |
757 FORM is called normally." | |
758 (or event (setq event last-popup-menu-event)) | |
759 (let ((buf (event-buffer event)) | |
760 (p (event-closest-point event))) | |
761 (cond ((and buf p (> p 0)) | |
762 (save-excursion | |
763 (set-buffer buf) | |
764 (goto-char p) | |
765 (if (symbolp form) | |
766 (call-interactively form) | |
767 (eval form)))) | |
768 (default-behavior-fallback | |
769 (if (symbolp form) | |
770 (call-interactively form) | |
771 (eval form)))))) | |
772 | |
773 (global-set-key 'button3 'popup-mode-menu) | |
774 ;; shift button3 and shift button2 are reserved for Hyperbole | |
775 (global-set-key '(meta control button3) 'popup-buffer-menu) | |
776 ;; The following command is way too dangerous with Custom. | |
777 ;; (global-set-key '(meta shift button3) 'popup-menubar-menu) | |
778 | |
779 ;; Here's a test of the cool new menu features (from Stig). | |
780 | |
781 ;;(setq mode-popup-menu | |
782 ;; '("Test Popup Menu" | |
783 ;; :filter cdr | |
784 ;; ["this item won't appear because of the menu filter" ding t] | |
785 ;; "--:singleLine" | |
786 ;; "singleLine" | |
787 ;; "--:doubleLine" | |
788 ;; "doubleLine" | |
789 ;; "--:singleDashedLine" | |
790 ;; "singleDashedLine" | |
791 ;; "--:doubleDashedLine" | |
792 ;; "doubleDashedLine" | |
793 ;; "--:noLine" | |
794 ;; "noLine" | |
795 ;; "--:shadowEtchedIn" | |
796 ;; "shadowEtchedIn" | |
797 ;; "--:shadowEtchedOut" | |
798 ;; "shadowEtchedOut" | |
799 ;; "--:shadowDoubleEtchedIn" | |
800 ;; "shadowDoubleEtchedIn" | |
801 ;; "--:shadowDoubleEtchedOut" | |
802 ;; "shadowDoubleEtchedOut" | |
803 ;; "--:shadowEtchedInDash" | |
804 ;; "shadowEtchedInDash" | |
805 ;; "--:shadowEtchedOutDash" | |
806 ;; "shadowEtchedOutDash" | |
807 ;; "--:shadowDoubleEtchedInDash" | |
808 ;; "shadowDoubleEtchedInDash" | |
809 ;; "--:shadowDoubleEtchedOutDash" | |
810 ;; "shadowDoubleEtchedOutDash" | |
811 ;; )) | |
812 | |
428 | 813 (defun get-popup-menu-response (menu-desc &optional event) |
814 "Pop up the given menu and wait for a response. | |
815 This blocks until the response is received, and returns the misc-user | |
816 event that encapsulates the response. To execute it, you can do | |
817 (funcall (event-function response) (event-object response)) | |
818 If no response was received, nil is returned. | |
819 | |
820 MENU-DESC and EVENT are as in the call to `popup-menu'." | |
821 ;; partially stolen from w3 | |
707 | 822 |
823 ;; This function is way gross and assumes to much about menu | |
824 ;; processing that is X specific. Under mswindows popup menus behave | |
825 ;; in reasonable ways that you can't obstruct. | |
428 | 826 (let ((echo-keystrokes 0) |
827 new-event) | |
828 (popup-menu menu-desc event) | |
829 (catch 'popup-done | |
830 (while t | |
831 (setq new-event (next-command-event new-event)) | |
832 (cond ((misc-user-event-p new-event) | |
833 (throw 'popup-done new-event)) | |
707 | 834 ((button-release-event-p new-event);; don't beep twice |
835 nil) | |
836 ;; It shows how bogus this function is that the event | |
837 ;; arg could be missing and no-one noticed ... | |
838 ((event-matches-key-specifier-p new-event (quit-char)) | |
839 (signal 'quit nil)) | |
840 ;; mswindows has no pop-down processing (selection is | |
841 ;; atomic) so doing anything more makes no sense. Since | |
842 ;; popup-up-p is always false under mswindows, this | |
843 ;; function has been ordered to do essentially X-specifc | |
844 ;; processing after this check. | |
845 ((not (popup-up-p)) | |
428 | 846 (setq unread-command-events (cons new-event |
847 unread-command-events)) | |
848 (throw 'popup-done nil)) | |
707 | 849 ;; mswindows never gets here |
428 | 850 (t |
851 (beep) | |
852 (message "please make a choice from the menu."))))))) | |
853 | |
854 (defun popup-menu-and-execute-in-window (menu-desc event) | |
855 "Pop up the given menu and execute its response in EVENT's window. | |
856 This blocks until the response is received, temporarily selects | |
857 EVENT's window, and executes the command specified in the response. | |
858 EVENT can also be a window. See `popup-menu' for the semantics of | |
859 MENU-DESC." | |
860 (let ((response | |
861 (get-popup-menu-response menu-desc | |
862 (and (eventp event) event)))) | |
863 (and (misc-user-event-p response) | |
864 (save-selected-window | |
865 (select-window (if (windowp event) event | |
866 (event-window event))) | |
867 (funcall (event-function response) | |
868 (event-object response)))))) | |
869 | |
870 ;; provide default bindings for menu accelerator map | |
871 (and (boundp 'menu-accelerator-map) | |
872 (keymapp menu-accelerator-map) | |
873 (progn | |
874 (define-key menu-accelerator-map "\e" 'menu-escape) | |
875 (define-key menu-accelerator-map [left] 'menu-left) | |
876 (define-key menu-accelerator-map [right] 'menu-right) | |
877 (define-key menu-accelerator-map [up] 'menu-up) | |
878 (define-key menu-accelerator-map [down] 'menu-down) | |
879 (define-key menu-accelerator-map [return] 'menu-select) | |
502 | 880 (define-key menu-accelerator-map [kp-down] 'menu-down) |
881 (define-key menu-accelerator-map [kp-up] 'menu-down) | |
882 (define-key menu-accelerator-map [kp-left] 'menu-left) | |
883 (define-key menu-accelerator-map [kp-right] 'menu-right) | |
884 (define-key menu-accelerator-map [kp-enter] 'menu-select) | |
428 | 885 (define-key menu-accelerator-map "\C-g" 'menu-quit))) |
886 | |
887 | |
888 (provide 'menubar) | |
889 | |
890 ;;; menubar.el ends here |