123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560 |
- (require 'electric)
- (defgroup tmm nil
- "Text mode access to menu-bar."
- :prefix "tmm-"
- :group 'menu)
- (defvar tmm-short-cuts)
- (defvar tmm-old-mb-map nil)
- (defvar tmm-c-prompt nil)
- (defvar tmm-km-list)
- (defvar tmm-next-shortcut-digit)
- (defvar tmm-table-undef)
- (defun tmm-menubar (&optional x-position)
- "Text-mode emulation of looking and choosing from a menubar.
- See the documentation for `tmm-prompt'.
- X-POSITION, if non-nil, specifies a horizontal position within the menu bar;
- we make that menu bar item (the one at that position) the default choice."
- (interactive)
- (run-hooks 'menu-bar-update-hook)
-
- (let ((menu-bar (tmm-get-keybind [menu-bar]))
- menu-bar-item)
- (let ((list menu-bar-final-items))
- (while list
- (let ((item (car list)))
-
-
- (let ((this-one (assq item menu-bar)))
- (setq menu-bar (append (delq this-one menu-bar)
- (list this-one)))))
- (setq list (cdr list))))
- (if x-position
- (let ((tail menu-bar) (column 0)
- this-one name visible)
- (while (and tail (<= column x-position))
- (setq this-one (car tail))
- (if (and (consp this-one)
- (consp (cdr this-one))
- (setq name
- (cond ((stringp (nth 1 this-one))
- (nth 1 this-one))
-
- ((stringp (nth 2 this-one))
- (setq visible (plist-get
- (nthcdr 4 this-one) :visible))
- (unless (and visible (not (eval visible)))
- (nth 2 this-one))))))
- (setq column (+ column (length name) 1)))
- (setq tail (cdr tail)))
- (setq menu-bar-item (car this-one))))
- (tmm-prompt menu-bar nil menu-bar-item)))
- (defun tmm-menubar-mouse (event)
- "Text-mode emulation of looking and choosing from a menubar.
- This command is used when you click the mouse in the menubar
- on a console which has no window system but does have a mouse.
- See the documentation for `tmm-prompt'."
- (interactive "e")
- (tmm-menubar (car (posn-x-y (event-start event)))))
- (defcustom tmm-mid-prompt "==>"
- "String to insert between shortcut and menu item.
- If nil, there will be no shortcuts. It should not consist only of spaces,
- or else the correct item might not be found in the `*Completions*' buffer."
- :type 'string
- :group 'tmm)
- (defvar tmm-mb-map nil
- "A place to store minibuffer map.")
- (defcustom tmm-completion-prompt
- "Press PageUp key to reach this buffer from the minibuffer.
- Alternatively, you can use Up/Down keys (or your History keys) to change
- the item in the minibuffer, and press RET when you are done, or press the
- marked letters to pick up your choice. Type C-g or ESC ESC ESC to cancel.
- "
- "Help text to insert on the top of the completion buffer.
- To save space, you can set this to nil,
- in which case the standard introduction text is deleted too."
- :type '(choice string (const nil))
- :group 'tmm)
- (defcustom tmm-shortcut-style '(downcase upcase)
- "What letters to use as menu shortcuts.
- Must be either one of the symbols `downcase' or `upcase',
- or else a list of the two in the order you prefer."
- :type '(choice (const downcase)
- (const upcase)
- (repeat (choice (const downcase) (const upcase))))
- :group 'tmm)
- (defcustom tmm-shortcut-words 2
- "How many successive words to try for shortcuts, nil means all.
- If you use only one of `downcase' or `upcase' for `tmm-shortcut-style',
- specify nil for this variable."
- :type '(choice integer (const nil))
- :group 'tmm)
- (defface tmm-inactive
- '((t :inherit shadow))
- "Face used for inactive menu items."
- :group 'tmm)
- (defun tmm-prompt (menu &optional in-popup default-item)
- "Text-mode emulation of calling the bindings in keymap.
- Creates a text-mode menu of possible choices. You can access the elements
- in the menu in two ways:
- *) via history mechanism from minibuffer;
- *) Or via completion-buffer that is automatically shown.
- The last alternative is currently a hack, you cannot use mouse reliably.
- MENU is like the MENU argument to `x-popup-menu': either a
- keymap or an alist of alists.
- DEFAULT-ITEM, if non-nil, specifies an initial default choice.
- Its value should be an event that has a binding in MENU."
-
-
-
- (let ((gl-str "Menu bar")
-
- tmm-km-list out history history-len tmm-table-undef tmm-c-prompt
- tmm-old-mb-map tmm-short-cuts
- chosen-string choice
- (not-menu (not (keymapp menu))))
- (run-hooks 'activate-menubar-hook)
-
-
-
-
- (mapc (lambda (elt)
- (cond
- ((stringp elt) (setq gl-str elt))
- ((listp elt) (tmm-get-keymap elt not-menu))
- ((vectorp elt)
- (dotimes (i (length elt))
- (tmm-get-keymap (cons i (aref elt i)) not-menu)))))
- menu)
-
- (if (and not-menu (= 1 (length tmm-km-list)))
-
-
-
-
- (setq choice (cdr (car tmm-km-list)))
- (unless tmm-km-list
- (error "Empty menu reached"))
- (and tmm-km-list
- (let ((index-of-default 0))
- (if tmm-mid-prompt
- (setq tmm-km-list (tmm-add-shortcuts tmm-km-list))
- t)
-
-
-
- (if default-item
- (let ((tail menu) visible)
- (while (and tail
- (not (eq (car-safe (car tail)) default-item)))
-
-
- (if (and (consp (car tail))
- (or (stringp (car-safe (cdr (car tail))))
- (and
- (eq (car-safe (cdr (car tail))) 'menu-item)
- (progn
- (setq visible
- (plist-get
- (nthcdr 4 (car tail)) :visible))
- (or (not visible) (eval visible))))))
- (setq index-of-default (1+ index-of-default)))
- (setq tail (cdr tail)))))
- (let ((prompt (concat "^." (regexp-quote tmm-mid-prompt))))
- (setq history
- (reverse (delq nil
- (mapcar
- (lambda (elt)
- (if (string-match prompt (car elt))
- (car elt)))
- tmm-km-list)))))
- (setq history-len (length history))
- (setq history (append history history history history))
- (setq tmm-c-prompt (nth (- history-len 1 index-of-default) history))
- (setq out
- (if default-item
- (car (nth index-of-default tmm-km-list))
- (minibuffer-with-setup-hook #'tmm-add-prompt
- (completing-read
- (concat gl-str
- " (up/down to change, PgUp to menu): ")
- tmm-km-list nil t nil
- (cons 'history
- (- (* 2 history-len) index-of-default))))))))
- (setq choice (cdr (assoc out tmm-km-list)))
- (and (null choice)
- (> (length out) (length tmm-c-prompt))
- (string= (substring out 0 (length tmm-c-prompt)) tmm-c-prompt)
- (setq out (substring out (length tmm-c-prompt))
- choice (cdr (assoc out tmm-km-list))))
- (and (null choice) out
- (setq out (try-completion out tmm-km-list)
- choice (cdr (assoc out tmm-km-list)))))
-
- (setq chosen-string (car choice))
- (setq choice (cdr choice))
- (cond (in-popup
-
- choice)
-
- (not-menu (tmm-prompt choice t))
-
- ((keymapp choice)
- (if (symbolp choice)
- (setq choice (indirect-function choice)))
- (condition-case nil
- (require 'mouse)
- (error nil))
- (tmm-prompt choice))
-
- (choice
- (if chosen-string
- (progn
- (setq last-command-event chosen-string)
- (call-interactively choice))
- choice)))))
- (defun tmm-add-shortcuts (list)
- "Add shortcuts to cars of elements of the list.
- Takes a list of lists with a string as car, returns list with
- shortcuts added to these cars.
- Stores a list of all the shortcuts in the free variable `tmm-short-cuts'."
- (let ((tmm-next-shortcut-digit ?0))
- (mapcar 'tmm-add-one-shortcut (reverse list))))
- (defsubst tmm-add-one-shortcut (elt)
- (cond
- ((eq (cddr elt) 'ignore)
- (cons (concat " " (make-string (length tmm-mid-prompt) ?\-)
- (car elt))
- (cdr elt)))
- (t
- (let* ((str (car elt))
- (paren (string-match "(" str))
- (pos 0) (word 0) char)
- (catch 'done
- (while (and (or (not tmm-shortcut-words)
- (< word tmm-shortcut-words))
- (setq pos (string-match "\\w+" str pos))
- (not (and paren (> pos paren))))
- (if (or (= pos 0)
- (/= (aref str (1- pos)) ?.))
- (let ((shortcut-style
- (if (listp tmm-shortcut-style)
- tmm-shortcut-style
- (list tmm-shortcut-style))))
- (while shortcut-style
- (setq char (funcall (car shortcut-style) (aref str pos)))
- (if (not (memq char tmm-short-cuts)) (throw 'done char))
- (setq shortcut-style (cdr shortcut-style)))))
- (setq word (1+ word))
- (setq pos (match-end 0)))
- (while (<= tmm-next-shortcut-digit ?9)
- (setq char tmm-next-shortcut-digit)
- (setq tmm-next-shortcut-digit (1+ tmm-next-shortcut-digit))
- (if (not (memq char tmm-short-cuts)) (throw 'done char)))
- (setq char nil))
- (if char (setq tmm-short-cuts (cons char tmm-short-cuts)))
- (cons (concat (if char (concat (char-to-string char) tmm-mid-prompt)
-
- (make-string (1+ (length tmm-mid-prompt)) ?\s))
- str)
- (cdr elt))))))
- (defun tmm-define-keys (minibuffer)
- (let ((map (make-sparse-keymap)))
- (suppress-keymap map t)
- (mapc
- (lambda (c)
- (if (listp tmm-shortcut-style)
- (define-key map (char-to-string c) 'tmm-shortcut)
-
-
- (define-key map (char-to-string (downcase c)) 'tmm-shortcut)
- (define-key map (char-to-string (upcase c)) 'tmm-shortcut)))
- tmm-short-cuts)
- (if minibuffer
- (progn
- (define-key map [pageup] 'tmm-goto-completions)
- (define-key map [prior] 'tmm-goto-completions)
- (define-key map "\ev" 'tmm-goto-completions)
- (define-key map "\C-n" 'next-history-element)
- (define-key map "\C-p" 'previous-history-element)))
- (prog1 (current-local-map)
- (use-local-map (append map (current-local-map))))))
- (defun tmm-completion-delete-prompt ()
- (set-buffer standard-output)
- (goto-char (point-min))
- (delete-region (point) (search-forward "Possible completions are:\n")))
- (defun tmm-remove-inactive-mouse-face ()
- "Remove the mouse-face property from inactive menu items."
- (let ((inhibit-read-only t)
- (inactive-string
- (concat " " (make-string (length tmm-mid-prompt) ?\-)))
- next)
- (save-excursion
- (goto-char (point-min))
- (while (not (eobp))
- (setq next (next-single-char-property-change (point) 'mouse-face))
- (when (looking-at inactive-string)
- (remove-text-properties (point) next '(mouse-face))
- (add-text-properties (point) next '(face tmm-inactive)))
- (goto-char next)))
- (set-buffer-modified-p nil)))
- (defun tmm-add-prompt ()
- (add-hook 'minibuffer-exit-hook 'tmm-delete-map nil t)
- (unless tmm-c-prompt
- (error "No active menu entries"))
- (setq tmm-old-mb-map (tmm-define-keys t))
-
- (save-window-excursion
- (let ((completions
- (mapcar 'car minibuffer-completion-table)))
- (or tmm-completion-prompt
- (add-hook 'completion-setup-hook
- 'tmm-completion-delete-prompt 'append))
- (unwind-protect
- (with-output-to-temp-buffer "*Completions*"
- (display-completion-list completions))
- (remove-hook 'completion-setup-hook 'tmm-completion-delete-prompt)))
- (set-buffer "*Completions*")
- (tmm-remove-inactive-mouse-face)
- (when tmm-completion-prompt
- (let ((buffer-read-only nil))
- (goto-char (point-min))
- (insert tmm-completion-prompt))))
- (save-selected-window
- (other-window 1)
-
- (Electric-pop-up-window "*Completions*"))
- (insert tmm-c-prompt))
- (defun tmm-delete-map ()
- (remove-hook 'minibuffer-exit-hook 'tmm-delete-map t)
- (if tmm-old-mb-map
- (use-local-map tmm-old-mb-map)))
- (defun tmm-shortcut ()
- "Choose the shortcut that the user typed."
- (interactive)
- (let ((c last-command-event) s)
- (if (symbolp tmm-shortcut-style)
- (setq c (funcall tmm-shortcut-style c)))
- (if (memq c tmm-short-cuts)
- (if (equal (buffer-name) "*Completions*")
- (progn
- (goto-char (point-min))
- (re-search-forward
- (concat "\\(^\\|[ \t]\\)" (char-to-string c) tmm-mid-prompt))
- (choose-completion))
-
- (delete-region (minibuffer-prompt-end) (point-max))
- (mapc (lambda (elt)
- (if (string=
- (substring (car elt) 0
- (min (1+ (length tmm-mid-prompt))
- (length (car elt))))
- (concat (char-to-string c) tmm-mid-prompt))
- (setq s (car elt))))
- tmm-km-list)
- (insert s)
- (exit-minibuffer)))))
- (defun tmm-goto-completions ()
- "Jump to the completions buffer."
- (interactive)
- (let ((prompt-end (minibuffer-prompt-end)))
- (setq tmm-c-prompt (buffer-substring prompt-end (point-max)))
-
- (delete-region prompt-end (point-max)))
- (switch-to-buffer-other-window "*Completions*")
- (search-forward tmm-c-prompt)
- (search-backward tmm-c-prompt))
- (defun tmm-get-keymap (elt &optional in-x-menu)
- "Prepend (DOCSTRING EVENT BINDING) to free variable `tmm-km-list'.
- The values are deduced from the argument ELT, that should be an
- element of keymap, an `x-popup-menu' argument, or an element of
- `x-popup-menu' argument (when IN-X-MENU is not-nil).
- This function adds the element only if it is not already present.
- It uses the free variable `tmm-table-undef' to keep undefined keys."
- (let (km str plist filter visible enable (event (car elt)))
- (setq elt (cdr elt))
- (if (eq elt 'undefined)
- (setq tmm-table-undef (cons (cons event nil) tmm-table-undef))
- (unless (assoc event tmm-table-undef)
- (cond ((if (listp elt)
- (or (keymapp elt) (eq (car elt) 'lambda))
- (and (symbolp elt) (fboundp elt)))
- (setq km elt))
- ((if (listp (cdr-safe elt))
- (or (keymapp (cdr-safe elt))
- (eq (car (cdr-safe elt)) 'lambda))
- (and (symbolp (cdr-safe elt)) (fboundp (cdr-safe elt))))
- (setq km (cdr elt))
- (and (stringp (car elt)) (setq str (car elt))))
- ((if (listp (cdr-safe (cdr-safe elt)))
- (or (keymapp (cdr-safe (cdr-safe elt)))
- (eq (car (cdr-safe (cdr-safe elt))) 'lambda))
- (and (symbolp (cdr-safe (cdr-safe elt)))
- (fboundp (cdr-safe (cdr-safe elt)))))
- (setq km (cddr elt))
- (and (stringp (car elt)) (setq str (car elt))))
- ((eq (car-safe elt) 'menu-item)
-
- (setq plist (cdr-safe (cdr-safe (cdr-safe elt))))
- (when (consp (car-safe plist))
- (setq plist (cdr-safe plist)))
- (setq km (nth 2 elt))
- (setq str (eval (nth 1 elt)))
- (setq filter (plist-get plist :filter))
- (if filter
- (setq km (funcall filter km)))
- (setq visible (plist-get plist :visible))
- (if visible
- (setq km (and (eval visible) km)))
- (setq enable (plist-get plist :enable))
- (if enable
- (setq km (if (eval enable) km 'ignore))))
- ((if (listp (cdr-safe (cdr-safe (cdr-safe elt))))
- (or (keymapp (cdr-safe (cdr-safe (cdr-safe elt))))
- (eq (car (cdr-safe (cdr-safe (cdr-safe elt)))) 'lambda))
- (and (symbolp (cdr-safe (cdr-safe (cdr-safe elt))))
- (fboundp (cdr-safe (cdr-safe (cdr-safe elt))))))
-
- (setq km (cdr (cddr elt)))
- (and (stringp (car elt)) (setq str (car elt))))
- ((stringp event)
- (if (or in-x-menu (stringp (car-safe elt)))
- (setq str event event nil km elt)
- (setq str event event nil km (cons 'keymap elt)))))
- (unless (or (eq km 'ignore) (null str))
- (let ((binding (where-is-internal km nil t)))
- (when binding
- (setq binding (key-description binding))
-
- (let ((colwidth (min 30 (- (/ (window-width) 2) 10))))
- (setq str
- (concat str
- (make-string (max 2 (- colwidth
- (string-width str)
- (string-width binding)))
- ?\s)
- binding)))))))
- (and km (stringp km) (setq str km))
-
-
- (when (and km (symbolp km) (get km 'menu-enable))
- (setq km (if (eval (get km 'menu-enable)) km 'ignore)))
- (and km str
- (or (assoc str tmm-km-list)
- (push (cons str (cons event km)) tmm-km-list))))))
- (defun tmm-get-keybind (keyseq)
- "Return the current binding of KEYSEQ, merging prefix definitions.
- If KEYSEQ is a prefix key that has local and global bindings,
- we merge them into a single keymap which shows the proper order of the menu.
- However, for the menu bar itself, the value does not take account
- of `menu-bar-final-items'."
- (let (allbind bind minorbind localbind globalbind)
- (setq bind (key-binding keyseq))
-
-
- (if (keymapp bind)
- (setq bind nil))
-
- (or bind
- (progn
-
-
- (setq minorbind (mapcar 'cdr (minor-mode-key-binding keyseq)))
- (setq localbind (local-key-binding keyseq))
- (setq globalbind (copy-sequence (cdr (global-key-binding keyseq))))
-
-
- (dolist (minor minorbind)
- (dolist (item (cdr minor))
- (setq globalbind (assq-delete-all (car-safe item) globalbind))))
- (dolist (item (cdr localbind))
- (setq globalbind (assq-delete-all (car-safe item) globalbind)))
- (setq globalbind (cons 'keymap globalbind))
- (setq allbind (cons globalbind (cons localbind minorbind)))
-
- (mapc (lambda (in)
- (if (and (symbolp in) (keymapp in))
- (setq in (symbol-function in)))
- (and in (keymapp in)
- (if (keymapp bind)
- (setq bind (nconc bind (copy-sequence (cdr in))))
- (setq bind (copy-sequence in)))))
- allbind)
-
- bind))))
- (add-hook 'calendar-load-hook (lambda () (require 'cal-menu)))
- (provide 'tmm)
|