1993-04-08 16:17:43 +00:00
|
|
|
|
;;; menu-bar.el --- define a default menu bar.
|
|
|
|
|
|
|
|
|
|
;; Author: RMS
|
1993-11-23 20:12:25 +00:00
|
|
|
|
;; Keywords: internal
|
1993-04-08 16:17:43 +00:00
|
|
|
|
|
1994-01-06 16:49:05 +00:00
|
|
|
|
;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
|
1993-04-08 07:10:13 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
|
|
|
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
1993-04-08 16:17:43 +00:00
|
|
|
|
;;; Code:
|
1993-04-08 07:10:13 +00:00
|
|
|
|
|
1993-09-06 22:48:00 +00:00
|
|
|
|
;; Don't clobber an existing menu-bar keymap, to preserve any menu-bar key
|
|
|
|
|
;; definitions made in loaddefs.el.
|
|
|
|
|
(or (lookup-key global-map [menu-bar])
|
|
|
|
|
(define-key global-map [menu-bar] (make-sparse-keymap "menu-bar")))
|
1993-06-05 19:13:03 +00:00
|
|
|
|
(defvar menu-bar-help-menu (make-sparse-keymap "Help"))
|
1993-07-17 01:43:00 +00:00
|
|
|
|
;; Put Help item last.
|
|
|
|
|
(setq menu-bar-final-items '(help))
|
|
|
|
|
(define-key global-map [menu-bar help] (cons "Help" menu-bar-help-menu))
|
1993-06-05 19:13:03 +00:00
|
|
|
|
(defvar menu-bar-edit-menu (make-sparse-keymap "Edit"))
|
1993-03-15 02:00:20 +00:00
|
|
|
|
(define-key global-map [menu-bar edit] (cons "Edit" menu-bar-edit-menu))
|
1993-06-05 19:13:03 +00:00
|
|
|
|
(defvar menu-bar-file-menu (make-sparse-keymap "File"))
|
1993-03-15 02:00:20 +00:00
|
|
|
|
(define-key global-map [menu-bar file] (cons "File" menu-bar-file-menu))
|
1994-06-22 20:37:41 +00:00
|
|
|
|
|
1993-03-15 00:46:58 +00:00
|
|
|
|
(define-key menu-bar-file-menu [exit-emacs]
|
1993-03-14 23:39:34 +00:00
|
|
|
|
'("Exit Emacs" . save-buffers-kill-emacs))
|
1994-06-22 20:37:41 +00:00
|
|
|
|
|
|
|
|
|
(define-key menu-bar-file-menu [separator-compare]
|
|
|
|
|
'("--"))
|
|
|
|
|
|
1994-05-09 20:46:58 +00:00
|
|
|
|
(define-key menu-bar-file-menu [epatch]
|
|
|
|
|
'("Apply Patch" . menu-bar-epatch-menu))
|
|
|
|
|
(define-key menu-bar-file-menu [ediff]
|
|
|
|
|
'("Compare Files" . menu-bar-ediff-menu))
|
1994-03-10 04:09:13 +00:00
|
|
|
|
(define-key menu-bar-file-menu [emerge] '("Emerge" . menu-bar-emerge-menu))
|
1994-06-22 20:37:41 +00:00
|
|
|
|
|
|
|
|
|
(define-key menu-bar-file-menu [separator-misc]
|
|
|
|
|
'("--"))
|
|
|
|
|
|
1994-01-16 21:25:09 +00:00
|
|
|
|
(define-key menu-bar-file-menu [calendar] '("Calendar" . calendar))
|
|
|
|
|
(define-key menu-bar-file-menu [rmail] '("Read Mail" . rmail))
|
|
|
|
|
(define-key menu-bar-file-menu [gnus] '("Read Net News" . gnus))
|
1994-06-22 20:37:41 +00:00
|
|
|
|
|
|
|
|
|
(define-key menu-bar-file-menu [separator-frames]
|
|
|
|
|
'("--"))
|
|
|
|
|
|
|
|
|
|
(define-key menu-bar-file-menu [delete-frame] '("Delete Frame" . delete-frame))
|
|
|
|
|
(define-key menu-bar-file-menu [make-frame] '("Make New Frame" . make-frame))
|
|
|
|
|
|
|
|
|
|
(define-key menu-bar-file-menu [separator-buffers]
|
|
|
|
|
'("--"))
|
|
|
|
|
|
1993-10-26 00:00:58 +00:00
|
|
|
|
(define-key menu-bar-file-menu [bookmark]
|
1994-03-10 04:09:13 +00:00
|
|
|
|
'("Bookmarks" . menu-bar-bookmark-map))
|
1994-06-22 20:37:41 +00:00
|
|
|
|
(define-key menu-bar-file-menu [print-buffer]
|
|
|
|
|
'("Print Buffer" . print-buffer))
|
|
|
|
|
(define-key menu-bar-file-menu [kill-buffer]
|
|
|
|
|
'("Kill Buffer" . kill-this-buffer))
|
1993-03-15 01:05:11 +00:00
|
|
|
|
(define-key menu-bar-file-menu [revert-buffer]
|
|
|
|
|
'("Revert Buffer" . revert-buffer))
|
|
|
|
|
(define-key menu-bar-file-menu [write-file]
|
|
|
|
|
'("Save Buffer As..." . write-file))
|
|
|
|
|
(define-key menu-bar-file-menu [save-buffer] '("Save Buffer" . save-buffer))
|
1993-07-13 03:23:19 +00:00
|
|
|
|
(define-key menu-bar-file-menu [dired] '("Open Directory..." . dired))
|
1993-03-15 01:05:11 +00:00
|
|
|
|
(define-key menu-bar-file-menu [open-file] '("Open File..." . find-file))
|
1994-06-22 20:37:41 +00:00
|
|
|
|
|
1993-12-23 03:19:05 +00:00
|
|
|
|
(define-key menu-bar-edit-menu [query-replace]
|
|
|
|
|
'("Query Replace" . query-replace))
|
1993-11-09 07:28:56 +00:00
|
|
|
|
(define-key menu-bar-edit-menu [re-search-back]
|
|
|
|
|
'("Regexp Search Backwards" . re-search-backward))
|
|
|
|
|
(define-key menu-bar-edit-menu [search-back]
|
|
|
|
|
'("Search Backwards" . search-backward))
|
|
|
|
|
(define-key menu-bar-edit-menu [re-search-fwd]
|
|
|
|
|
'("Regexp Search" . re-search-forward))
|
|
|
|
|
(define-key menu-bar-edit-menu [search-fwd]
|
|
|
|
|
'("Search" . search-forward))
|
1994-06-22 20:37:41 +00:00
|
|
|
|
|
|
|
|
|
(define-key menu-bar-edit-menu [separator-misc]
|
|
|
|
|
'("--"))
|
|
|
|
|
|
|
|
|
|
(define-key menu-bar-edit-menu [spell] '("Spell" . ispell-menu-map))
|
|
|
|
|
(define-key menu-bar-edit-menu [fill] '("Fill" . fill-region))
|
|
|
|
|
|
|
|
|
|
(define-key menu-bar-edit-menu [separator-edit]
|
|
|
|
|
'("--"))
|
|
|
|
|
|
|
|
|
|
(define-key menu-bar-edit-menu [clear] '("Clear" . delete-region))
|
1993-07-07 19:58:54 +00:00
|
|
|
|
(define-key menu-bar-edit-menu [choose-next-paste]
|
1994-02-06 02:33:02 +00:00
|
|
|
|
'("Choose Next Paste >" . mouse-menu-choose-yank))
|
1993-05-17 04:45:03 +00:00
|
|
|
|
(define-key menu-bar-edit-menu [paste] '("Paste" . yank))
|
|
|
|
|
(define-key menu-bar-edit-menu [copy] '("Copy" . kill-ring-save))
|
|
|
|
|
(define-key menu-bar-edit-menu [cut] '("Cut" . kill-region))
|
|
|
|
|
(define-key menu-bar-edit-menu [undo] '("Undo" . undo))
|
|
|
|
|
|
|
|
|
|
(put 'fill-region 'menu-enable 'mark-active)
|
|
|
|
|
(put 'kill-region 'menu-enable 'mark-active)
|
|
|
|
|
(put 'kill-ring-save 'menu-enable 'mark-active)
|
|
|
|
|
(put 'yank 'menu-enable '(x-selection-exists-p))
|
|
|
|
|
(put 'delete-region 'menu-enable 'mark-active)
|
|
|
|
|
(put 'undo 'menu-enable '(if (eq last-command 'undo)
|
|
|
|
|
pending-undo-list
|
|
|
|
|
(consp buffer-undo-list)))
|
1993-12-23 03:19:05 +00:00
|
|
|
|
(put 'query-replace 'menu-enable (not buffer-read-only))
|
1993-03-14 23:39:34 +00:00
|
|
|
|
|
1993-07-12 20:29:28 +00:00
|
|
|
|
(autoload 'ispell-menu-map "ispell" nil t 'keymap)
|
|
|
|
|
|
1994-04-06 04:54:35 +00:00
|
|
|
|
;; These are alternative definitions for the cut, paste and copy
|
|
|
|
|
;; menu items. Use them if your system expects these to use the clipboard
|
|
|
|
|
|
|
|
|
|
(put 'clipboard-kill-region 'menu-enable 'mark-active)
|
|
|
|
|
(put 'clipboard-kill-ring-save 'menu-enable 'mark-active)
|
|
|
|
|
(put 'clipboard-yank 'menu-enable
|
|
|
|
|
'(or (x-selection-exists-p) (x-selection-exists-p 'CLIPBOARD)))
|
|
|
|
|
|
|
|
|
|
(defun clipboard-yank ()
|
|
|
|
|
"Reinsert the last stretch of killed text, or the clipboard contents."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((x-select-enable-clipboard t))
|
|
|
|
|
(yank)))
|
|
|
|
|
|
|
|
|
|
(defun clipboard-kill-ring-save (beg end)
|
|
|
|
|
"Copy region to kill ring, and save in the X clipboard."
|
|
|
|
|
(interactive "r")
|
|
|
|
|
(let ((x-select-enable-clipboard t))
|
|
|
|
|
(kill-ring-save beg end)))
|
|
|
|
|
|
|
|
|
|
(defun clipboard-kill-region (beg end)
|
|
|
|
|
"Kill the region, and save it in the X clipboard."
|
|
|
|
|
(interactive "r")
|
|
|
|
|
(let ((x-select-enable-clipboard t))
|
|
|
|
|
(kill-region beg end)))
|
|
|
|
|
|
|
|
|
|
(defun menu-bar-enable-clipboard ()
|
|
|
|
|
"Make the menu bar CUT, PASTE and COPY items use the clipboard."
|
|
|
|
|
(interactive)
|
1994-04-18 21:33:57 +00:00
|
|
|
|
;; We can't use constant list structure here because it becomes pure,
|
|
|
|
|
;; and because it gets modified with cache data.
|
|
|
|
|
(define-key menu-bar-edit-menu [paste]
|
|
|
|
|
(cons "Paste" 'clipboard-yank))
|
|
|
|
|
(define-key menu-bar-edit-menu [copy]
|
|
|
|
|
(cons "Copy" 'clipboard-kill-ring-save))
|
|
|
|
|
(define-key menu-bar-edit-menu [cut]
|
|
|
|
|
(cons "Cut" 'clipboard-kill-region)))
|
1994-04-08 05:26:47 +00:00
|
|
|
|
|
|
|
|
|
;; Sun expects these commands on these keys, so why not?
|
|
|
|
|
(define-key global-map [f20] 'clipboard-kill-region)
|
|
|
|
|
(define-key global-map [f16] 'clipboard-kill-ring-save)
|
|
|
|
|
(define-key global-map [f18] 'clipboard-yank)
|
1994-04-06 04:54:35 +00:00
|
|
|
|
|
1994-04-28 04:15:32 +00:00
|
|
|
|
(define-key menu-bar-help-menu [emacs-version]
|
|
|
|
|
'("Show Version" . emacs-version))
|
1994-04-28 04:17:42 +00:00
|
|
|
|
(define-key menu-bar-help-menu [report-emacs-bug]
|
|
|
|
|
'("Send Bug Report" . report-emacs-bug))
|
1993-03-15 00:46:58 +00:00
|
|
|
|
(define-key menu-bar-help-menu [emacs-tutorial]
|
1993-03-14 23:39:34 +00:00
|
|
|
|
'("Emacs Tutorial" . help-with-tutorial))
|
1993-03-15 01:05:11 +00:00
|
|
|
|
(define-key menu-bar-help-menu [man] '("Man..." . manual-entry))
|
|
|
|
|
(define-key menu-bar-help-menu [describe-variable]
|
|
|
|
|
'("Describe Variable..." . describe-variable))
|
|
|
|
|
(define-key menu-bar-help-menu [describe-function]
|
|
|
|
|
'("Describe Function..." . describe-function))
|
|
|
|
|
(define-key menu-bar-help-menu [describe-key]
|
|
|
|
|
'("Describe Key..." . describe-key))
|
|
|
|
|
(define-key menu-bar-help-menu [list-keybindings]
|
|
|
|
|
'("List Keybindings" . describe-bindings))
|
|
|
|
|
(define-key menu-bar-help-menu [command-apropos]
|
|
|
|
|
'("Command Apropos..." . command-apropos))
|
|
|
|
|
(define-key menu-bar-help-menu [describe-mode]
|
|
|
|
|
'("Describe Mode" . describe-mode))
|
|
|
|
|
(define-key menu-bar-help-menu [info] '("Info" . info))
|
1993-03-14 23:39:34 +00:00
|
|
|
|
|
1993-03-15 01:05:11 +00:00
|
|
|
|
(define-key menu-bar-help-menu [emacs-news] '("Emacs News" . view-emacs-news))
|
1993-03-14 23:39:34 +00:00
|
|
|
|
(defun kill-this-buffer () ; for the menubar
|
|
|
|
|
"Kills the current buffer."
|
|
|
|
|
(interactive)
|
|
|
|
|
(kill-buffer (current-buffer)))
|
|
|
|
|
|
1993-03-15 01:05:11 +00:00
|
|
|
|
(defun kill-this-buffer-enabled-p ()
|
|
|
|
|
(let ((count 0)
|
|
|
|
|
(buffers (buffer-list)))
|
|
|
|
|
(while buffers
|
|
|
|
|
(or (string-match "^ " (buffer-name (car buffers)))
|
|
|
|
|
(setq count (1+ count)))
|
|
|
|
|
(setq buffers (cdr buffers)))
|
|
|
|
|
(> count 1)))
|
|
|
|
|
|
1993-03-14 23:39:34 +00:00
|
|
|
|
(put 'save-buffer 'menu-enable '(buffer-modified-p))
|
1993-07-17 01:43:00 +00:00
|
|
|
|
(put 'revert-buffer 'menu-enable
|
|
|
|
|
'(or revert-buffer-function revert-buffer-insert-file-contents-function
|
|
|
|
|
(and (buffer-file-name)
|
1993-09-19 02:05:38 +00:00
|
|
|
|
(or (buffer-modified-p)
|
|
|
|
|
(not (verify-visited-file-modtime (current-buffer)))))))
|
1993-07-29 04:50:27 +00:00
|
|
|
|
;; Permit deleting frame if it would leave a visible or iconified frame.
|
|
|
|
|
(put 'delete-frame 'menu-enable
|
|
|
|
|
'(let ((frames (frame-list))
|
|
|
|
|
(count 0))
|
|
|
|
|
(while frames
|
|
|
|
|
(if (cdr (assq 'visibility (frame-parameters (car frames))))
|
|
|
|
|
(setq count (1+ count)))
|
|
|
|
|
(setq frames (cdr frames)))
|
|
|
|
|
(> count 1)))
|
1993-03-15 01:05:11 +00:00
|
|
|
|
(put 'kill-this-buffer 'menu-enable '(kill-this-buffer-enabled-p))
|
|
|
|
|
|
1993-03-14 23:39:34 +00:00
|
|
|
|
(put 'advertised-undo 'menu-enable
|
|
|
|
|
'(and (not (eq t buffer-undo-list))
|
|
|
|
|
(if (eq last-command 'undo)
|
1993-03-15 01:05:11 +00:00
|
|
|
|
(and (boundp 'pending-undo-list)
|
|
|
|
|
pending-undo-list)
|
|
|
|
|
buffer-undo-list)))
|
1993-06-17 04:17:21 +00:00
|
|
|
|
|
|
|
|
|
(defvar yank-menu-length 100
|
|
|
|
|
"*Maximum length of an item in the menu for \
|
|
|
|
|
\\[mouse-menu-choose-yank].")
|
|
|
|
|
|
|
|
|
|
(defun mouse-menu-choose-yank (event)
|
|
|
|
|
"Pop up a menu of the kill-ring for selection with the mouse.
|
|
|
|
|
The kill-ring-yank-pointer is moved to the selected element.
|
|
|
|
|
A subsequent \\[yank] yanks the choice just selected."
|
|
|
|
|
(interactive "e")
|
|
|
|
|
(let* ((count 0)
|
|
|
|
|
(menu (mapcar (lambda (string)
|
|
|
|
|
(if (> (length string) yank-menu-length)
|
|
|
|
|
(setq string (substring string
|
|
|
|
|
0 yank-menu-length)))
|
|
|
|
|
(prog1 (cons string count)
|
|
|
|
|
(setq count (1+ count))))
|
1993-07-01 03:31:58 +00:00
|
|
|
|
kill-ring))
|
|
|
|
|
(arg (x-popup-menu event
|
|
|
|
|
(list "Yank Menu"
|
1993-07-07 19:58:54 +00:00
|
|
|
|
(cons "Choose Next Yank" menu)))))
|
1993-07-01 03:31:58 +00:00
|
|
|
|
;; A mouse click outside the menu returns nil.
|
|
|
|
|
;; Avoid a confusing error from passing nil to rotate-yank-pointer.
|
|
|
|
|
;; XXX should this perhaps do something other than simply return? -rm
|
|
|
|
|
(if arg
|
|
|
|
|
(progn
|
1994-01-06 16:49:05 +00:00
|
|
|
|
;; We don't use `rotate-yank-pointer' because we want to move
|
|
|
|
|
;; relative to the beginning of kill-ring, not the current
|
|
|
|
|
;; position. Also, that would ask for any new X selection and
|
|
|
|
|
;; thus change the list of items the user just chose from, which
|
|
|
|
|
;; would be highly confusing.
|
|
|
|
|
(setq kill-ring-yank-pointer (nthcdr arg kill-ring))
|
1993-07-01 03:31:58 +00:00
|
|
|
|
(if (interactive-p)
|
|
|
|
|
(message "The next yank will insert the selected text.")
|
|
|
|
|
(current-kill 0))))))
|
|
|
|
|
(put 'mouse-menu-choose-yank 'menu-enable 'kill-ring)
|
1993-03-15 02:00:20 +00:00
|
|
|
|
|
1994-04-28 03:44:48 +00:00
|
|
|
|
(define-key global-map [menu-bar buffer] '("Buffers" . menu-bar-buffers))
|
|
|
|
|
|
|
|
|
|
(defalias 'menu-bar-buffers (make-sparse-keymap "Buffers"))
|
1993-03-15 02:00:20 +00:00
|
|
|
|
|
|
|
|
|
(defvar complex-buffers-menu-p nil
|
|
|
|
|
"*Non-nil says, offer a choice of actions after you pick a buffer.
|
|
|
|
|
This applies to the Buffers menu from the menu bar.")
|
|
|
|
|
|
|
|
|
|
(defvar buffers-menu-max-size 10
|
|
|
|
|
"*Maximum number of entries which may appear on the Buffers menu.
|
|
|
|
|
If this is 10, then only the ten most-recently-selected buffers are shown.
|
|
|
|
|
If this is nil, then all buffers are shown.
|
|
|
|
|
A large number or nil slows down menu responsiveness.")
|
|
|
|
|
|
1993-08-14 10:32:54 +00:00
|
|
|
|
(defvar list-buffers-directory nil)
|
|
|
|
|
|
1994-04-28 03:44:48 +00:00
|
|
|
|
(defun menu-bar-select-buffer ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(switch-to-buffer last-command-event))
|
|
|
|
|
|
|
|
|
|
(defun menu-bar-select-frame ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(make-frame-visible last-command-event)
|
|
|
|
|
(raise-frame last-command-event)
|
|
|
|
|
(select-frame last-command-event))
|
|
|
|
|
|
|
|
|
|
(defun menu-bar-update-buffers ()
|
1994-06-06 05:05:28 +00:00
|
|
|
|
(if (frame-or-buffer-changed-p)
|
|
|
|
|
(let ((buffers (buffer-list))
|
|
|
|
|
(frames (frame-list))
|
|
|
|
|
buffers-menu frames-menu)
|
|
|
|
|
;; If requested, list only the N most recently selected buffers.
|
|
|
|
|
(if (and (integerp buffers-menu-max-size)
|
|
|
|
|
(> buffers-menu-max-size 1))
|
|
|
|
|
(if (> (length buffers) buffers-menu-max-size)
|
|
|
|
|
(setcdr (nthcdr buffers-menu-max-size buffers) nil)))
|
|
|
|
|
|
|
|
|
|
;; Make the menu of buffers proper.
|
|
|
|
|
(setq buffers-menu
|
|
|
|
|
(cons "Select Buffer"
|
|
|
|
|
(let ((tail buffers)
|
|
|
|
|
(maxbuf 0)
|
|
|
|
|
(maxlen 0)
|
|
|
|
|
alist
|
|
|
|
|
head)
|
|
|
|
|
(while tail
|
|
|
|
|
(or (eq ?\ (aref (buffer-name (car tail)) 0))
|
|
|
|
|
(setq maxbuf
|
|
|
|
|
(max maxbuf
|
|
|
|
|
(length (buffer-name (car tail))))))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
(setq tail buffers)
|
|
|
|
|
(while tail
|
|
|
|
|
(let ((elt (car tail)))
|
|
|
|
|
(or (eq ?\ (aref (buffer-name elt) 0))
|
|
|
|
|
(setq alist (cons
|
|
|
|
|
(cons
|
|
|
|
|
(format
|
|
|
|
|
(format "%%%ds %%s%%s %%s"
|
|
|
|
|
maxbuf)
|
|
|
|
|
(buffer-name elt)
|
|
|
|
|
(if (buffer-modified-p elt)
|
|
|
|
|
"*" " ")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer elt)
|
|
|
|
|
(if buffer-read-only "%" " "))
|
|
|
|
|
(or (buffer-file-name elt)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer elt)
|
|
|
|
|
list-buffers-directory)
|
|
|
|
|
""))
|
|
|
|
|
elt)
|
|
|
|
|
alist)))
|
|
|
|
|
(and alist (> (length (car (car alist))) maxlen)
|
|
|
|
|
(setq maxlen (length (car (car alist))))))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
(setq alist (nreverse alist))
|
|
|
|
|
(nconc (mapcar '(lambda (pair)
|
|
|
|
|
;; This is somewhat risque, to use
|
|
|
|
|
;; the buffer name itself as the event
|
|
|
|
|
;; type to define, but it works.
|
|
|
|
|
;; It would not work to use the buffer
|
|
|
|
|
;; since a buffer as an event has its
|
|
|
|
|
;; own meaning.
|
|
|
|
|
(nconc (list (buffer-name (cdr pair))
|
|
|
|
|
(car pair)
|
|
|
|
|
(cons nil nil))
|
|
|
|
|
'menu-bar-select-buffer))
|
|
|
|
|
alist)
|
|
|
|
|
(list
|
|
|
|
|
(cons
|
|
|
|
|
'list-buffers
|
|
|
|
|
(cons
|
|
|
|
|
(concat (make-string (max (- (/ maxlen 2) 8) 0)
|
|
|
|
|
?\ )
|
|
|
|
|
"List All Buffers")
|
|
|
|
|
'list-buffers)))))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Make a Frames menu if we have more than one frame.
|
|
|
|
|
(if (cdr frames)
|
|
|
|
|
(setq frames-menu
|
|
|
|
|
(cons "Select Frame"
|
|
|
|
|
(mapcar '(lambda (frame)
|
|
|
|
|
(nconc (list frame
|
|
|
|
|
(cdr (assq 'name
|
|
|
|
|
(frame-parameters frame)))
|
|
|
|
|
(cons nil nil))
|
|
|
|
|
'menu-bar-select-frame))
|
|
|
|
|
frames))))
|
|
|
|
|
(if buffers-menu
|
|
|
|
|
(setq buffers-menu (cons 'keymap buffers-menu)))
|
|
|
|
|
(if frames-menu
|
|
|
|
|
(setq frames-menu (cons 'keymap frames-menu)))
|
|
|
|
|
(define-key global-map [menu-bar buffer]
|
|
|
|
|
(cons "Buffers"
|
|
|
|
|
(if (and buffers-menu frames-menu)
|
|
|
|
|
(list 'keymap "Buffers and Frames"
|
|
|
|
|
(cons 'buffers (cons "Buffers" buffers-menu))
|
|
|
|
|
(cons 'frames (cons "Frames" frames-menu)))
|
|
|
|
|
(or buffers-menu frames-menu 'undefined)))))))
|
1994-04-28 03:44:48 +00:00
|
|
|
|
|
|
|
|
|
(add-hook 'menu-bar-update-hook 'menu-bar-update-buffers)
|
1993-03-15 01:05:11 +00:00
|
|
|
|
|
1993-03-15 02:00:20 +00:00
|
|
|
|
;; this version is too slow
|
|
|
|
|
;;;(defun format-buffers-menu-line (buffer)
|
|
|
|
|
;;; "Returns a string to represent the given buffer in the Buffer menu.
|
|
|
|
|
;;;nil means the buffer shouldn't be listed. You can redefine this."
|
|
|
|
|
;;; (if (string-match "\\` " (buffer-name buffer))
|
|
|
|
|
;;; nil
|
|
|
|
|
;;; (save-excursion
|
|
|
|
|
;;; (set-buffer buffer)
|
|
|
|
|
;;; (let ((size (buffer-size)))
|
|
|
|
|
;;; (format "%s%s %-19s %6s %-15s %s"
|
|
|
|
|
;;; (if (buffer-modified-p) "*" " ")
|
|
|
|
|
;;; (if buffer-read-only "%" " ")
|
|
|
|
|
;;; (buffer-name)
|
|
|
|
|
;;; size
|
|
|
|
|
;;; mode-name
|
|
|
|
|
;;; (or (buffer-file-name) ""))))))
|
|
|
|
|
|
1994-06-25 18:20:30 +00:00
|
|
|
|
(defvar menu-bar-mode nil)
|
|
|
|
|
|
1993-05-17 04:45:03 +00:00
|
|
|
|
(defun menu-bar-mode (flag)
|
1993-05-24 05:06:35 +00:00
|
|
|
|
"Toggle display of a menu bar on each frame.
|
1993-05-17 04:45:03 +00:00
|
|
|
|
This command applies to all frames that exist and frames to be
|
|
|
|
|
created in the future.
|
|
|
|
|
With a numeric argument, if the argument is negative,
|
1993-05-24 05:06:35 +00:00
|
|
|
|
turn off menu bars; otherwise, turn on menu bars."
|
1993-08-06 21:06:10 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
|
1994-06-25 18:20:30 +00:00
|
|
|
|
;; Make menu-bar-mode and default-frame-alist consistent.
|
|
|
|
|
(let ((default (assq 'menu-bar-lines default-frame-alist)))
|
|
|
|
|
(if default
|
|
|
|
|
(setq menu-bar-mode (not (eq (cdr default) 0)))
|
|
|
|
|
(setq default-frame-alist
|
|
|
|
|
(cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
|
|
|
|
|
default-frame-alist))))
|
|
|
|
|
|
|
|
|
|
;; Toggle or set the mode, according to FLAG.
|
|
|
|
|
(setq menu-bar-mode (if (null flag) (not menu-bar-mode)
|
|
|
|
|
(> (prefix-numeric-value flag) 0)))
|
|
|
|
|
|
|
|
|
|
;; Apply it to default-frame-alist.
|
|
|
|
|
(let ((parameter (assq 'menu-bar-lines default-frame-alist)))
|
|
|
|
|
(if (consp parameter)
|
|
|
|
|
(setcdr parameter (if menu-bar-mode 1 0))
|
|
|
|
|
(setq default-frame-alist
|
|
|
|
|
(cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
|
|
|
|
|
default-frame-alist))))
|
|
|
|
|
|
|
|
|
|
;; Apply it to existing frames.
|
|
|
|
|
(let ((frames (frame-list)))
|
|
|
|
|
(while frames
|
|
|
|
|
(let ((height (cdr (assq 'height (frame-parameters (car frames))))))
|
|
|
|
|
(modify-frame-parameters (car frames)
|
|
|
|
|
(list (cons 'menu-bar-lines
|
|
|
|
|
(if menu-bar-mode 1 0))))
|
|
|
|
|
(modify-frame-parameters (car frames)
|
|
|
|
|
(list (cons 'height height))))
|
|
|
|
|
(setq frames (cdr frames)))))
|
1993-04-08 07:10:13 +00:00
|
|
|
|
|
1993-05-13 03:34:18 +00:00
|
|
|
|
(provide 'menu-bar)
|
|
|
|
|
|
1993-04-08 16:17:43 +00:00
|
|
|
|
;;; menu-bar.el ends here
|