]> code.delx.au - gnu-emacs/blob - lisp/menu-bar.el
(menu-bar-showhide-menu): Rename function for toggling.
[gnu-emacs] / lisp / menu-bar.el
1 ;;; menu-bar.el --- define a default menu bar
2
3 ;; Copyright (C) 1993, 1994, 1995, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5 ;; Author: RMS
6 ;; Maintainer: FSF
7 ;; Keywords: internal, mouse
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;; Avishai Yacobi suggested some menu rearrangements.
27
28 ;;; Commentary:
29
30 ;;; Code:
31
32 ;;; User options:
33
34 (defcustom buffers-menu-max-size 10
35 "*Maximum number of entries which may appear on the Buffers menu.
36 If this is 10, then only the ten most-recently-selected buffers are shown.
37 If this is nil, then all buffers are shown.
38 A large number or nil slows down menu responsiveness."
39 :type '(choice integer
40 (const :tag "All" nil))
41 :group 'mouse)
42
43 ;; Don't clobber an existing menu-bar keymap, to preserve any menu-bar key
44 ;; definitions made in loaddefs.el.
45 (or (lookup-key global-map [menu-bar])
46 (define-key global-map [menu-bar] (make-sparse-keymap "menu-bar")))
47 (defvar menu-bar-help-menu (make-sparse-keymap "Help"))
48
49 ;; Force Help item to come last, after the major mode's own items.
50 ;; The symbol used to be called `help', but that gets confused with the
51 ;; help key.
52 (setq menu-bar-final-items '(help-menu))
53
54 (define-key global-map [menu-bar help-menu] (cons "Help" menu-bar-help-menu))
55 (defvar menu-bar-tools-menu (make-sparse-keymap "Tools"))
56 (define-key global-map [menu-bar tools] (cons "Tools" menu-bar-tools-menu))
57 ;; This definition is just to show what this looks like.
58 ;; It gets overridden below when menu-bar-update-buffers is called.
59 (define-key global-map [menu-bar buffer]
60 (cons "Buffers" (make-sparse-keymap "Buffers")))
61 (defvar menu-bar-options-menu (make-sparse-keymap "Options"))
62 (define-key global-map [menu-bar options]
63 (cons "Options" menu-bar-options-menu))
64 (defvar menu-bar-edit-menu (make-sparse-keymap "Edit"))
65 (define-key global-map [menu-bar edit] (cons "Edit" menu-bar-edit-menu))
66 (defvar menu-bar-files-menu (make-sparse-keymap "File"))
67 (define-key global-map [menu-bar files] (cons "File" menu-bar-files-menu))
68
69 ;; This alias is for compatibility with 19.28 and before.
70 (defvar menu-bar-file-menu menu-bar-files-menu)
71 \f
72 ;; The "File" menu items
73 (define-key menu-bar-files-menu [exit-emacs]
74 '(menu-item "Exit Emacs" save-buffers-kill-emacs
75 :help "Save unsaved buffers, then exit"))
76
77 (define-key menu-bar-files-menu [separator-exit]
78 '("--"))
79
80 ;; Don't use delete-frame as event name because that is a special
81 ;; event.
82 (define-key menu-bar-files-menu [delete-this-frame]
83 '(menu-item "Delete Frame" delete-frame
84 :visible (fboundp 'delete-frame)
85 :enable (delete-frame-enabled-p)
86 :help "Delete currently selected frame"))
87 (define-key menu-bar-files-menu [make-frame-on-display]
88 '(menu-item "New Frame on Display..." make-frame-on-display
89 :visible (fboundp 'make-frame-on-display)
90 :help "Open a new frame on another display"))
91 (define-key menu-bar-files-menu [make-frame]
92 '(menu-item "New Frame" make-frame-command
93 :visible (fboundp 'make-frame-command)
94 :help "Open a new frame"))
95
96 (define-key menu-bar-files-menu [one-window]
97 '(menu-item "Unsplit Windows" delete-other-windows
98 :enable (not (one-window-p t nil))
99 :help "Make selected window fill its frame"))
100
101 (define-key menu-bar-files-menu [split-window]
102 '(menu-item "Split Window" split-window-vertically
103 :help "Split selected window in two"))
104
105 (define-key menu-bar-files-menu [separator-window]
106 '(menu-item "--"))
107
108 (define-key menu-bar-files-menu [ps-print-region]
109 '(menu-item "Postscript Print Region (B+W)" ps-print-region
110 :enable mark-active
111 :help "Pretty-print marked region in black and white to PostScript printer"))
112 (define-key menu-bar-files-menu [ps-print-buffer]
113 '(menu-item "Postscript Print Buffer (B+W)" ps-print-buffer
114 :help "Pretty-print current buffer in black and white to PostScript printer"))
115 (define-key menu-bar-files-menu [ps-print-region-faces]
116 '(menu-item "Postscript Print Region" ps-print-region-with-faces
117 :enable mark-active
118 :help "Pretty-print marked region to PostScript printer"))
119 (define-key menu-bar-files-menu [ps-print-buffer-faces]
120 '(menu-item "Postscript Print Buffer" ps-print-buffer-with-faces
121 :help "Pretty-print current buffer to PostScript printer"))
122 (define-key menu-bar-files-menu [print-region]
123 '(menu-item "Print Region" print-region
124 :enable mark-active
125 :help "Print region between mark and current position"))
126 (define-key menu-bar-files-menu [print-buffer]
127 '(menu-item "Print Buffer" print-buffer
128 :help "Print current buffer with page headings"))
129
130 (define-key menu-bar-files-menu [separator-print]
131 '(menu-item "--"))
132
133 (define-key menu-bar-files-menu [recover-session]
134 '(menu-item "Recover Crashed Session..." recover-session
135 :enable (and auto-save-list-file-prefix
136 (file-directory-p
137 (file-name-directory auto-save-list-file-prefix))
138 (directory-files
139 (file-name-directory auto-save-list-file-prefix)
140 nil
141 (concat "\\`"
142 (regexp-quote
143 (file-name-nondirectory
144 auto-save-list-file-prefix)))
145 t))
146 :help "Recover edits from a crashed session"))
147 (define-key menu-bar-files-menu [revert-buffer]
148 '(menu-item "Revert Buffer" revert-buffer
149 :enable (or revert-buffer-function
150 revert-buffer-insert-file-contents-function
151 (and (buffer-file-name)
152 (or (buffer-modified-p)
153 (not (verify-visited-file-modtime
154 (current-buffer))))))
155 :help "Re-read current buffer from its file"))
156 (define-key menu-bar-files-menu [write-file]
157 '(menu-item "Save Buffer As..." write-file
158 :enable (not (window-minibuffer-p
159 (frame-selected-window menu-updating-frame)))
160 :help "Write current buffer to another file"))
161 (define-key menu-bar-files-menu [save-buffer]
162 '(menu-item "Save (current buffer)" save-buffer
163 :enable (and (buffer-modified-p)
164 (buffer-file-name)
165 (not (window-minibuffer-p
166 (frame-selected-window menu-updating-frame))))
167 :help "Save current buffer to its file"))
168
169 (define-key menu-bar-files-menu [separator-save]
170 '(menu-item "--"))
171
172 (define-key menu-bar-files-menu [kill-buffer]
173 '(menu-item "Close (current buffer)" kill-this-buffer
174 :enable (kill-this-buffer-enabled-p)
175 :help "Discard current buffer"))
176 (define-key menu-bar-files-menu [insert-file]
177 '(menu-item "Insert File..." insert-file
178 :enable (not (window-minibuffer-p
179 (frame-selected-window menu-updating-frame)))
180 :help "Insert another file into current buffer"))
181 (define-key menu-bar-files-menu [dired]
182 '(menu-item "Open Directory..." dired
183 :help "Read a directory, operate on its files"))
184 (define-key menu-bar-files-menu [open-file]
185 '(menu-item "Open File..." find-file
186 :enable (not (window-minibuffer-p
187 (frame-selected-window menu-updating-frame)))
188 :help "Read a file into an Emacs buffer"))
189
190 \f
191 ;; The "Edit" menu items
192 (defun nonincremental-search-forward (string)
193 "Read a string and search for it nonincrementally."
194 (interactive "sSearch for string: ")
195 (if (equal string "")
196 (search-forward (car search-ring))
197 (isearch-update-ring string nil)
198 (search-forward string)))
199
200 (defun nonincremental-search-backward (string)
201 "Read a string and search backward for it nonincrementally."
202 (interactive "sSearch for string: ")
203 (if (equal string "")
204 (search-backward (car search-ring))
205 (isearch-update-ring string nil)
206 (search-backward string)))
207
208 (defun nonincremental-re-search-forward (string)
209 "Read a regular expression and search for it nonincrementally."
210 (interactive "sSearch for regexp: ")
211 (if (equal string "")
212 (re-search-forward (car regexp-search-ring))
213 (isearch-update-ring string t)
214 (re-search-forward string)))
215
216 (defun nonincremental-re-search-backward (string)
217 "Read a regular expression and search backward for it nonincrementally."
218 (interactive "sSearch for regexp: ")
219 (if (equal string "")
220 (re-search-backward (car regexp-search-ring))
221 (isearch-update-ring string t)
222 (re-search-backward string)))
223
224 (defun nonincremental-repeat-search-forward ()
225 "Search forward for the previous search string."
226 (interactive)
227 (if (null search-ring)
228 (error "No previous search"))
229 (search-forward (car search-ring)))
230
231 (defun nonincremental-repeat-search-backward ()
232 "Search backward for the previous search string."
233 (interactive)
234 (if (null search-ring)
235 (error "No previous search"))
236 (search-backward (car search-ring)))
237
238 (defun nonincremental-repeat-re-search-forward ()
239 "Search forward for the previous regular expression."
240 (interactive)
241 (if (null regexp-search-ring)
242 (error "No previous search"))
243 (re-search-forward (car regexp-search-ring)))
244
245 (defun nonincremental-repeat-re-search-backward ()
246 "Search backward for the previous regular expression."
247 (interactive)
248 (if (null regexp-search-ring)
249 (error "No previous search"))
250 (re-search-backward (car regexp-search-ring)))
251
252 (defvar menu-bar-search-menu (make-sparse-keymap "Search"))
253 (defvar menu-bar-adv-search-menu
254 (make-sparse-keymap "Advanced Search/Replace"))
255
256 (define-key menu-bar-adv-search-menu [tags-continue]
257 '(menu-item "Continue Tags Search/Replace" tags-loop-continue
258 :help "Continue last tags search/replace operation"))
259 (define-key menu-bar-adv-search-menu [tags-repl]
260 '(menu-item "Replace in all tagged files" tags-query-replace
261 :help "Interactively replace a regexp in all tagged files"))
262 (define-key menu-bar-adv-search-menu [tags-srch]
263 '(menu-item "Search in all tagged files" tags-search
264 :help "Search for a regexp in all tagged files"))
265
266 (define-key menu-bar-adv-search-menu [separator-tag-search]
267 '(menu-item "--"))
268
269 (define-key menu-bar-adv-search-menu [query-replace-regexp]
270 '(menu-item "Replace Regexp..." query-replace-regexp
271 :enable (not buffer-read-only)
272 :help "Replace regular expression, ask about each occurrence"))
273 (define-key menu-bar-adv-search-menu [repeat-regexp-back]
274 '(menu-item "Repeat Regexp Backwards"
275 nonincremental-repeat-re-search-backward
276 :enable regexp-search-ring
277 :help "Repeat last regular expression search backwards"))
278 (define-key menu-bar-adv-search-menu [repeat-regexp-fwd]
279 '(menu-item "Repeat Regexp" nonincremental-repeat-re-search-forward
280 :enable regexp-search-ring
281 :help "Repeat last regular expression search forward"))
282 (define-key menu-bar-adv-search-menu [re-search-backward]
283 '(menu-item "Search Regexp Backwards..." nonincremental-re-search-backward
284 :help "Search backwards for a regular expression"))
285 (define-key menu-bar-adv-search-menu [re-search-forward]
286 '(menu-item "Search Regexp..." nonincremental-re-search-forward
287 :help "Search forward for a regular expression"))
288 (define-key menu-bar-search-menu [re-search]
289 (list 'menu-item "Advanced Search/Replace" menu-bar-adv-search-menu
290 :help "Regexp and Tags search and replace"))
291
292 (define-key menu-bar-search-menu [query-replace]
293 '(menu-item "Replace..." query-replace
294 :enable (not buffer-read-only)
295 :help "Replace string interactively, ask about each occurrence"))
296 (define-key menu-bar-search-menu [repeat-search-back]
297 '(menu-item "Repeat Backwards" nonincremental-repeat-search-backward
298 :enable search-ring
299 :help "Repeat last search backwards"))
300 (define-key menu-bar-search-menu [repeat-search-fwd]
301 '(menu-item "Repeat Search" nonincremental-repeat-search-forward
302 :enable search-ring
303 :help "Repeat last search forward"))
304 (define-key menu-bar-search-menu [search-backward]
305 '(menu-item "Search Backwards..." nonincremental-search-backward
306 :help "Search backwards for a string"))
307 (define-key menu-bar-search-menu [search-forward]
308 '(menu-item "Search..." nonincremental-search-forward
309 :help "Search forward for a string"))
310
311 ;;; Assemble the top-level Edit menu items.
312 (define-key menu-bar-edit-menu [props]
313 '(menu-item "Text Properties" facemenu-menu
314 :help "Change properties of text in region"))
315
316 (define-key menu-bar-edit-menu [fill]
317 '(menu-item "Fill" fill-region
318 :enable (and mark-active (not buffer-read-only))
319 :help
320 "Fill text in region to fit between left and right margin"))
321
322 (define-key menu-bar-edit-menu [separator-bookmark]
323 '(menu-item "--"))
324
325 (define-key menu-bar-edit-menu [bookmark]
326 '(menu-item "Bookmarks" menu-bar-bookmark-map
327 :help "Record positions and jump between them"))
328
329 (defvar menu-bar-goto-menu (make-sparse-keymap "Go To"))
330
331 (define-key menu-bar-goto-menu [set-tags-name]
332 '(menu-item "Set Tags File Name" visit-tags-table
333 :help "Tell Tags commands which tag table file to use"))
334
335 (define-key menu-bar-goto-menu [separator-tag-file]
336 '(menu-item "--"))
337
338 (define-key menu-bar-goto-menu [apropos-tags]
339 '(menu-item "Tags Apropos" tags-apropos
340 :help "Find function/variables whose names match regexp"))
341 (define-key menu-bar-goto-menu [next-tag-otherw]
342 '(menu-item "Next Tag in Other Window"
343 (function (lambda () (find-tag-other-window nil t)))
344 :enable (and (boundp 'tags-location-ring)
345 (not (ring-empty-p tags-location-ring)))
346 :help "Find next function/variable matching last tag name in another window"))
347 (define-key menu-bar-goto-menu [next-tag]
348 '(menu-item "Find Next Tag"
349 (function (lambda () (find-tag nil t)))
350 :enable (and (boundp 'tags-location-ring)
351 (not (ring-empty-p tags-location-ring)))
352 :help "Find next function/variable matching last tag name"))
353 (define-key menu-bar-goto-menu [find-tag-otherw]
354 '(menu-item "Find Tag in Other Window..." find-tag-other-window
355 :help "Find function/variable definition in another window"))
356 (define-key menu-bar-goto-menu [find-tag]
357 '(menu-item "Find Tag..." find-tag
358 :help "Find definition of function or variable"))
359
360 (define-key menu-bar-goto-menu [separator-tags]
361 '(menu-item "--"))
362
363 (define-key menu-bar-goto-menu [end-of-buf]
364 '(menu-item "Goto End of Buffer" end-of-buffer))
365 (define-key menu-bar-goto-menu [beg-of-buf]
366 '(menu-item "Goto Beginning of Buffer" beginning-of-buffer))
367 (define-key menu-bar-goto-menu [go-to-pos]
368 '(menu-item "Goto Buffer Position..." goto-char
369 :help "Read a number N and go to buffer position N"))
370 (define-key menu-bar-goto-menu [go-to-line]
371 '(menu-item "Goto Line..." goto-line
372 :help "Read a line number and go to that line"))
373
374 (define-key menu-bar-edit-menu [goto]
375 (list 'menu-item "Go To" menu-bar-goto-menu))
376
377 (define-key menu-bar-edit-menu [search]
378 (list 'menu-item "Search" menu-bar-search-menu))
379
380 (define-key menu-bar-edit-menu [separator-search]
381 '(menu-item "--"))
382
383 (define-key menu-bar-edit-menu [mark-whole-buffer]
384 '(menu-item "Select All" mark-whole-buffer
385 :help "Mark the whole buffer for a subsequent cut/copy."))
386 (define-key menu-bar-edit-menu [clear]
387 '(menu-item "Clear" delete-region
388 :enable (and mark-active
389 (not buffer-read-only)
390 (not (mouse-region-match)))
391 :help
392 "Delete the text in region between mark and current position"))
393 (defvar yank-menu (cons "Select Yank" nil))
394 (fset 'yank-menu (cons 'keymap yank-menu))
395 (define-key menu-bar-edit-menu [select-paste]
396 '(menu-item "Select and Paste" yank-menu
397 :enable (and (cdr yank-menu) (not buffer-read-only))
398 :help "Paste (yank) text cut or copied earlier"))
399 (define-key menu-bar-edit-menu [paste]
400 '(menu-item "Paste" yank
401 :enable (and
402 ;; Emacs compiled --without-x doesn't have
403 ;; x-selection-exists-p.
404 (fboundp 'x-selection-exists-p)
405 (x-selection-exists-p) (not buffer-read-only))
406 :help "Paste (yank) text most recently cut/copied"))
407 (define-key menu-bar-edit-menu [copy]
408 '(menu-item "Copy" menu-bar-kill-ring-save
409 :enable mark-active
410 :help "Copy text in region between mark and current position"
411 :keys "\\[kill-ring-save]"))
412 (define-key menu-bar-edit-menu [cut]
413 '(menu-item "Cut" kill-region
414 :enable (and mark-active (not buffer-read-only))
415 :help
416 "Cut (kill) text in region between mark and current position"))
417 (define-key menu-bar-edit-menu [undo]
418 '(menu-item "Undo" undo
419 :enable (and (not buffer-read-only)
420 (not (eq t buffer-undo-list))
421 (if (eq last-command 'undo)
422 pending-undo-list
423 (consp buffer-undo-list)))
424 :help "Undo last operation"))
425
426
427 (defun menu-bar-kill-ring-save (beg end)
428 (interactive "r")
429 (if (mouse-region-match)
430 (message "Selecting a region with the mouse does `copy' automatically")
431 (kill-ring-save beg end)))
432
433 (autoload 'ispell-menu-map "ispell" nil t 'keymap)
434
435 ;; These are alternative definitions for the cut, paste and copy
436 ;; menu items. Use them if your system expects these to use the clipboard.
437
438 (put 'clipboard-kill-region 'menu-enable 'mark-active)
439 (put 'clipboard-kill-ring-save 'menu-enable 'mark-active)
440 (put 'clipboard-yank 'menu-enable
441 '(or (and (fboundp 'x-selection-exists-p) (x-selection-exists-p))
442 (x-selection-exists-p 'CLIPBOARD)))
443
444 (defun clipboard-yank ()
445 "Insert the clipboard contents, or the last stretch of killed text."
446 (interactive)
447 (let ((x-select-enable-clipboard t))
448 (yank)))
449
450 (defun clipboard-kill-ring-save (beg end)
451 "Copy region to kill ring, and save in the X clipboard."
452 (interactive "r")
453 (let ((x-select-enable-clipboard t))
454 (kill-ring-save beg end)))
455
456 (defun clipboard-kill-region (beg end)
457 "Kill the region, and save it in the X clipboard."
458 (interactive "r")
459 (let ((x-select-enable-clipboard t))
460 (kill-region beg end)))
461
462 (defun menu-bar-enable-clipboard ()
463 "Make CUT, PASTE and COPY (keys and menu bar items) use the clipboard.
464 Do the same for the keys of the same name."
465 (interactive)
466 ;; We can't use constant list structure here because it becomes pure,
467 ;; and because it gets modified with cache data.
468 (define-key menu-bar-edit-menu [paste]
469 (cons "Paste" (cons "Paste text from clipboard" 'clipboard-yank)))
470 (define-key menu-bar-edit-menu [copy]
471 (cons "Copy" (cons "Copy text in region to the clipboard"
472 'clipboard-kill-ring-save)))
473 (define-key menu-bar-edit-menu [cut]
474 (cons "Cut" (cons "Delete text in region and copy it to the clipboard"
475 'clipboard-kill-region)))
476
477 (define-key global-map [f20] 'clipboard-kill-region)
478 (define-key global-map [f16] 'clipboard-kill-ring-save)
479 (define-key global-map [f18] 'clipboard-yank)
480 ;; X11R6 versions
481 (define-key global-map [cut] 'clipboard-kill-region)
482 (define-key global-map [copy] 'clipboard-kill-ring-save)
483 (define-key global-map [paste] 'clipboard-yank))
484 \f
485 ;; The "Options" menu items
486
487 (defvar menu-bar-custom-menu (make-sparse-keymap "Customize"))
488
489 (define-key menu-bar-custom-menu [customize-apropos-groups]
490 '(menu-item "Groups Matching Regexp..." customize-apropos-groups
491 :help "Browse groups whose names match regexp"))
492 (define-key menu-bar-custom-menu [customize-apropos-faces]
493 '(menu-item "Faces Matching Regexp..." customize-apropos-faces
494 :help "Browse faces whose names match regexp"))
495 (define-key menu-bar-custom-menu [customize-apropos-options]
496 '(menu-item "Options Matching Regexp..." customize-apropos-options
497 :help "Browse options whose names match regexp"))
498 (define-key menu-bar-custom-menu [customize-apropos]
499 '(menu-item "Settings Matching Regexp..." customize-apropos
500 :help "Browse customizable settings whose names match regexp"))
501 (define-key menu-bar-custom-menu [separator-2]
502 '("--"))
503 (define-key menu-bar-custom-menu [customize-group]
504 '(menu-item "Specific Group..." customize-group
505 :help "Customize settings of specific group"))
506 (define-key menu-bar-custom-menu [customize-face]
507 '(menu-item "Specific Face..." customize-face
508 :help "Customize attributes of specific face"))
509 (define-key menu-bar-custom-menu [customize-option]
510 '(menu-item "Specific Option..." customize-option
511 :help "Change value of specific option"))
512 (define-key menu-bar-custom-menu [customize-changed-options]
513 '(menu-item "Recently Changed Options..." customize-changed-options
514 :help "Customize options changed in recent versions"))
515 (define-key menu-bar-custom-menu [separator-3]
516 '("--"))
517 (define-key menu-bar-custom-menu [customize-browse]
518 '(menu-item "Browse Customization Groups" customize-browse
519 :help "Browse all customization groups"))
520 (define-key menu-bar-custom-menu [customize]
521 '(menu-item "Top-level Customization Group" customize
522 :help "The master group called `Emacs'"))
523
524 ;(defvar menu-bar-preferences-menu (make-sparse-keymap "Preferences"))
525
526 (defmacro menu-bar-make-toggle (name variable doc message help &rest body)
527 `(progn
528 (defun ,name ()
529 ,(concat "Toggle whether to " (downcase (substring help 0 1))
530 (substring help 1) ".")
531 (interactive)
532 (if ,(if body `(progn . ,body)
533 `(setq ,variable (not ,variable)))
534 (message ,message "enabled")
535 (message ,message "disabled")))
536 '(menu-item ,doc ,name
537 :help ,help
538 :button (:toggle . (and (boundp ',variable) ,variable)))))
539
540 ;;; Assemble all the top-level items of the "Options" menu
541 (define-key menu-bar-options-menu [customize]
542 (list 'menu-item "Customize Emacs" menu-bar-custom-menu
543 :help "Full customization of every Emacs feature"))
544
545 (defun menu-bar-options-save ()
546 "Save current values of Options menu items using Custom."
547 (interactive)
548 (let ((need-save nil))
549 (dolist (elt '(debug-on-quit debug-on-error auto-compression-mode
550 case-fold-search truncate-lines show-paren-mode
551 transient-mark-mode global-font-lock-mode
552 current-language-environment default-input-method
553 default-frame-alist display-time-mode
554 line-number-mode column-number-mode))
555 (when (customize-mark-to-save elt)
556 (setq need-save t)))
557 ;; We only want to save text-mode-hook after adding or removing auto fill.
558 (and (or (memq 'turn-on-auto-fill text-mode-hook) ;Added.
559 ;; If it is already saved, it is safe to save.
560 (get 'text-mode-hook 'saved-value)) ;Maybe removed.
561 (customize-mark-to-save 'text-mode-hook)
562 (setq need-save t))
563 ;; Avoid loading extra libraries.
564 (and (featurep 'saveplace)
565 (customize-mark-to-save 'save-place)
566 (setq need-save t))
567 (and (featurep 'uniquify)
568 (customize-mark-to-save 'uniquify-buffer-name-style)
569 (setq need-save t))
570 ;; Save if we changed anything.
571 (when need-save
572 (custom-save-all))))
573
574 (define-key menu-bar-options-menu [save]
575 '(menu-item "Save Options" menu-bar-options-save
576 :help "Save options set from the menu above"))
577
578 (define-key menu-bar-options-menu [custom-separator]
579 '("--"))
580
581 ;; The "Show/Hide" submenu of menu "Options"
582
583 (defvar menu-bar-showhide-menu (make-sparse-keymap "Show/Hide"))
584
585 (define-key menu-bar-showhide-menu [column-number-mode]
586 (menu-bar-make-toggle toggle-column-number-mode column-number-mode
587 "Show Column Number" "Column number mode %s"
588 "Show the current column number in the mode-line"))
589
590 (define-key menu-bar-showhide-menu [line-number-mode]
591 (menu-bar-make-toggle toggle-line-number-mode line-number-mode
592 "Show Line Number" "Line number mode %s"
593 "Show the current line number in the mode-line"))
594
595 (define-key menu-bar-showhide-menu [linecolumn-separator]
596 '("--"))
597
598 (defun showhide-date-time ()
599 "Toggle whether to show date and time in the mode-line."
600 (interactive)
601 (if (display-time-mode)
602 (message "Display-time mode enabled.")
603 (message "Display-time mode disabled.")))
604
605 (define-key menu-bar-showhide-menu [showhide-date-time]
606 '(menu-item "Date and time" showhide-date-time
607 :help "Display date and time in the mode-line"
608 :button (:toggle . display-time-mode)))
609
610 (define-key menu-bar-showhide-menu [datetime-separator]
611 '("--"))
612
613 (defvar menu-bar-showhide-scroll-bar-menu (make-sparse-keymap "Scroll-bar"))
614
615 (defun menu-bar-scroll-bar-right ()
616 "Turn on the scroll-bar on the right side."
617 (interactive)
618 (set-scroll-bar-mode 'right))
619
620 (defun menu-bar-scroll-bar-left ()
621 "Turn on the scroll-bar on the left side."
622 (interactive)
623 (set-scroll-bar-mode 'left))
624
625 (defun menu-bar-scroll-bar-none ()
626 "Turn off the scroll-bar."
627 (interactive)
628 (set-scroll-bar-mode nil))
629
630 (define-key menu-bar-showhide-scroll-bar-menu [right]
631 '(menu-item "On the Right" menu-bar-scroll-bar-right
632 :help "Scroll-bar on the right side"
633 :visible window-system
634 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars (frame-parameters))) 'right))))
635
636 (define-key menu-bar-showhide-scroll-bar-menu [left]
637 '(menu-item "On the Left" menu-bar-scroll-bar-left
638 :help "Scroll-bar on the left side"
639 :visible window-system
640 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars (frame-parameters))) 'left))))
641
642 (define-key menu-bar-showhide-scroll-bar-menu [none]
643 '(menu-item "None" menu-bar-scroll-bar-none
644 :help "Turn off scroll-bar"
645 :visible window-system
646 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars (frame-parameters))) nil))))
647
648 (define-key menu-bar-showhide-menu [showhide-scroll-bar]
649 (list 'menu-item "Scroll-Bar" menu-bar-showhide-scroll-bar-menu
650 :visible 'window-system
651 :help "Select scroll-bar mode"))
652
653 (defun showhide-menu-bar ()
654 "Toggle whether to turn menu-bar on/off."
655 (interactive)
656 (menu-bar-mode)
657 (if menu-bar-mode
658 (message "Menu-bar mode enabled.")
659 (message "Menu-bar mode disabled. Use M-x menu-bar-mode to make the menu bar appear.")))
660
661 (define-key menu-bar-showhide-menu [showhide-menu-bar]
662 '(menu-item "Menu-bar" showhide-menu-bar
663 :help "Toggle menu-bar on/off"
664 :button (:toggle . menu-bar-mode)))
665
666 (defun showhide-tool-bar ()
667 "Toggle whether to turn tool-bar on/off."
668 (interactive)
669 (if (tool-bar-mode)
670 (message "Tool-bar mode enabled.")
671 (message "Tool-bar mode disabled.")))
672
673 (define-key menu-bar-showhide-menu [showhide-tool-bar]
674 '(menu-item "Tool-bar" showhide-tool-bar
675 :help "Turn tool-bar on/off"
676 :visible window-system
677 :button (:toggle . tool-bar-mode)))
678
679 (define-key menu-bar-options-menu [showhide]
680 (list 'menu-item "Show/Hide" menu-bar-showhide-menu
681 :help "Toggle on/off various display features"))
682
683 (define-key menu-bar-options-menu [showhide-separator]
684 '("--"))
685
686 (define-key menu-bar-options-menu [mule]
687 ;; It is better not to use backquote here,
688 ;; because that makes a bootstrapping problem
689 ;; if you need to recompile all the Lisp files using interpreted code.
690 (list 'menu-item "Mule (Multilingual Environment)" mule-menu-keymap
691 ;; Most of the MULE menu actually does make sense in unibyte mode,
692 ;; e.g. language selection.
693 ;;; ':visible 'default-enable-multibyte-characters
694 ':help "Default language, encodings, input method"))
695 ;(setq menu-bar-final-items (cons 'mule menu-bar-final-items))
696 ;(define-key menu-bar-options-menu [preferences]
697 ; (list 'menu-item "Preferences" menu-bar-preferences-menu
698 ; :help "Toggle important global options"))
699
700 (define-key menu-bar-options-menu [mule-separator]
701 '("--"))
702
703 (define-key menu-bar-options-menu [debug-on-quit]
704 (menu-bar-make-toggle toggle-debug-on-quit debug-on-quit
705 "Enter Debugger on Quit/C-g" "Debug on Quit %s"
706 "Enter Lisp debugger when C-g is pressed"))
707 (define-key menu-bar-options-menu [debug-on-error]
708 (menu-bar-make-toggle toggle-debug-on-error debug-on-error
709 "Enter Debugger on Error" "Debug on Error %s"
710 "Enter Lisp debugger when an error is signaled"))
711 (define-key menu-bar-options-menu [debugger-separator]
712 '("--"))
713 (define-key menu-bar-options-menu [toggle-auto-compression]
714 '(menu-item "Automatic File De/compression"
715 auto-compression-mode
716 :help "Transparently decompress compressed files"
717 :button (:toggle . (rassq 'jka-compr-handler
718 file-name-handler-alist))))
719 (define-key menu-bar-options-menu [save-place]
720 (menu-bar-make-toggle toggle-save-place-globally save-place
721 "Save Place in Files between Sessions"
722 "Saving place in files %s"
723 "Save Emacs state for next session"
724 (require 'saveplace)
725 (setq-default save-place
726 (not (default-value save-place)))))
727 (define-key menu-bar-options-menu [uniquify]
728 (menu-bar-make-toggle toggle-uniquify-buffer-names uniquify-buffer-name-style
729 "Use Directory Names in Buffer Names"
730 "Directory name in buffer names (uniquify) %s"
731 "Uniquify buffer names by adding parent directory names"
732 (require 'uniquify)
733 (setq uniquify-buffer-name-style
734 (if (not uniquify-buffer-name-style)
735 'forward))))
736 (define-key menu-bar-options-menu [edit-options-separator]
737 '("--"))
738 (define-key menu-bar-options-menu [case-fold-search]
739 (menu-bar-make-toggle toggle-case-fold-search case-fold-search
740 "Case-Insensitive Search"
741 "Case-Insensitive Search %s"
742 "Ignore letter-case in search"))
743 (define-key menu-bar-options-menu [auto-fill-mode]
744 '(menu-item "Word Wrap in Text Modes (Auto Fill)"
745 toggle-text-mode-auto-fill
746 :help "Automatically fill text between left and right margins"
747 :button (:toggle . (member 'turn-on-auto-fill text-mode-hook))))
748 (define-key menu-bar-options-menu [truncate-lines]
749 (menu-bar-make-toggle
750 toggle-truncate-lines truncate-lines
751 "Truncate Long Lines in this Buffer" "Long Line Truncation %s"
752 "Truncate long lines on the screen"
753 (prog1 (setq truncate-lines (not truncate-lines))
754 (set-buffer-modified-p (buffer-modified-p)))))
755 (define-key menu-bar-options-menu [highlight-separator]
756 '("--"))
757 (define-key menu-bar-options-menu [highlight-paren-mode]
758 (menu-bar-make-toggle toggle-highlight-paren-mode show-paren-mode
759 "Paren Match Highlighting (Show Paren mode)"
760 "Show Paren mode %s"
761 "Highlight matching/mismatched parentheses at cursor"
762 (show-paren-mode)))
763 (define-key menu-bar-options-menu [transient-mark-mode]
764 (menu-bar-make-toggle toggle-transient-mark-mode transient-mark-mode
765 "Active Region Highlighting (Transient Mark mode)"
766 "Transient Mark mode %s"
767 "Make text in active region stand out in color"))
768 (define-key menu-bar-options-menu [toggle-global-lazy-font-lock-mode]
769 (menu-bar-make-toggle toggle-global-lazy-font-lock-mode global-font-lock-mode
770 "Syntax Highlighting (Global Font Lock mode)"
771 "Global Font Lock mode %s"
772 "Colorize text based on language syntax"
773 (global-font-lock-mode)))
774
775 \f
776 ;; The "Tools" menu items
777
778 (defun send-mail-item-name ()
779 (let* ((known-send-mail-commands '((sendmail-user-agent . "sendmail")
780 (mh-e-user-agent . "MH")
781 (message-user-agent . "Gnus Message")
782 (gnus-user-agent . "Gnus")))
783 (name (assq mail-user-agent known-send-mail-commands)))
784 (if name
785 (setq name (cdr name))
786 (setq name (symbol-name mail-user-agent))
787 (if (string-match "\\(.+\\)-user-agent" name)
788 (setq name (match-string 1 name))))
789 name))
790
791 (defun read-mail-item-name ()
792 (let* ((known-rmail-commands '((rmail . "RMAIL")
793 (mh-rmail . "MH")
794 (gnus . "Gnus")))
795 (known (assq read-mail-command known-rmail-commands)))
796 (if known (cdr known) (symbol-name read-mail-command))))
797
798 (defvar menu-bar-games-menu (make-sparse-keymap "Games"))
799
800 (define-key menu-bar-tools-menu [games]
801 (list 'menu-item "Games" menu-bar-games-menu))
802
803 (define-key menu-bar-tools-menu [separator-games]
804 '("--"))
805
806 (define-key menu-bar-games-menu [zone]
807 '(menu-item "Zone Out" zone
808 :help "Play tricks with Emacs display when Emacs is idle"))
809 (define-key menu-bar-games-menu [yow]
810 '(menu-item "Random Quotation" yow
811 :help "Display a random Zippy quotation"))
812 (define-key menu-bar-games-menu [tetris]
813 '(menu-item "Tetris" tetris))
814 (define-key menu-bar-games-menu [solitaire]
815 '(menu-item "Solitaire" solitaire))
816 (define-key menu-bar-games-menu [snake]
817 '(menu-item "Snake" snake
818 :help "Move snake around avoiding collisions"))
819 (define-key menu-bar-games-menu [mult]
820 '(menu-item "Multiplication Puzzle" mpuz
821 :help "Excercise brain with multiplication"))
822 (define-key menu-bar-games-menu [life]
823 '(menu-item "Life" life
824 :help "Watch how John Conway's cellular automaton evolves"))
825 (define-key menu-bar-games-menu [hanoi]
826 '(menu-item "Towers of Hanoi" hanoi
827 :help "Watch Towers-of-Hanoi puzzle solved by Emacs"))
828 (define-key menu-bar-games-menu [gomoku]
829 '(menu-item "Gomoku" gomoku
830 :help "Mark 5 contiguous squares (like tic-tac-toe)"))
831 (define-key menu-bar-games-menu [black-box]
832 '(menu-item "Blackbox" blackbox
833 :help "Find balls in a black box by shooting rays"))
834 (define-key menu-bar-games-menu [adventure]
835 '(menu-item "Adventure" dunnet
836 :help "Dunnet, a text Adventure game for Emacs"))
837 (define-key menu-bar-games-menu [5x5]
838 '(menu-item "5x5" 5x5
839 :help "Fill in all the squares on a 5x5 board"))
840
841 (define-key menu-bar-tools-menu [calendar]
842 '(menu-item "Display Calendar" calendar))
843 (define-key menu-bar-tools-menu [speedbar]
844 '(menu-item "Display Speedbar" speedbar-frame-mode))
845 (define-key menu-bar-tools-menu [directory-search]
846 '(menu-item "Directory Search" eudc-tools-menu
847 :help "Query directory servers via LDAP, CCSO PH/QI or BBDB"))
848 (define-key menu-bar-tools-menu [compose-mail]
849 (list
850 'menu-item `(format "Send Mail (with %s)" (send-mail-item-name))
851 'compose-mail
852 :visible `(and mail-user-agent (not (eq mail-user-agent 'ignore)))
853 :help "Send a mail message"))
854 (define-key menu-bar-tools-menu [rmail]
855 (list
856 'menu-item `(format "Read Mail (with %s)" (read-mail-item-name))
857 (lambda ()
858 (interactive)
859 (call-interactively read-mail-command))
860 :visible `(and read-mail-command (not (eq read-mail-command 'ignore)))
861 :help "Read your mail and reply to it"))
862 (define-key menu-bar-tools-menu [gnus]
863 '(menu-item "Read Net News (Gnus)" gnus
864 :help "Read network news groups"))
865
866 (define-key menu-bar-tools-menu [separator-vc]
867 '("--"))
868
869 (defvar vc-menu-map (make-sparse-keymap "Version Control"))
870 (define-key menu-bar-tools-menu [pcl-cvs]
871 `(menu-item "PCL-CVS" ,cvs-global-menu
872 :help "Module-level interface to CVS"))
873 (define-key menu-bar-tools-menu [vc]
874 (list 'menu-item "Version Control" vc-menu-map
875 :help "Interface to RCS, CVS, SCCS"))
876
877 (define-key menu-bar-tools-menu [separator-compare]
878 '("--"))
879
880 (define-key menu-bar-tools-menu [ediff-misc]
881 '(menu-item "Ediff Miscellanea" menu-bar-ediff-misc-menu
882 :help "Ediff manual, customization, sessions, etc."))
883 (define-key menu-bar-tools-menu [epatch]
884 '(menu-item "Apply Patch" menu-bar-epatch-menu))
885 (define-key menu-bar-tools-menu [ediff-merge]
886 '(menu-item "Merge" menu-bar-ediff-merge-menu
887 :help "Merge different revisions of files/directories"))
888 (define-key menu-bar-tools-menu [compare]
889 '(menu-item "Compare (Ediff)" menu-bar-ediff-menu
890 :help "Display differences between files/directories"))
891
892
893 (define-key menu-bar-tools-menu [separator-spell]
894 '("--"))
895
896 (define-key menu-bar-tools-menu [spell]
897 '(menu-item "Spell Checking" ispell-menu-map))
898
899 (define-key menu-bar-tools-menu [separator-prog]
900 '("--"))
901
902 (define-key menu-bar-tools-menu [gdb]
903 '(menu-item "Debugger (GUD)..." gdb
904 :help "Debug a program from within Emacs"))
905 (define-key menu-bar-tools-menu [shell-on-region]
906 '(menu-item "Shell Command on Region..." shell-command-on-region
907 :enable mark-active
908 :help "Pass marked region to a shell command"))
909 (define-key menu-bar-tools-menu [shell]
910 '(menu-item "Shell Command..." shell-command
911 :help "Invoke a shell command and catch its output"))
912 (define-key menu-bar-tools-menu [compile]
913 '(menu-item "Compile..." compile
914 :help "Invoke compiler or Make, view compilation errors"))
915 (define-key menu-bar-tools-menu [grep]
916 '(menu-item "Search Files (Grep)..." grep
917 :help "Search files for strings or regexps (with Grep)"))
918
919 \f
920 ;; The "Help" menu items
921
922 (defvar menu-bar-describe-menu (make-sparse-keymap "Describe"))
923
924 (define-key menu-bar-describe-menu [mule-diag]
925 '(menu-item "Show All of Mule Status" mule-diag
926 :visible default-enable-multibyte-characters
927 :help "Display multilingual environment settings"))
928 (define-key menu-bar-describe-menu [describe-coding-system-briefly]
929 '(menu-item "Describe Coding System (Briefly)..."
930 describe-current-coding-system-briefly
931 :visible default-enable-multibyte-characters))
932 (define-key menu-bar-describe-menu [describe-coding-system]
933 '(menu-item "Describe Coding System..." describe-coding-system
934 :visible default-enable-multibyte-characters))
935 (define-key menu-bar-describe-menu [describe-input-method]
936 '(menu-item "Describe Input Method..." describe-input-method
937 :visible default-enable-multibyte-characters
938 :help "Keyboard layout for specific input method"))
939 (define-key menu-bar-describe-menu [describe-language-environment]
940 (list 'menu-item "Describe Language Environment"
941 describe-language-environment-map
942 :help "Show multilingual settings for a specific language"))
943
944 (define-key menu-bar-describe-menu [separator-desc-mule]
945 '("--"))
946
947 (define-key menu-bar-describe-menu [list-keybindings]
948 '(menu-item "List Key Bindings" describe-bindings
949 :help "Display a list of all current keybindings"))
950 (define-key menu-bar-describe-menu [describe-current-display-table]
951 '(menu-item "Describe Display Table" describe-current-display-table
952 :help "Describe the current display table"))
953 (define-key menu-bar-describe-menu [describe-face]
954 '(menu-item "Describe Face..." describe-face
955 :help "Display the properties of a face"))
956 (define-key menu-bar-describe-menu [describe-variable]
957 '(menu-item "Describe Variable..." describe-variable
958 :help "Display documentation of variable/option"))
959 (define-key menu-bar-describe-menu [describe-function]
960 '(menu-item "Describe Function..." describe-function
961 :help "Display documentation of function/command"))
962 (define-key menu-bar-describe-menu [describe-key]
963 '(menu-item "Describe Key..." describe-key
964 ;; Users typically don't identify keys and menu items...
965 :help "Display documentation of command bound to a \
966 key (or menu-item)"))
967 (define-key menu-bar-describe-menu [describe-mode]
968 '(menu-item "Describe Buffer Modes" describe-mode
969 :help "Describe this buffer's major and minor mode"))
970
971 (defvar menu-bar-apropos-menu (make-sparse-keymap "Apropos"))
972 (defun menu-bar-read-lispref ()
973 "Display the Emacs Lisp Reference manual in Info mode."
974 (interactive)
975 (info "elisp"))
976
977 (defun menu-bar-read-lispintro ()
978 "Display the Introduction to Emacs Lisp Programming in Info mode."
979 (interactive)
980 (info "eintr"))
981
982 (defun menu-bar-read-emacs-man ()
983 "Display Emacs User Manual in Info mode."
984 (interactive)
985 (info "emacs"))
986
987 (defun search-emacs-glossary ()
988 "Display the Glossary node of the Emacs manual in Info mode."
989 (interactive)
990 (info "(emacs)Glossary"))
991
992 (defun emacs-index-search (topic)
993 "Look up TOPIC in the indices of the Emacs User Manual."
994 (interactive "sSubject to look up: ")
995 (info "emacs")
996 (Info-index topic))
997
998 (defun elisp-index-search (topic)
999 "Look up TOPIC in the indices of the Emacs Lisp Reference Manual."
1000 (interactive "sSubject to look up: ")
1001 (info "elisp")
1002 (Info-index topic))
1003
1004 (define-key menu-bar-apropos-menu [apropos-documentation]
1005 '(menu-item "Search Documentation Strings..." apropos-documentation
1006 :help
1007 "Find functions and variables whose doc strings match a regexp"))
1008 (define-key menu-bar-apropos-menu [apropos]
1009 '(menu-item "Find Any Object by Name..." apropos
1010 :help "Find symbols of any kind whose names match a regexp"))
1011 (define-key menu-bar-apropos-menu [apropos-value]
1012 '(menu-item "Find Options by Value..." apropos-value
1013 :help "Find variables whose values match a regexp"))
1014 (define-key menu-bar-apropos-menu [apropos-variables]
1015 '(menu-item "Find Options by Name..." apropos-variable
1016 :help "Find variables whose names match a regexp"))
1017 (define-key menu-bar-apropos-menu [apropos-commands]
1018 '(menu-item "Find Commands by Name..." apropos-command
1019 :help "Find commands whose names match a regexp"))
1020 (define-key menu-bar-apropos-menu [sep1]
1021 '("--"))
1022 (define-key menu-bar-apropos-menu [elisp-index-search]
1023 '(menu-item "Look Up Subject in ELisp Manual..." elisp-index-search
1024 :help "Find description of a subject in Emacs Lisp manual"))
1025 (define-key menu-bar-apropos-menu [emacs-index-search]
1026 '(menu-item "Look Up Subject in User Manual..." emacs-index-search
1027 :help "Find description of a subject in Emacs User manual"))
1028 (define-key menu-bar-apropos-menu [emacs-glossary]
1029 '(menu-item "Emacs Terminology" search-emacs-glossary
1030 :help "Display the Glossary section of the Emacs manual"))
1031
1032 (defvar menu-bar-manuals-menu (make-sparse-keymap "More Manuals"))
1033
1034 (define-key menu-bar-manuals-menu [man]
1035 '(menu-item "Read Man Page..." manual-entry
1036 :help "Man-page docs for external commands and libraries"))
1037 (define-key menu-bar-manuals-menu [sep2]
1038 '("--"))
1039 (define-key menu-bar-manuals-menu [order-emacs-manuals]
1040 '(menu-item "Ordering Manuals" view-order-manuals
1041 :help "How to order manuals from the Free Software Foundation"))
1042 (define-key menu-bar-manuals-menu [info]
1043 '(menu-item "All Other Manuals (Info)" Info-directory
1044 :help "Read any of the installed manuals"))
1045 (define-key menu-bar-manuals-menu [info-elisp]
1046 '(menu-item "Emacs Lisp Reference" menu-bar-read-lispref
1047 :help "Read the Emacs Lisp Reference manual"))
1048 (define-key menu-bar-manuals-menu [info-elintro]
1049 '(menu-item "Introduction to Emacs Lisp" menu-bar-read-lispintro
1050 :help "Read the Introduction to Emacs Lisp Programming"))
1051 (define-key menu-bar-manuals-menu [sep3]
1052 '("--"))
1053 (define-key menu-bar-manuals-menu [command]
1054 '(menu-item "Find Command in Manual" Info-goto-emacs-command-node
1055 :help "Display manual section that describes a command"))
1056 (define-key menu-bar-manuals-menu [key]
1057 '(menu-item "Find Key in Manual" Info-goto-emacs-key-command-node
1058 :help "Display manual section that describes a key"))
1059
1060 (define-key menu-bar-help-menu [eliza]
1061 '(menu-item "Emacs Psychiatrist" doctor
1062 :help "Our doctor will help you feel better"))
1063 (define-key menu-bar-help-menu [sep4]
1064 '("--"))
1065 (define-key menu-bar-help-menu [describe-no-warranty]
1066 '(menu-item "(Non)Warranty" describe-no-warranty
1067 :help "Explain that Emacs has NO WARRANTY"))
1068 (define-key menu-bar-help-menu [describe-copying]
1069 '(menu-item "Copying Conditions" describe-copying
1070 :help "Show the Emacs license (GPL)"))
1071 (define-key menu-bar-help-menu [describe-distribution]
1072 '(menu-item "Getting New Versions" describe-distribution
1073 :help "How to get latest versions of Emacs"))
1074 (define-key menu-bar-help-menu [more]
1075 '(menu-item "Find Extra Packages"
1076 (lambda ()
1077 (interactive)
1078 (let (enable-local-variables)
1079 (view-file (expand-file-name "MORE.STUFF"
1080 data-directory))
1081 (goto-address)))
1082 :help "Where to find some extra packages and possible updates"))
1083 (define-key menu-bar-help-menu [about]
1084 '(menu-item "About Emacs" display-splash-screen
1085 :help "Display version number, copyright info, and basic help"))
1086 (define-key menu-bar-help-menu [sep2]
1087 '("--"))
1088 (define-key menu-bar-help-menu [finder-by-keyword]
1089 '(menu-item "Find Emacs Packages..." finder-by-keyword
1090 :help "Find packages and features by keyword"))
1091 (define-key menu-bar-help-menu [manuals]
1092 (list 'menu-item "More Manuals" menu-bar-manuals-menu
1093 :help "Search and browse on-line manuals"))
1094 (define-key menu-bar-help-menu [emacs-manual]
1095 '(menu-item "Read the Emacs Manual" menu-bar-read-emacs-man
1096 :help "Full documentation of Emacs features"))
1097 (define-key menu-bar-help-menu [describe]
1098 (list 'menu-item "Describe" menu-bar-describe-menu
1099 :help "Describe commands, variables, keys"))
1100 (define-key menu-bar-help-menu [apropos]
1101 (list 'menu-item "Search Documentation" menu-bar-apropos-menu
1102 :help "Look up terms, find commands, options, etc. (Apropos)"))
1103 (define-key menu-bar-help-menu [sep1]
1104 '("--"))
1105 (define-key menu-bar-help-menu [report-emacs-bug]
1106 '(menu-item "Send Bug Report..." report-emacs-bug
1107 :help "Send e-mail to Emacs maintainers"))
1108 (define-key menu-bar-help-menu [emacs-problems]
1109 '(menu-item "Emacs Known Problems" view-emacs-problems))
1110 (define-key menu-bar-help-menu [emacs-news]
1111 '(menu-item "Emacs News" view-emacs-news
1112 :help "New features of this version"))
1113 (define-key menu-bar-help-menu [emacs-faq]
1114 '(menu-item "Emacs FAQ" view-emacs-FAQ))
1115 (define-key menu-bar-help-menu [emacs-tutorial-language-specific]
1116 '(menu-item "Emacs Tutorial (choose language)..."
1117 (lambda () (interactive) (help-with-tutorial t))
1118 :help "Learn how to use Emacs (choose a language)"))
1119 (define-key menu-bar-help-menu [emacs-tutorial]
1120 '(menu-item "Emacs Tutorial" help-with-tutorial
1121 :help "Learn how to use Emacs"))
1122
1123 (defun kill-this-buffer () ; for the menubar
1124 "Kill the current buffer."
1125 (interactive)
1126 (kill-buffer (current-buffer)))
1127
1128 (defun kill-this-buffer-enabled-p ()
1129 (let ((count 0)
1130 (buffers (buffer-list)))
1131 (while buffers
1132 (or (string-match "^ " (buffer-name (car buffers)))
1133 (setq count (1+ count)))
1134 (setq buffers (cdr buffers)))
1135 (and (not (window-minibuffer-p (frame-selected-window menu-updating-frame)))
1136 (> count 1))))
1137
1138 (put 'dired 'menu-enable
1139 '(not (window-minibuffer-p (frame-selected-window menu-updating-frame))))
1140
1141 ;; Permit deleting frame if it would leave a visible or iconified frame.
1142 (defun delete-frame-enabled-p ()
1143 "Return non-nil if `delete-frame' should be enabled in the menu bar."
1144 (let ((frames (frame-list))
1145 (count 0))
1146 (while frames
1147 (if (frame-visible-p (car frames))
1148 (setq count (1+ count)))
1149 (setq frames (cdr frames)))
1150 (> count 1)))
1151
1152 (defcustom yank-menu-length 20
1153 "*Maximum length to display in the yank-menu."
1154 :type 'integer
1155 :group 'mouse)
1156
1157 (defun menu-bar-update-yank-menu (string old)
1158 (let ((front (car (cdr yank-menu)))
1159 (menu-string (if (<= (length string) yank-menu-length)
1160 string
1161 (concat
1162 (substring string 0 (/ yank-menu-length 2))
1163 "..."
1164 (substring string (- (/ yank-menu-length 2)))))))
1165 ;; Don't let the menu string be all dashes
1166 ;; because that has a special meaning in a menu.
1167 (if (string-match "\\`-+\\'" menu-string)
1168 (setq menu-string (concat menu-string " ")))
1169 ;; If we're supposed to be extending an existing string, and that
1170 ;; string really is at the front of the menu, then update it in place.
1171 (if (and old (or (eq old (car front))
1172 (string= old (car front))))
1173 (progn
1174 (setcar front string)
1175 (setcar (cdr front) menu-string))
1176 (setcdr yank-menu
1177 (cons
1178 (cons string (cons menu-string 'menu-bar-select-yank))
1179 (cdr yank-menu)))))
1180 (if (> (length (cdr yank-menu)) kill-ring-max)
1181 (setcdr (nthcdr kill-ring-max yank-menu) nil)))
1182
1183 (put 'menu-bar-select-yank 'apropos-inhibit t)
1184 (defun menu-bar-select-yank ()
1185 (interactive "*")
1186 (push-mark (point))
1187 (insert last-command-event))
1188 \f
1189 (defvar list-buffers-directory nil)
1190
1191 (defvar menu-bar-update-buffers-maxbuf)
1192
1193 (defun menu-bar-select-buffer ()
1194 (interactive)
1195 (switch-to-buffer last-command-event))
1196
1197 (defun menu-bar-select-frame ()
1198 (interactive)
1199 (let (frame)
1200 (dolist (f (frame-list))
1201 (when (equal last-command-event (frame-parameter f 'name))
1202 (setq frame f)))
1203 (make-frame-visible frame)
1204 (raise-frame frame)
1205 (select-frame frame)))
1206
1207 (defun menu-bar-update-buffers-1 (elt)
1208 (cons (format
1209 ;; (format "%%%ds %%s%%s %%s" menu-bar-update-buffers-maxbuf)
1210 "%s %s%s -- %s"
1211 (cdr elt)
1212 (if (buffer-modified-p (car elt))
1213 "*" " ")
1214 (save-excursion
1215 (set-buffer (car elt))
1216 (if buffer-read-only "%" " "))
1217 (let ((file
1218 (or (buffer-file-name (car elt))
1219 (save-excursion
1220 (set-buffer (car elt))
1221 list-buffers-directory)
1222 "")))
1223 (setq file (or (file-name-directory file)
1224 ""))
1225 (if (> (length file) 20)
1226 (setq file (concat "..." (substring file -17))))
1227 file))
1228 (car elt)))
1229
1230 (defvar menu-bar-buffers-menu-list-buffers-entry nil)
1231
1232 (defun menu-bar-update-buffers (&optional force)
1233 ;; If user discards the Buffers item, play along.
1234 (and (lookup-key (current-global-map) [menu-bar buffer])
1235 (or force (frame-or-buffer-changed-p))
1236 (let ((buffers (buffer-list))
1237 (frames (frame-list))
1238 (maxlen 0)
1239 buffers-menu frames-menu)
1240 ;; If requested, list only the N most recently selected buffers.
1241 (if (and (integerp buffers-menu-max-size)
1242 (> buffers-menu-max-size 1))
1243 (if (> (length buffers) buffers-menu-max-size)
1244 (setcdr (nthcdr buffers-menu-max-size buffers) nil)))
1245
1246 ;; Make the menu of buffers proper.
1247 (setq buffers-menu
1248 (cons "Select Buffer"
1249 (let* ((buffer-list
1250 (mapcar 'list buffers))
1251 tail
1252 (menu-bar-update-buffers-maxbuf 0)
1253 alist
1254 head)
1255 ;; Put into each element of buffer-list
1256 ;; the name for actual display,
1257 ;; perhaps truncated in the middle.
1258 (setq tail buffer-list)
1259 (while tail
1260 (let ((name (buffer-name (car (car tail)))))
1261 (setcdr (car tail)
1262 (if (> (length name) 27)
1263 (concat (substring name 0 12)
1264 "..."
1265 (substring name -12))
1266 name)))
1267 (setq tail (cdr tail)))
1268 ;; Compute the maximum length of any name.
1269 (setq tail buffer-list)
1270 (while tail
1271 (or (eq ?\ (aref (cdr (car tail)) 0))
1272 (setq menu-bar-update-buffers-maxbuf
1273 (max menu-bar-update-buffers-maxbuf
1274 (length (cdr (car tail))))))
1275 (setq tail (cdr tail)))
1276 ;; Set ALIST to an alist of the form
1277 ;; ITEM-STRING . BUFFER
1278 (setq tail buffer-list)
1279 (while tail
1280 (let ((elt (car tail)))
1281 (or (eq ?\ (aref (cdr elt) 0))
1282 (setq alist (cons
1283 (menu-bar-update-buffers-1 elt)
1284 alist)))
1285 (and alist (> (length (car (car alist))) maxlen)
1286 (setq maxlen (length (car (car alist))))))
1287 (setq tail (cdr tail)))
1288 (setq alist (nreverse alist))
1289 ;; Make the menu item for list-buffers
1290 ;; or reuse the one we already have.
1291 ;; The advantage in reusing one
1292 ;; is that it already has the keyboard equivalent
1293 ;; cached, so we save the time to look that up again.
1294 (or menu-bar-buffers-menu-list-buffers-entry
1295 (setq menu-bar-buffers-menu-list-buffers-entry
1296 (cons
1297 'list-buffers
1298 (cons
1299 ""
1300 'list-buffers))))
1301 ;; Update the item string for menu's new width.
1302 (setcar (cdr menu-bar-buffers-menu-list-buffers-entry)
1303 (concat (make-string (max (- (/ maxlen 2) 8) 0)
1304 ?\ )
1305 "List All Buffers"))
1306 ;; Now make the actual list of items,
1307 ;; ending with the list-buffers item.
1308 (nconc (mapcar (lambda (pair)
1309 ;; This is somewhat risque, to use
1310 ;; the buffer name itself as the event
1311 ;; type to define, but it works.
1312 ;; It would not work to use the buffer
1313 ;; since a buffer as an event has its
1314 ;; own meaning.
1315 (nconc (list (buffer-name (cdr pair))
1316 (car pair)
1317 (cons nil nil))
1318 'menu-bar-select-buffer))
1319 alist)
1320 (list menu-bar-buffers-menu-list-buffers-entry)))))
1321
1322
1323 ;; Make a Frames menu if we have more than one frame.
1324 (if (cdr frames)
1325 (let ((name (concat (make-string (max (- (/ maxlen 2) 3) 0)
1326 ?\ )
1327 "Frames"))
1328 (frames-menu
1329 (cons 'keymap
1330 (cons "Select Frame"
1331 (mapcar
1332 (lambda (frame)
1333 (nconc
1334 (list (frame-parameter frame 'name)
1335 (frame-parameter frame 'name)
1336 (cons nil nil))
1337 'menu-bar-select-frame))
1338 frames)))))
1339 ;; Put it underneath the Buffers menu.
1340 (setq buffers-menu (cons (cons 'frames (cons name frames-menu))
1341 buffers-menu))))
1342 (if buffers-menu
1343 (setq buffers-menu (cons 'keymap buffers-menu)))
1344 (define-key (current-global-map) [menu-bar buffer]
1345 (cons "Buffers" buffers-menu)))))
1346
1347 (add-hook 'menu-bar-update-hook 'menu-bar-update-buffers)
1348
1349 (menu-bar-update-buffers)
1350
1351 ;; this version is too slow
1352 ;;;(defun format-buffers-menu-line (buffer)
1353 ;;; "Returns a string to represent the given buffer in the Buffer menu.
1354 ;;;nil means the buffer shouldn't be listed. You can redefine this."
1355 ;;; (if (string-match "\\` " (buffer-name buffer))
1356 ;;; nil
1357 ;;; (save-excursion
1358 ;;; (set-buffer buffer)
1359 ;;; (let ((size (buffer-size)))
1360 ;;; (format "%s%s %-19s %6s %-15s %s"
1361 ;;; (if (buffer-modified-p) "*" " ")
1362 ;;; (if buffer-read-only "%" " ")
1363 ;;; (buffer-name)
1364 ;;; size
1365 ;;; mode-name
1366 ;;; (or (buffer-file-name) ""))))))
1367 \f
1368 ;;; Set up a menu bar menu for the minibuffer.
1369
1370 (dolist (map (list minibuffer-local-map
1371 ;; This shouldn't be necessary, but there's a funny
1372 ;; bug in keymap.c that I don't understand yet. -stef
1373 minibuffer-local-completion-map))
1374 (define-key map [menu-bar minibuf]
1375 (cons "Minibuf" (make-sparse-keymap "Minibuf"))))
1376
1377 (let ((map minibuffer-local-completion-map))
1378 (define-key map [menu-bar minibuf ?\?]
1379 (list 'menu-item "List Completions" 'minibuffer-completion-help
1380 :help "Display all possible completions"))
1381 (define-key map [menu-bar minibuf space]
1382 (list 'menu-item "Complete Word" 'minibuffer-complete-word
1383 :help "Complete at most one word"))
1384 (define-key map [menu-bar minibuf tab]
1385 (list 'menu-item "Complete" 'minibuffer-complete
1386 :help "Complete as far as possible")))
1387
1388 (let ((map minibuffer-local-map))
1389 (define-key map [menu-bar minibuf quit]
1390 (list 'menu-item "Quit" 'keyboard-escape-quit
1391 :help "Abort input and exit minibuffer"))
1392 (define-key map [menu-bar minibuf return]
1393 (list 'menu-item "Enter" 'exit-minibuffer
1394 :help "Terminate input and exit minibuffer")))
1395 \f
1396 (defcustom menu-bar-mode nil
1397 "Toggle display of a menu bar on each frame.
1398 Setting this variable directly does not take effect;
1399 use either \\[customize] or the function `menu-bar-mode'."
1400 :set (lambda (symbol value)
1401 (menu-bar-mode (or value 0)))
1402 :initialize 'custom-initialize-default
1403 :type 'boolean
1404 :group 'frames)
1405
1406 (defun menu-bar-mode (&optional flag)
1407 "Toggle display of a menu bar on each frame.
1408 This command applies to all frames that exist and frames to be
1409 created in the future.
1410 With a numeric argument, if the argument is positive,
1411 turn on menu bars; otherwise, turn off menu bars."
1412 (interactive "P")
1413
1414 ;; Make menu-bar-mode and default-frame-alist consistent.
1415 (let ((default (assq 'menu-bar-lines default-frame-alist)))
1416 (if default
1417 (setq menu-bar-mode (not (eq (cdr default) 0)))
1418 (setq default-frame-alist
1419 (cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
1420 default-frame-alist))))
1421
1422 ;; Toggle or set the mode, according to FLAG.
1423 (setq menu-bar-mode (if (null flag) (not menu-bar-mode)
1424 (> (prefix-numeric-value flag) 0)))
1425
1426 ;; Apply it to default-frame-alist.
1427 (let ((parameter (assq 'menu-bar-lines default-frame-alist)))
1428 (if (consp parameter)
1429 (setcdr parameter (if menu-bar-mode 1 0))
1430 (setq default-frame-alist
1431 (cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
1432 default-frame-alist))))
1433
1434 ;; Apply it to existing frames.
1435 (let ((frames (frame-list)))
1436 (while frames
1437 (let ((height (cdr (assq 'height (frame-parameters (car frames))))))
1438 (modify-frame-parameters (car frames)
1439 (list (cons 'menu-bar-lines
1440 (if menu-bar-mode 1 0))))
1441 (modify-frame-parameters (car frames)
1442 (list (cons 'height height))))
1443 (setq frames (cdr frames)))))
1444
1445 (provide 'menu-bar)
1446
1447 ;;; menu-bar.el ends here