209
|
1 ;;; menubar.el --- Menubar support for XEmacs
|
|
2
|
|
3 ;; Copyright (C) 1991-4, 1997 Free Software Foundation, Inc.
|
|
4 ;; Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
|
|
5 ;; Copyright (C) 1995, 1996 Ben Wing.
|
|
6
|
|
7 ;; Maintainer: XEmacs Development Team
|
|
8 ;; Keywords: internal, extensions, dumped
|
|
9
|
|
10 ;; This file is part of XEmacs.
|
|
11
|
|
12 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
13 ;; under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
|
17 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
20 ;; General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
24 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
|
25 ;; Boston, MA 02111-1307, USA.
|
|
26
|
|
27 ;;; Synched up with: Not in FSF. (Completely divergent from FSF menu-bar.el)
|
|
28
|
|
29 ;;; Commentary:
|
|
30
|
|
31 ;; This file is dumped with XEmacs (when menubar support is compiled in).
|
|
32
|
|
33 ;; Some stuff in FSF menu-bar.el is in x-menubar.el
|
|
34
|
|
35 ;;; Code:
|
|
36
|
|
37 (defvar default-menubar nil)
|
|
38
|
|
39 ;; this function is considered "part of the lexicon" by many,
|
|
40 ;; so we'll leave it here.
|
|
41 (defun kill-this-buffer () ; for the menubar
|
|
42 "Kill the current buffer."
|
|
43 (interactive)
|
|
44 (kill-buffer (current-buffer)))
|
|
45
|
|
46 (defun set-menubar-dirty-flag ()
|
|
47 "Tell XEmacs that the menubar has to be updated.
|
|
48 NOTE: XEmacs now recognizes when you set a different value for
|
|
49 `current-menubar'. You *only* need to call this function if you
|
|
50 destructively modify a part of the menubar and don't set `current-menubar'.
|
|
51 Note that all the functions that modify a menu call this automatically."
|
|
52 (setq-default current-menubar (default-value 'current-menubar)))
|
|
53
|
|
54 ;; #### shouldn't this perhaps be `copy-tree'?
|
|
55 (defun set-menubar (menubar)
|
|
56 "Set the default menubar to be MENUBAR.
|
|
57 See `current-menubar' for a description of the syntax of a menubar."
|
|
58 (check-menu-syntax menubar t)
|
|
59 (setq-default current-menubar (copy-sequence menubar)))
|
|
60
|
|
61 (defun set-buffer-menubar (menubar)
|
|
62 "Set the buffer-local menubar to be MENUBAR.
|
|
63 See `current-menubar' for a description of the syntax of a menubar."
|
|
64 (check-menu-syntax menubar t)
|
|
65 (make-local-variable 'current-menubar)
|
|
66 (setq current-menubar (copy-sequence menubar)))
|
|
67
|
|
68 (defun check-menu-syntax (menu &optional menubar-p)
|
|
69 ;; The C code does syntax checking on the value of `current-menubar',
|
|
70 ;; but it's better to do it early, before things have gotten messed up.
|
|
71 (if menubar-p
|
|
72 nil
|
|
73 (or (stringp (car menu))
|
|
74 (signal 'error
|
|
75 (list "menu name (first element) must be a string" menu)))
|
|
76 ;;(or (cdr menu) (signal 'error (list "menu is empty" menu)))
|
|
77 (setq menu (cdr menu)))
|
|
78 (let (menuitem item)
|
|
79 (while (keywordp (setq item (car menu)))
|
|
80 (or (memq item '(:config :included :filter :accelerator))
|
|
81 (signal 'error
|
|
82 (list "menu keyword must be :config, :included, :accelerator or :filter"
|
|
83 item)))
|
|
84 (if (or (not (cdr menu))
|
|
85 (vectorp (nth 1 menu))
|
|
86 (keywordp (nth 1 menu)))
|
|
87 (signal 'error (list "strange keyword value" item (nth 1 menu))))
|
|
88 (setq menu (nthcdr 2 menu)))
|
|
89 (while menu
|
|
90 (setq menuitem (car menu))
|
|
91 (cond
|
|
92 ((stringp menuitem)
|
|
93 (and (string-match "^\\(-+\\|=+\\):\\(.*\\)" menuitem)
|
|
94 (setq item (match-string 2 menuitem))
|
|
95 (or (member item '(;; Motif-compatible
|
|
96 "singleLine"
|
|
97 "doubleLine"
|
|
98 "singleDashedLine"
|
|
99 "doubleDashedLine"
|
|
100 "noLine"
|
|
101 "shadowEtchedIn"
|
|
102 "shadowEtchedOut"
|
|
103 "shadowEtchedInDash"
|
|
104 "shadowEtchedOutDash"
|
|
105 ;; non-Motif (Lucid menubar widget only)
|
|
106 "shadowDoubleEtchedIn"
|
|
107 "shadowDoubleEtchedOut"
|
|
108 "shadowDoubleEtchedInDash"
|
|
109 "shadowDoubleEtchedOutDash"
|
|
110 ))
|
|
111 (signal 'error (list "bogus separator style in menu item" item)))
|
|
112 ))
|
|
113 ((null menuitem)
|
|
114 (or menubar-p
|
|
115 (signal 'error (list "nil is only permitted in the top level of menubars"))))
|
|
116 ((consp menuitem)
|
|
117 (check-menu-syntax menuitem))
|
|
118 ((vectorp menuitem)
|
|
119 (let ((L (length menuitem))
|
|
120 plistp)
|
|
121 (and (< L 3)
|
|
122 (signal 'error
|
|
123 (list "button descriptors must be at least 3 long"
|
|
124 menuitem)))
|
|
125 (setq plistp (or (>= L 5) (keywordp (aref menuitem 2))))
|
|
126 (or (stringp (aref menuitem 0))
|
|
127 (signal 'error
|
|
128 (list
|
|
129 "first element of a button must be a string (the label)"
|
|
130 menuitem)))
|
|
131 (or plistp
|
|
132 (< L 4)
|
|
133 (null (aref menuitem 3))
|
|
134 (stringp (aref menuitem 3))
|
|
135 (signal 'error
|
|
136 (list
|
|
137 "fourth element of a button must be a string (the label suffix)"
|
|
138 menuitem)))
|
|
139 (if plistp
|
|
140 (let ((i 2)
|
|
141 selp
|
|
142 style
|
|
143 item)
|
|
144 (while (< i L)
|
|
145 (setq item (aref menuitem i))
|
|
146 (cond ((not (memq item '(:active :suffix :keys :style
|
|
147 :full :included :selected
|
|
148 :accelerator)))
|
|
149 (signal 'error
|
|
150 (list (if (keywordp item)
|
|
151 "unknown menu item keyword"
|
|
152 "not a keyword")
|
|
153 item menuitem)))
|
|
154 ((eq item :style)
|
|
155 (setq style (aref menuitem (1+ i)))
|
|
156 (or (memq style '(nil toggle radio button text))
|
|
157 (signal 'error (list "unknown style" style
|
|
158 menuitem))))
|
|
159 ((eq item :selected) (setq selp t))
|
|
160 )
|
|
161 (setq i (+ i (if (eq item :full) 1 2))))
|
|
162 (if (and selp (not (memq style '(toggle button radio))))
|
|
163 (signal 'error
|
|
164 (list
|
|
165 ":selected only makes sense with :style toggle, radio, or button"
|
|
166 menuitem)))
|
|
167 )))
|
|
168 )
|
|
169 (t (signal 'error (list "unrecognised menu descriptor" menuitem))))
|
|
170 (setq menu (cdr menu)))))
|
|
171
|
|
172
|
|
173 ;;; menu manipulation functions
|
|
174
|
|
175 (defun find-menu-item (menubar item-path-list &optional parent)
|
|
176 "Search MENUBAR for item given by ITEM-PATH-LIST starting from PARENT.
|
|
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."
|
225
|
181 (check-argument-type 'listp item-path-list)
|
|
182 (unless parent
|
|
183 (setq item-path-list (mapcar 'normalize-menu-item-name item-path-list)))
|
209
|
184 (if (not (consp menubar))
|
|
185 nil
|
|
186 (let ((rest menubar)
|
|
187 result)
|
225
|
188 (when (stringp (car rest))
|
|
189 (setq rest (cdr rest)))
|
209
|
190 (while (keywordp (car rest))
|
|
191 (setq rest (cddr rest)))
|
|
192 (while rest
|
|
193 (if (and (car rest)
|
|
194 (equal (car item-path-list)
|
225
|
195 (normalize-menu-item-name
|
|
196 (cond ((vectorp (car rest))
|
|
197 (aref (car rest) 0))
|
|
198 ((stringp (car rest))
|
|
199 (car rest))
|
|
200 (t
|
|
201 (caar rest))))))
|
|
202 (setq result (car rest)
|
|
203 rest nil)
|
209
|
204 (setq rest (cdr rest))))
|
|
205 (if (cdr item-path-list)
|
225
|
206 (cond ((consp result)
|
|
207 (find-menu-item (cdr result) (cdr item-path-list) result))
|
|
208 (result
|
|
209 (signal 'error (list (gettext "not a submenu") result)))
|
|
210 (t
|
|
211 (signal 'error (list (gettext "no such submenu")
|
|
212 (car item-path-list)))))
|
209
|
213 (cons result parent)))))
|
|
214
|
|
215 (defun add-menu-item-1 (leaf-p menu-path new-item before)
|
|
216 ;; This code looks like it could be cleaned up some more
|
|
217 ;; Do we really need 6 calls to find-menu-item?
|
|
218 (when before (setq before (normalize-menu-item-name before)))
|
|
219 (let* ((item-name
|
|
220 (cond ((vectorp new-item) (aref new-item 0))
|
|
221 ((consp new-item) (car new-item))
|
|
222 (t nil)))
|
|
223 (menubar current-menubar)
|
|
224 (menu (condition-case ()
|
|
225 (car (find-menu-item menubar menu-path))
|
|
226 (error nil)))
|
|
227 (item-found (cond
|
|
228 ((null item-name)
|
|
229 nil)
|
|
230 ((not (listp menu))
|
|
231 (signal 'error (list (gettext "not a submenu")
|
|
232 menu-path)))
|
|
233 (menu
|
|
234 (find-menu-item (cdr menu) (list item-name)))
|
|
235 (t
|
|
236 (find-menu-item menubar (list item-name)))
|
|
237 )))
|
|
238 (unless menubar
|
|
239 (error "`current-menubar' is nil: can't add menus to it."))
|
|
240 (unless menu
|
|
241 (let ((rest menu-path)
|
|
242 (so-far menubar))
|
|
243 (while rest
|
|
244 ;;; (setq menu (car (find-menu-item (cdr so-far) (list (car rest)))))
|
|
245 (setq menu
|
|
246 (if (eq so-far menubar)
|
|
247 (car (find-menu-item so-far (list (car rest))))
|
|
248 (car (find-menu-item (cdr so-far) (list (car rest))))))
|
|
249 (unless menu
|
|
250 (let ((rest2 so-far))
|
|
251 (while (and (cdr rest2) (car (cdr rest2)))
|
|
252 (setq rest2 (cdr rest2)))
|
|
253 (setcdr rest2
|
|
254 (nconc (list (setq menu (list (car rest))))
|
|
255 (cdr rest2)))))
|
|
256 (setq so-far menu)
|
|
257 (setq rest (cdr rest)))))
|
|
258 (if (and item-found (car item-found))
|
|
259 ;; hack the item in place.
|
|
260 (if menu
|
|
261 ;; Isn't it very bad form to use nsubstitute for side effects?
|
|
262 (nsubstitute new-item (car item-found) menu)
|
|
263 (setq current-menubar (nsubstitute new-item
|
|
264 (car item-found)
|
|
265 current-menubar)))
|
|
266 ;; OK, we have to add the whole thing...
|
|
267 ;; if BEFORE is specified, try to add it there.
|
|
268 (unless menu (setq menu current-menubar))
|
|
269 (when before
|
|
270 (setq before (car (find-menu-item menu (list before)))))
|
|
271 (let ((rest menu)
|
|
272 (added-before nil))
|
|
273 (while rest
|
|
274 (if (eq before (car (cdr rest)))
|
|
275 (progn
|
|
276 (setcdr rest (cons new-item (cdr rest)))
|
|
277 (setq rest nil added-before t))
|
|
278 (setq rest (cdr rest))))
|
|
279 (when (not added-before)
|
|
280 ;; adding before the first item on the menubar itself is harder
|
|
281 (if (and (eq menu menubar) (eq before (car menu)))
|
|
282 (setq menu (cons new-item menu)
|
|
283 current-menubar menu)
|
|
284 ;; otherwise, add the item to the end.
|
|
285 (nconc menu (list new-item))))))
|
|
286 (set-menubar-dirty-flag)
|
|
287 new-item))
|
|
288
|
|
289 (defun add-menu-button (menu-path menu-leaf &optional before)
|
|
290 "Add a menu item to some menu, creating the menu first if necessary.
|
|
291 If the named item exists already, it is changed.
|
|
292 MENU-PATH identifies the menu under which the new menu item should be inserted.
|
|
293 It is a list of strings; for example, (\"File\") names the top-level \"File\"
|
|
294 menu. (\"File\" \"Foo\") names a hypothetical submenu of \"File\".
|
|
295 MENU-LEAF is a menubar leaf node. See the documentation of `current-menubar'.
|
|
296 BEFORE, if provided, is the name of a menu item before which this item should
|
|
297 be added, if this item is not on the menu already. If the item is already
|
|
298 present, it will not be moved."
|
|
299 (add-menu-item-1 t menu-path menu-leaf before))
|
|
300
|
|
301 ;; I actually liked the old name better, but the interface has changed too
|
|
302 ;; drastically to keep it. --Stig
|
|
303 (defun add-submenu (menu-path submenu &optional before)
|
|
304 "Add a menu to the menubar or one of its submenus.
|
|
305 If the named menu exists already, it is changed.
|
|
306 MENU-PATH identifies the menu under which the new menu should be inserted.
|
|
307 It is a list of strings; for example, (\"File\") names the top-level \"File\"
|
|
308 menu. (\"File\" \"Foo\") names a hypothetical submenu of \"File\".
|
|
309 If MENU-PATH is nil, then the menu will be added to the menubar itself.
|
|
310 SUBMENU is the new menu to add.
|
|
311 See the documentation of `current-menubar' for the syntax.
|
|
312 BEFORE, if provided, is the name of a menu before which this menu should
|
|
313 be added, if this menu is not on its parent already. If the menu is already
|
|
314 present, it will not be moved."
|
|
315 (check-menu-syntax submenu nil)
|
|
316 (add-menu-item-1 nil menu-path submenu before))
|
|
317
|
|
318 (defun purecopy-menubar (x)
|
|
319 ;; this calls purecopy on the strings, and the contents of the vectors,
|
|
320 ;; but not on the vectors themselves, or the conses - those must be
|
|
321 ;; writable.
|
|
322 (cond ((vectorp x)
|
|
323 (let ((i (length x)))
|
|
324 (while (> i 0)
|
|
325 (aset x (1- i) (purecopy (aref x (1- i))))
|
|
326 (setq i (1- i))))
|
|
327 x)
|
|
328 ((consp x)
|
|
329 (let ((rest x))
|
|
330 (while rest
|
|
331 (setcar rest (purecopy-menubar (car rest)))
|
|
332 (setq rest (cdr rest))))
|
|
333 x)
|
|
334 (t
|
|
335 (purecopy x))))
|
|
336
|
|
337 (defun delete-menu-item (path)
|
|
338 "Remove the named menu item from the menu hierarchy.
|
|
339 PATH is a list of strings which identify the position of the menu item in
|
|
340 the menu hierarchy. The documentation of `add-submenu' describes menu-paths."
|
|
341 (let* ((pair (condition-case nil (find-menu-item current-menubar path)
|
|
342 (error nil)))
|
|
343 (item (car pair))
|
|
344 (parent (or (cdr pair) current-menubar)))
|
|
345 (if (not item)
|
|
346 nil
|
|
347 ;; the menubar is the only special case, because other menus begin
|
|
348 ;; with their name.
|
|
349 (if (eq parent current-menubar)
|
|
350 (setq current-menubar (delq item parent))
|
|
351 (delq item parent))
|
|
352 (set-menubar-dirty-flag)
|
|
353 item)))
|
|
354
|
|
355 (defun relabel-menu-item (path new-name)
|
|
356 "Change the string of the specified menu item.
|
|
357 PATH is a list of strings which identify the position of the menu item in
|
|
358 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\"
|
|
359 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the
|
|
360 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\".
|
|
361 NEW-NAME is the string that the menu item will be printed as from now on."
|
|
362 (or (stringp new-name)
|
|
363 (setq new-name (signal 'wrong-type-argument (list 'stringp new-name))))
|
|
364 (let* ((menubar current-menubar)
|
|
365 (pair (find-menu-item menubar path))
|
|
366 (item (car pair))
|
|
367 (menu (cdr pair)))
|
|
368 (or item
|
|
369 (signal 'error (list (if menu (gettext "No such menu item")
|
|
370 (gettext "No such menu"))
|
|
371 path)))
|
|
372 (if (and (consp item)
|
|
373 (stringp (car item)))
|
|
374 (setcar item new-name)
|
|
375 (aset item 0 new-name))
|
|
376 (set-menubar-dirty-flag)
|
|
377 item))
|
|
378
|
|
379 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
380 ;;
|
|
381 ;; these are all bad style. Why in the world would we put evaluable forms
|
|
382 ;; into the menubar if we didn't want people to use 'em?
|
|
383 ;; x-font-menu.el is the only known offender right now and that ought to be
|
|
384 ;; rehashed a bit.
|
|
385 ;;
|
|
386
|
|
387 (defun enable-menu-item-1 (path toggle-p on-p)
|
|
388 (let (menu item)
|
|
389 (if (and (vectorp path) (> (length path) 2)) ; limited syntax checking...
|
|
390 (setq item path)
|
|
391 (let* ((menubar current-menubar)
|
|
392 (pair (find-menu-item menubar path)))
|
|
393 (setq item (car pair)
|
|
394 menu (cdr pair))
|
|
395 (or item
|
|
396 (signal 'error (list (if menu
|
|
397 "No such menu item"
|
|
398 "No such menu")
|
|
399 path)))
|
|
400 (if (consp item)
|
|
401 (error "%S is a menu, not a menu item" path))))
|
|
402 (if (or (> (length item) 4)
|
|
403 (and (symbolp (aref item 2))
|
|
404 (= ?: (aref (symbol-name (aref item 2)) 0))))
|
|
405 ;; plist-like syntax
|
|
406 (let ((i 2)
|
|
407 (keyword (if toggle-p :selected :active))
|
|
408 (ok nil))
|
|
409 (while (< i (length item))
|
|
410 (cond ((eq (aref item i) keyword)
|
|
411 (aset item (1+ i) on-p)
|
|
412 (setq ok t)))
|
|
413 (setq i (+ i 2)))
|
|
414 (cond (ok nil)
|
|
415 (toggle-p
|
|
416 (signal 'error (list "not a toggle menu item" item)))
|
|
417 (t
|
|
418 ;; Need to copy the item to extend it, sigh...
|
|
419 (let ((cons (memq item menu))
|
|
420 (new-item (vconcat item (list keyword on-p))))
|
|
421 (if cons
|
|
422 (setcar cons (setq item new-item))
|
|
423 (if menu
|
|
424 (error "couldn't find %S on its parent?" item)
|
|
425 (error "no %S slot to set: %S" keyword item)))))))
|
|
426 ;; positional syntax
|
|
427 (if toggle-p
|
|
428 (signal 'error (list "not a toggle menu item" item))
|
|
429 (aset item 2 on-p)))
|
|
430 (set-menubar-dirty-flag)
|
|
431 item))
|
|
432
|
|
433 (defun enable-menu-item (path)
|
|
434 "Make the named menu item be selectable.
|
|
435 PATH is a list of strings which identify the position of the menu item in
|
|
436 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\"
|
|
437 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the
|
|
438 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"."
|
|
439 (enable-menu-item-1 path nil t))
|
|
440
|
|
441 (defun disable-menu-item (path)
|
|
442 "Make the named menu item be unselectable.
|
|
443 PATH is a list of strings which identify the position of the menu item in
|
|
444 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\"
|
|
445 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the
|
|
446 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"."
|
|
447 (enable-menu-item-1 path nil nil))
|
|
448
|
|
449 (defun select-toggle-menu-item (path)
|
|
450 "Make the named toggle- or radio-style menu item be in the `selected' state.
|
|
451 PATH is a list of strings which identify the position of the menu item in
|
|
452 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\"
|
|
453 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the
|
|
454 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"."
|
|
455 (enable-menu-item-1 path t t))
|
|
456
|
|
457 (defun deselect-toggle-menu-item (path)
|
|
458 "Make the named toggle- or radio-style menu item be in the `unselected' state.
|
|
459 PATH is a list of strings which identify the position of the menu item in
|
|
460 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\"
|
|
461 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the
|
|
462 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"."
|
|
463 (enable-menu-item-1 path t nil))
|
|
464
|
|
465
|
|
466 (defun get-popup-menu-response (menu-desc &optional event)
|
|
467 "Pop up the given menu and wait for a response.
|
|
468 This blocks until the response is received, and returns the misc-user
|
|
469 event that encapsulates the response. To execute it, you can do
|
|
470 (funcall (event-function response) (event-object response))
|
|
471 If no response was received, nil is returned.
|
|
472
|
|
473 MENU-DESC and EVENT are as in the call to `popup-menu'."
|
|
474 ;; partially stolen from w3
|
|
475 (let ((echo-keystrokes 0)
|
|
476 new-event)
|
|
477 (popup-menu menu-desc event)
|
|
478 (catch 'popup-done
|
|
479 (while t
|
|
480 (setq new-event (next-command-event new-event))
|
|
481 (cond ((misc-user-event-p new-event)
|
|
482 (throw 'popup-done new-event))
|
|
483 ((not (popup-up-p))
|
|
484 (setq unread-command-events (cons new-event
|
|
485 unread-command-events))
|
|
486 (throw 'popup-done nil))
|
|
487 ((button-release-event-p new-event);; don't beep twice
|
|
488 nil)
|
|
489 ((event-matches-key-specifier-p (quit-char))
|
|
490 (signal 'quit nil))
|
|
491 (t
|
|
492 (beep)
|
|
493 (message "please make a choice from the menu.")))))))
|
|
494
|
|
495 (defun popup-menu-and-execute-in-window (menu-desc event)
|
|
496 "Pop up the given menu and execute its response in EVENT's window.
|
|
497 This blocks until the response is received, temporarily selects
|
|
498 EVENT's window, and executes the command specified in the response.
|
|
499 EVENT can also be a window. See `popup-menu' for the semantics of
|
|
500 MENU-DESC."
|
|
501 (let ((response
|
|
502 (get-popup-menu-response menu-desc
|
|
503 (and (eventp event) event))))
|
|
504 (and (misc-user-event-p response)
|
|
505 (save-selected-window
|
|
506 (select-window (if (windowp event) event
|
|
507 (event-window event)))
|
|
508 (funcall (event-function response)
|
|
509 (event-object response))))))
|
|
510
|
|
511 ;; provide default bindings for menu accelerator map
|
|
512 (and (boundp 'menu-accelerator-map)
|
|
513 (keymapp menu-accelerator-map)
|
|
514 (progn
|
|
515 (define-key menu-accelerator-map "\e" 'menu-escape)
|
|
516 (define-key menu-accelerator-map [left] 'menu-left)
|
|
517 (define-key menu-accelerator-map [right] 'menu-right)
|
|
518 (define-key menu-accelerator-map [up] 'menu-up)
|
|
519 (define-key menu-accelerator-map [down] 'menu-down)
|
|
520 (define-key menu-accelerator-map [return] 'menu-select)
|
|
521 (define-key menu-accelerator-map [kp_down] 'menu-down)
|
|
522 (define-key menu-accelerator-map [kp_up] 'menu-down)
|
|
523 (define-key menu-accelerator-map [kp_left] 'menu-left)
|
|
524 (define-key menu-accelerator-map [kp_right] 'menu-right)
|
|
525 (define-key menu-accelerator-map [kp_enter] 'menu-select)
|
|
526 (define-key menu-accelerator-map "\C-g" 'menu-quit)))
|
|
527
|
|
528
|
|
529 (provide 'menubar)
|
|
530
|
|
531 ;;; menubar.el ends here
|