Backport from trunk: compute shortcuts in tmm.el.
[bpt/emacs.git] / lisp / tmm.el
CommitLineData
be010748 1;;; tmm.el --- text mode access to menu-bar
20062d6b 2
0d30b337 3;; Copyright (C) 1994, 1995, 1996, 2000, 2001, 2002, 2003,
114f9c96 4;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
20062d6b
RS
5
6;; Author: Ilya Zakharevich <ilya@math.mps.ohio-state.edu>
fc225f66 7;; Maintainer: FSF
97895167 8;; Keywords: convenience
20062d6b 9
d440e474 10;; This file is part of GNU Emacs.
20062d6b 11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
20062d6b 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
20062d6b
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
20062d6b 24
b578f267 25;;; Commentary:
20062d6b 26
97895167 27;; This package provides text mode access to the menu bar.
20062d6b 28
b578f267 29;;; Code:
20062d6b
RS
30
31(require 'electric)
20062d6b 32
4bef9110
SE
33(defgroup tmm nil
34 "Text mode access to menu-bar."
35 :prefix "tmm-"
36 :group 'menu)
37
20062d6b
RS
38;;; The following will be localized, added only to pacify the compiler.
39(defvar tmm-short-cuts)
fc225f66 40(defvar tmm-old-mb-map nil)
20062d6b 41(defvar tmm-old-comp-map)
93253b0e 42(defvar tmm-c-prompt nil)
20062d6b 43(defvar tmm-km-list)
670ce6ea 44(defvar tmm-next-shortcut-digit)
20062d6b
RS
45(defvar tmm-table-undef)
46
e6a5c7de 47;;;###autoload (define-key global-map "\M-`" 'tmm-menubar)
77cc5db0 48;;;###autoload (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse)
afb1835e 49
20062d6b 50;;;###autoload
77cc5db0 51(defun tmm-menubar (&optional x-position)
20062d6b 52 "Text-mode emulation of looking and choosing from a menubar.
77cc5db0
RS
53See the documentation for `tmm-prompt'.
54X-POSITION, if non-nil, specifies a horizontal position within the menu bar;
55we make that menu bar item (the one at that position) the default choice."
20062d6b
RS
56 (interactive)
57 (run-hooks 'menu-bar-update-hook)
fc225f66 58 ;; Obey menu-bar-final-items; put those items last.
77cc5db0
RS
59 (let ((menu-bar (tmm-get-keybind [menu-bar]))
60 menu-bar-item)
fc225f66
RS
61 (let ((list menu-bar-final-items))
62 (while list
63 (let ((item (car list)))
64 ;; ITEM is the name of an item that we want to put last.
65 ;; Find it in MENU-BAR and move it to the end.
66 (let ((this-one (assq item menu-bar)))
67 (setq menu-bar (append (delq this-one menu-bar)
68 (list this-one)))))
69 (setq list (cdr list))))
77cc5db0 70 (if x-position
93253b0e 71 (let ((tail menu-bar) (column 0)
a4e03d18 72 this-one name visible)
573e00ef 73 (while (and tail (<= column x-position))
77cc5db0 74 (setq this-one (car tail))
573e00ef
NR
75 (if (and (consp this-one)
76 (consp (cdr this-one))
a4e03d18 77 (setq name ;simple menu
93253b0e
NR
78 (cond ((stringp (nth 1 this-one))
79 (nth 1 this-one))
a4e03d18
NR
80 ;extended menu
81 ((stringp (nth 2 this-one))
82 (setq visible (plist-get
83 (nthcdr 4 this-one) :visible))
84 (unless (and visible (not (eval visible)))
85 (nth 2 this-one))))))
93253b0e 86 (setq column (+ column (length name) 1)))
77cc5db0
RS
87 (setq tail (cdr tail)))
88 (setq menu-bar-item (car this-one))))
89 (tmm-prompt menu-bar nil menu-bar-item)))
90
8e735883 91;;;###autoload
77cc5db0
RS
92(defun tmm-menubar-mouse (event)
93 "Text-mode emulation of looking and choosing from a menubar.
94This command is used when you click the mouse in the menubar
95on a console which has no window system but does have a mouse.
96See the documentation for `tmm-prompt'."
97 (interactive "e")
98 (tmm-menubar (car (posn-x-y (event-start event)))))
20062d6b 99
4bef9110 100(defcustom tmm-mid-prompt "==>"
c03aab72 101 "String to insert between shortcut and menu item.
670ce6ea 102If nil, there will be no shortcuts. It should not consist only of spaces,
4bef9110
SE
103or else the correct item might not be found in the `*Completions*' buffer."
104 :type 'string
105 :group 'tmm)
20062d6b
RS
106
107(defvar tmm-mb-map nil
108 "A place to store minibuffer map.")
109
97895167 110(defcustom tmm-completion-prompt
e5ba1eb9 111 "Press PageUp key to reach this buffer from the minibuffer.
20062d6b 112Alternatively, you can use Up/Down keys (or your History keys) to change
97895167 113the item in the minibuffer, and press RET when you are done, or press the
10fe2d38 114marked letters to pick up your choice. Type C-g or ESC ESC ESC to cancel.
20062d6b 115"
c03aab72 116 "Help text to insert on the top of the completion buffer.
670ce6ea 117To save space, you can set this to nil,
4bef9110
SE
118in which case the standard introduction text is deleted too."
119 :type '(choice string (const nil))
120 :group 'tmm)
670ce6ea 121
4bef9110 122(defcustom tmm-shortcut-style '(downcase upcase)
c03aab72 123 "What letters to use as menu shortcuts.
97895167 124Must be either one of the symbols `downcase' or `upcase',
4bef9110
SE
125or else a list of the two in the order you prefer."
126 :type '(choice (const downcase)
127 (const upcase)
128 (repeat (choice (const downcase) (const upcase))))
129 :group 'tmm)
670ce6ea 130
4bef9110 131(defcustom tmm-shortcut-words 2
c03aab72 132 "How many successive words to try for shortcuts, nil means all.
97895167 133If you use only one of `downcase' or `upcase' for `tmm-shortcut-style',
4bef9110
SE
134specify nil for this variable."
135 :type '(choice integer (const nil))
136 :group 'tmm)
20062d6b 137
e43cbeae 138(defface tmm-inactive
1c8c1295 139 '((t :inherit shadow))
04a5d30f
NR
140 "Face used for inactive menu items."
141 :group 'tmm)
142
20062d6b 143;;;###autoload
bdbc7685 144(defun tmm-prompt (menu &optional in-popup default-item)
20062d6b 145 "Text-mode emulation of calling the bindings in keymap.
77cc5db0
RS
146Creates a text-mode menu of possible choices. You can access the elements
147in the menu in two ways:
148 *) via history mechanism from minibuffer;
20062d6b
RS
149 *) Or via completion-buffer that is automatically shown.
150The last alternative is currently a hack, you cannot use mouse reliably.
bdbc7685
RS
151
152MENU is like the MENU argument to `x-popup-menu': either a
153keymap or an alist of alists.
154DEFAULT-ITEM, if non-nil, specifies an initial default choice.
155Its value should be an event that has a binding in MENU."
156 ;; If the optional argument IN-POPUP is t,
157 ;; then MENU is an alist of elements of the form (STRING . VALUE).
158 ;; That is used for recursive calls only.
159 (let ((gl-str "Menu bar") ;; The menu bar itself is not a menu keymap
160 ; so it doesn't have a name.
161 tmm-km-list out history history-len tmm-table-undef tmm-c-prompt
162 tmm-old-mb-map tmm-old-comp-map tmm-short-cuts
163 chosen-string choice
164 (not-menu (not (keymapp menu))))
20062d6b 165 (run-hooks 'activate-menubar-hook)
bdbc7685
RS
166 ;; Compute tmm-km-list from MENU.
167 ;; tmm-km-list is an alist of (STRING . MEANING).
168 ;; It has no other elements.
169 ;; The order of elements in tmm-km-list is the order of the menu bar.
e07436e1
DL
170 (mapc (lambda (elt)
171 (if (stringp elt)
172 (setq gl-str elt)
fe59d705
SM
173 (cond
174 ((listp elt) (tmm-get-keymap elt not-menu))
175 ((vectorp elt)
176 (dotimes (i (length elt))
177 (tmm-get-keymap (cons i (aref elt i)) not-menu))))))
bdbc7685
RS
178 menu)
179 ;; Choose an element of tmm-km-list; put it in choice.
180 (if (and not-menu (= 1 (length tmm-km-list)))
181 ;; If this is the top-level of an x-popup-menu menu,
182 ;; and there is just one pane, choose that one silently.
183 ;; This way we only ask the user one question,
184 ;; for which element of that pane.
185 (setq choice (cdr (car tmm-km-list)))
ae3f2f3c
RS
186 (unless tmm-km-list
187 (error "Empty menu reached"))
bdbc7685
RS
188 (and tmm-km-list
189 (let ((index-of-default 0))
190 (if tmm-mid-prompt
191 (setq tmm-km-list (tmm-add-shortcuts tmm-km-list))
192 t)
193 ;; Find the default item's index within the menu bar.
194 ;; We use this to decide the initial minibuffer contents
195 ;; and initial history position.
196 (if default-item
a4e03d18 197 (let ((tail menu) visible)
bdbc7685
RS
198 (while (and tail
199 (not (eq (car-safe (car tail)) default-item)))
200 ;; Be careful to count only the elements of MENU
201 ;; that actually constitute menu bar items.
202 (if (and (consp (car tail))
d0bca3c9 203 (or (stringp (car-safe (cdr (car tail))))
a4e03d18
NR
204 (and
205 (eq (car-safe (cdr (car tail))) 'menu-item)
206 (progn
207 (setq visible
208 (plist-get
209 (nthcdr 4 (car tail)) :visible))
210 (or (not visible) (eval visible))))))
bdbc7685
RS
211 (setq index-of-default (1+ index-of-default)))
212 (setq tail (cdr tail)))))
04a5d30f
NR
213 (let ((prompt (concat "^." (regexp-quote tmm-mid-prompt))))
214 (setq history
215 (reverse (delq nil
216 (mapcar
217 (lambda (elt)
218 (if (string-match prompt (car elt))
219 (car elt)))
220 tmm-km-list)))))
bdbc7685
RS
221 (setq history-len (length history))
222 (setq history (append history history history history))
223 (setq tmm-c-prompt (nth (- history-len 1 index-of-default) history))
224 (add-hook 'minibuffer-setup-hook 'tmm-add-prompt)
573e00ef
NR
225 (if default-item
226 (setq out (car (nth index-of-default tmm-km-list)))
227 (save-excursion
228 (unwind-protect
229 (setq out
230 (completing-read
231 (concat gl-str
232 " (up/down to change, PgUp to menu): ")
233 tmm-km-list nil t nil
234 (cons 'history
235 (- (* 2 history-len) index-of-default))))
c03aab72
SM
236 (remove-hook 'minibuffer-setup-hook 'tmm-add-prompt)
237 (if (get-buffer "*Completions*")
238 (with-current-buffer "*Completions*"
239 (use-local-map tmm-old-comp-map)
240 (bury-buffer (current-buffer)))))))))
bdbc7685
RS
241 (setq choice (cdr (assoc out tmm-km-list)))
242 (and (null choice)
243 (> (length out) (length tmm-c-prompt))
244 (string= (substring out 0 (length tmm-c-prompt)) tmm-c-prompt)
245 (setq out (substring out (length tmm-c-prompt))
246 choice (cdr (assoc out tmm-km-list))))
ae3f2f3c 247 (and (null choice) out
bdbc7685
RS
248 (setq out (try-completion out tmm-km-list)
249 choice (cdr (assoc out tmm-km-list)))))
250 ;; CHOICE is now (STRING . MEANING). Separate the two parts.
251 (setq chosen-string (car choice))
252 (setq choice (cdr choice))
253 (cond (in-popup
254 ;; We just did the inner level of a -popup menu.
255 choice)
256 ;; We just did the outer level. Do the inner level now.
97895167 257 (not-menu (tmm-prompt choice t))
bdbc7685
RS
258 ;; We just handled a menu keymap and found another keymap.
259 ((keymapp choice)
260 (if (symbolp choice)
261 (setq choice (indirect-function choice)))
262 (condition-case nil
263 (require 'mouse)
264 (error nil))
bdbc7685
RS
265 (tmm-prompt choice))
266 ;; We just handled a menu keymap and found a command.
267 (choice
268 (if chosen-string
3132f319
KH
269 (progn
270 (setq last-command-event chosen-string)
271 (call-interactively choice))
bdbc7685 272 choice)))))
20062d6b 273
20062d6b
RS
274(defun tmm-add-shortcuts (list)
275 "Adds shortcuts to cars of elements of the list.
276Takes a list of lists with a string as car, returns list with
fc225f66
RS
277shortcuts added to these cars.
278Stores a list of all the shortcuts in the free variable `tmm-short-cuts'."
670ce6ea
RS
279 (let ((tmm-next-shortcut-digit ?0))
280 (mapcar 'tmm-add-one-shortcut (reverse list))))
20062d6b 281
670ce6ea
RS
282(defsubst tmm-add-one-shortcut (elt)
283;; uses the free vars tmm-next-shortcut-digit and tmm-short-cuts
04a5d30f
NR
284 (cond
285 ((eq (cddr elt) 'ignore)
286 (cons (concat " " (make-string (length tmm-mid-prompt) ?\-)
287 (car elt))
288 (cdr elt)))
289 (t
290 (let* ((str (car elt))
291 (paren (string-match "(" str))
292 (pos 0) (word 0) char)
293 (catch 'done ; ??? is this slow?
294 (while (and (or (not tmm-shortcut-words) ; no limit on words
295 (< word tmm-shortcut-words)) ; try n words
296 (setq pos (string-match "\\w+" str pos)) ; get next word
297 (not (and paren (> pos paren)))) ; don't go past "(binding.."
298 (if (or (= pos 0)
299 (/= (aref str (1- pos)) ?.)) ; avoid file extensions
300 (let ((shortcut-style
301 (if (listp tmm-shortcut-style) ; convert to list
302 tmm-shortcut-style
303 (list tmm-shortcut-style))))
304 (while shortcut-style ; try upcase and downcase variants
305 (setq char (funcall (car shortcut-style) (aref str pos)))
306 (if (not (memq char tmm-short-cuts)) (throw 'done char))
307 (setq shortcut-style (cdr shortcut-style)))))
308 (setq word (1+ word))
309 (setq pos (match-end 0)))
310 (while (<= tmm-next-shortcut-digit ?9) ; no letter shortcut, pick a digit
311 (setq char tmm-next-shortcut-digit)
312 (setq tmm-next-shortcut-digit (1+ tmm-next-shortcut-digit))
313 (if (not (memq char tmm-short-cuts)) (throw 'done char)))
314 (setq char nil))
315 (if char (setq tmm-short-cuts (cons char tmm-short-cuts)))
316 (cons (concat (if char (concat (char-to-string char) tmm-mid-prompt)
317 ;; keep them lined up in columns
a322861f 318 (make-string (1+ (length tmm-mid-prompt)) ?\s))
04a5d30f
NR
319 str)
320 (cdr elt))))))
670ce6ea
RS
321
322;; This returns the old map.
fe03654a 323(defun tmm-define-keys (minibuffer)
670ce6ea
RS
324 (let ((map (make-sparse-keymap)))
325 (suppress-keymap map t)
e07436e1
DL
326 (mapc
327 (lambda (c)
328 (if (listp tmm-shortcut-style)
329 (define-key map (char-to-string c) 'tmm-shortcut)
330 ;; only one kind of letters are shortcuts, so map both upcase and
331 ;; downcase input to the same
332 (define-key map (char-to-string (downcase c)) 'tmm-shortcut)
333 (define-key map (char-to-string (upcase c)) 'tmm-shortcut)))
670ce6ea
RS
334 tmm-short-cuts)
335 (if minibuffer
336 (progn
337 (define-key map [pageup] 'tmm-goto-completions)
338 (define-key map [prior] 'tmm-goto-completions)
339 (define-key map "\ev" 'tmm-goto-completions)
340 (define-key map "\C-n" 'next-history-element)
341 (define-key map "\C-p" 'previous-history-element)))
342 (prog1 (current-local-map)
343 (use-local-map (append map (current-local-map))))))
344
345(defun tmm-completion-delete-prompt ()
346 (set-buffer standard-output)
9241efbe
SM
347 (goto-char (point-min))
348 (delete-region (point) (search-forward "Possible completions are:\n")))
b46324e6 349
04a5d30f
NR
350(defun tmm-remove-inactive-mouse-face ()
351 "Remove the mouse-face property from inactive menu items."
352 (let ((inhibit-read-only t)
353 (inactive-string
354 (concat " " (make-string (length tmm-mid-prompt) ?\-)))
355 next)
356 (save-excursion
357 (goto-char (point-min))
358 (while (not (eobp))
359 (setq next (next-single-char-property-change (point) 'mouse-face))
360 (when (looking-at inactive-string)
361 (remove-text-properties (point) next '(mouse-face))
e43cbeae 362 (add-text-properties (point) next '(face tmm-inactive)))
04a5d30f
NR
363 (goto-char next)))
364 (set-buffer-modified-p nil)))
365
20062d6b
RS
366(defun tmm-add-prompt ()
367 (remove-hook 'minibuffer-setup-hook 'tmm-add-prompt)
afb1835e 368 (add-hook 'minibuffer-exit-hook 'tmm-delete-map nil t)
04a5d30f
NR
369 (unless tmm-c-prompt
370 (error "No active menu entries"))
b46324e6 371 (let ((win (selected-window)))
670ce6ea 372 (setq tmm-old-mb-map (tmm-define-keys t))
20062d6b 373 ;; Get window and hide it for electric mode to get correct size
97895167 374 (save-window-excursion
fc225f66
RS
375 (let ((completions
376 (mapcar 'car minibuffer-completion-table)))
670ce6ea
RS
377 (or tmm-completion-prompt
378 (add-hook 'completion-setup-hook
379 'tmm-completion-delete-prompt 'append))
9241efbe
SM
380 (unwind-protect
381 (with-output-to-temp-buffer "*Completions*"
382 (display-completion-list completions))
383 (remove-hook 'completion-setup-hook 'tmm-completion-delete-prompt)))
04a5d30f
NR
384 (set-buffer "*Completions*")
385 (tmm-remove-inactive-mouse-face)
0595722b 386 (when tmm-completion-prompt
0595722b
GM
387 (let ((buffer-read-only nil))
388 (goto-char (point-min))
389 (insert tmm-completion-prompt))))
ca85cf8a 390 (save-selected-window
20062d6b
RS
391 (other-window 1) ; Electric-pop-up-window does
392 ; not work in minibuffer
ca85cf8a
RS
393 (Electric-pop-up-window "*Completions*")
394 (with-current-buffer "*Completions*"
395 (setq tmm-old-comp-map (tmm-define-keys nil))))
20062d6b
RS
396 (insert tmm-c-prompt)))
397
398(defun tmm-delete-map ()
afb1835e 399 (remove-hook 'minibuffer-exit-hook 'tmm-delete-map t)
fc225f66
RS
400 (if tmm-old-mb-map
401 (use-local-map tmm-old-mb-map)))
20062d6b
RS
402
403(defun tmm-shortcut ()
fc225f66 404 "Choose the shortcut that the user typed."
20062d6b 405 (interactive)
8989a920 406 (let ((c last-command-event) s)
670ce6ea
RS
407 (if (symbolp tmm-shortcut-style)
408 (setq c (funcall tmm-shortcut-style c)))
409 (if (memq c tmm-short-cuts)
fc225f66
RS
410 (if (equal (buffer-name) "*Completions*")
411 (progn
b74f6606 412 (goto-char (point-min))
fc225f66 413 (re-search-forward
670ce6ea 414 (concat "\\(^\\|[ \t]\\)" (char-to-string c) tmm-mid-prompt))
fc225f66 415 (choose-completion))
c2a8d4a7
GM
416 ;; In minibuffer
417 (delete-region (minibuffer-prompt-end) (point-max))
e07436e1
DL
418 (mapc (lambda (elt)
419 (if (string=
97895167 420 (substring (car elt) 0
e07436e1
DL
421 (min (1+ (length tmm-mid-prompt))
422 (length (car elt))))
423 (concat (char-to-string c) tmm-mid-prompt))
424 (setq s (car elt))))
fc225f66
RS
425 tmm-km-list)
426 (insert s)
427 (exit-minibuffer)))))
20062d6b
RS
428
429(defun tmm-goto-completions ()
430 (interactive)
fbe91bbd
GM
431 (let ((prompt-end (minibuffer-prompt-end)))
432 (setq tmm-c-prompt (buffer-substring prompt-end (point-max)))
433 (delete-region prompt-end (point-max)))
fc225f66 434 (switch-to-buffer-other-window "*Completions*")
20062d6b
RS
435 (search-forward tmm-c-prompt)
436 (search-backward tmm-c-prompt))
437
97895167 438(defun tmm-get-keymap (elt &optional in-x-menu)
20062d6b
RS
439 "Prepends (DOCSTRING EVENT BINDING) to free variable `tmm-km-list'.
440The values are deduced from the argument ELT, that should be an
fc225f66 441element of keymap, an `x-popup-menu' argument, or an element of
20062d6b 442`x-popup-menu' argument (when IN-X-MENU is not-nil).
77cc5db0
RS
443This function adds the element only if it is not already present.
444It uses the free variable `tmm-table-undef' to keep undefined keys."
dc9ed794 445 (let (km str plist filter visible enable (event (car elt)))
20062d6b
RS
446 (setq elt (cdr elt))
447 (if (eq elt 'undefined)
448 (setq tmm-table-undef (cons (cons event nil) tmm-table-undef))
42d140b4
KH
449 (unless (assoc event tmm-table-undef)
450 (cond ((if (listp elt)
451 (or (keymapp elt) (eq (car elt) 'lambda))
dc9ed794 452 (and (symbolp elt) (fboundp elt)))
42d140b4 453 (setq km elt))
0595722b 454
42d140b4
KH
455 ((if (listp (cdr-safe elt))
456 (or (keymapp (cdr-safe elt))
457 (eq (car (cdr-safe elt)) 'lambda))
dc9ed794 458 (and (symbolp (cdr-safe elt)) (fboundp (cdr-safe elt))))
42d140b4
KH
459 (setq km (cdr elt))
460 (and (stringp (car elt)) (setq str (car elt))))
0595722b 461
42d140b4
KH
462 ((if (listp (cdr-safe (cdr-safe elt)))
463 (or (keymapp (cdr-safe (cdr-safe elt)))
464 (eq (car (cdr-safe (cdr-safe elt))) 'lambda))
dc9ed794
SM
465 (and (symbolp (cdr-safe (cdr-safe elt)))
466 (fboundp (cdr-safe (cdr-safe elt)))))
e9bed1ef 467 (setq km (cddr elt))
dc9ed794 468 (and (stringp (car elt)) (setq str (car elt))))
0595722b 469
42d140b4 470 ((eq (car-safe elt) 'menu-item)
0595722b 471 ;; (menu-item TITLE COMMAND KEY ...)
dd81ca0d 472 (setq plist (cdr-safe (cdr-safe (cdr-safe elt))))
0595722b
GM
473 (when (consp (car-safe plist))
474 (setq plist (cdr-safe plist)))
42d140b4 475 (setq km (nth 2 elt))
c19cc275 476 (setq str (eval (nth 1 elt)))
dd81ca0d
RS
477 (setq filter (plist-get plist :filter))
478 (if filter
479 (setq km (funcall filter km)))
97895167
PJ
480 (setq visible (plist-get plist :visible))
481 (if visible
482 (setq km (and (eval visible) km)))
7ae862e2
NR
483 (setq enable (plist-get plist :enable))
484 (if enable
dc9ed794 485 (setq km (if (eval enable) km 'ignore))))
0595722b 486
42d140b4
KH
487 ((if (listp (cdr-safe (cdr-safe (cdr-safe elt))))
488 (or (keymapp (cdr-safe (cdr-safe (cdr-safe elt))))
489 (eq (car (cdr-safe (cdr-safe (cdr-safe elt)))) 'lambda))
dc9ed794
SM
490 (and (symbolp (cdr-safe (cdr-safe (cdr-safe elt))))
491 (fboundp (cdr-safe (cdr-safe (cdr-safe elt))))))
42d140b4 492 ; New style of easy-menu
e9bed1ef 493 (setq km (cdr (cddr elt)))
dc9ed794 494 (and (stringp (car elt)) (setq str (car elt))))
0595722b 495
42d140b4
KH
496 ((stringp event) ; x-popup or x-popup element
497 (if (or in-x-menu (stringp (car-safe elt)))
498 (setq str event event nil km elt)
dc9ed794
SM
499 (setq str event event nil km (cons 'keymap elt)))))
500 (unless (eq km 'ignore)
501 (let ((binding (where-is-internal km nil t)))
502 (when binding
503 (setq binding (key-description binding))
504 ;; Try to align the keybindings.
505 (let ((colwidth (min 30 (- (/ (window-width) 2) 10))))
506 (setq str
507 (concat str
508 (make-string (max 2 (- colwidth
509 (string-width str)
510 (string-width binding)))
511 ?\s)
512 binding)))))))
20062d6b 513 (and km (stringp km) (setq str km))
2a9f2437
RS
514 ;; Verify that the command is enabled;
515 ;; if not, don't mention it.
516 (when (and km (symbolp km) (get km 'menu-enable))
04a5d30f 517 (setq km (if (eval (get km 'menu-enable)) km 'ignore)))
20062d6b
RS
518 (and km str
519 (or (assoc str tmm-km-list)
c19cc275 520 (push (cons str (cons event km)) tmm-km-list))))))
20062d6b 521
20062d6b 522(defun tmm-get-keybind (keyseq)
fc225f66 523 "Return the current binding of KEYSEQ, merging prefix definitions.
91a5e367 524If KEYSEQ is a prefix key that has local and global bindings,
fc225f66
RS
525we merge them into a single keymap which shows the proper order of the menu.
526However, for the menu bar itself, the value does not take account
527of `menu-bar-final-items'."
93253b0e 528 (let (allbind bind minorbind localbind globalbind)
fc225f66
RS
529 (setq bind (key-binding keyseq))
530 ;; If KEYSEQ is a prefix key, then BIND is either nil
531 ;; or a symbol defined as a keymap (which satisfies keymapp).
532 (if (keymapp bind)
533 (setq bind nil))
534 ;; If we have a non-keymap definition, return that.
535 (or bind
536 (progn
537 ;; Otherwise, it is a prefix, so make a list of the subcommands.
538 ;; Make a list of all the bindings in all the keymaps.
93253b0e
NR
539 (setq minorbind (mapcar 'cdr (minor-mode-key-binding keyseq)))
540 (setq localbind (local-key-binding keyseq))
e47b7019 541 (setq globalbind (copy-sequence (cdr (global-key-binding keyseq))))
93253b0e
NR
542
543 ;; If items have been redefined/undefined locally, remove them from
544 ;; the global list.
545 (dolist (minor minorbind)
546 (dolist (item (cdr minor))
0bb48bff 547 (setq globalbind (assq-delete-all (car-safe item) globalbind))))
93253b0e 548 (dolist (item (cdr localbind))
0bb48bff 549 (setq globalbind (assq-delete-all (car-safe item) globalbind)))
93253b0e
NR
550
551 (setq globalbind (cons 'keymap globalbind))
552 (setq allbind (cons globalbind (cons localbind minorbind)))
553
fc225f66 554 ;; Merge all the elements of ALLBIND into one keymap.
e07436e1
DL
555 (mapc (lambda (in)
556 (if (and (symbolp in) (keymapp in))
557 (setq in (symbol-function in)))
558 (and in (keymapp in)
559 (if (keymapp bind)
560 (setq bind (nconc bind (copy-sequence (cdr in))))
561 (setq bind (copy-sequence in)))))
fc225f66
RS
562 allbind)
563 ;; Return that keymap.
564 bind))))
20062d6b 565
c03aab72 566;; Huh? What's that about? --Stef
20062d6b
RS
567(add-hook 'calendar-load-hook (lambda () (require 'cal-menu)))
568
20062d6b
RS
569(provide 'tmm)
570
c03aab72 571;; arch-tag: e7ddbdb6-4b95-4da3-afbe-ad6063d112f4
20062d6b 572;;; tmm.el ends here