Function: mouse-menu-bar-map
mouse-menu-bar-map is a byte-compiled function defined in mouse.el.gz.
Signature
(mouse-menu-bar-map)
Documentation
Return a keymap equivalent to the menu bar.
The contents are the items that would be in the menu bar whether or not it is actually displayed.
Source Code
;; Defined in /usr/src/emacs/lisp/mouse.el.gz
(defun mouse-menu-bar-map ()
"Return a keymap equivalent to the menu bar.
The contents are the items that would be in the menu bar whether or
not it is actually displayed."
(run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
(let* ((local-menu (and (current-local-map)
(lookup-key (current-local-map) [menu-bar])))
(global-menu (lookup-key global-map [menu-bar]))
;; If a keymap doesn't have a prompt string (a lazy
;; programmer didn't bother to provide one), create it and
;; insert it into the keymap; each keymap gets its own
;; prompt. This is required for non-toolkit versions to
;; display non-empty menu pane names.
(minor-mode-menus
(mapcar
(lambda (menu)
(let* ((minor-mode (car menu))
(menu (cdr menu))
(title-or-map (cadr menu)))
(or (stringp title-or-map)
(setq menu
(cons 'keymap
(cons (concat
(capitalize (subst-char-in-string
?- ?\s (symbol-name
minor-mode)))
" Menu")
(cdr menu)))))
menu))
(minor-mode-key-binding [menu-bar])))
(local-title-or-map (and local-menu (cadr local-menu)))
(global-title-or-map (cadr global-menu)))
(or (null local-menu)
(stringp local-title-or-map)
(setq local-menu (cons 'keymap
(cons (concat (format-mode-line mode-name)
" Mode Menu")
(cdr local-menu)))))
(or (stringp global-title-or-map)
(setq global-menu (cons 'keymap
(cons "Global Menu"
(cdr global-menu)))))
;; Supplying the list is faster than making a new map.
;; FIXME: We have a problem here: we have to use the global/local/minor
;; so they're displayed in the expected order, but later on in the command
;; loop, they're actually looked up in the opposite order.
(apply #'append
global-menu
local-menu
minor-mode-menus)))