(ibuffer-truncate-lines): New option.
[bpt/emacs.git] / lisp / menu-bar.el
CommitLineData
55535639 1;;; menu-bar.el --- define a default menu bar
235aa29b 2
25fe14a0 3;; Copyright (C) 1993, 1994, 1995, 2000, 2001, 2002 Free Software Foundation, Inc.
b578f267 4
235aa29b 5;; Author: RMS
e4874521 6;; Maintainer: FSF
dbcee71a 7;; Keywords: internal, mouse
235aa29b 8
1db87953
RS
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
b578f267
EN
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.
1db87953 25
260130bb
KH
26;; Avishai Yacobi suggested some menu rearrangements.
27
55535639
PJ
28;;; Commentary:
29
b578f267
EN
30;;; Code:
31
d537086b
RS
32;;; User options:
33
30e19aee 34(defcustom buffers-menu-max-size 10
d537086b
RS
35 "*Maximum number of entries which may appear on the Buffers menu.
36If this is 10, then only the ten most-recently-selected buffers are shown.
37If this is nil, then all buffers are shown.
30e19aee
RS
38A large number or nil slows down menu responsiveness."
39 :type '(choice integer
40 (const :tag "All" nil))
41 :group 'mouse)
d537086b 42
b132f2b1
RM
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")))
22390f50 47(defvar menu-bar-help-menu (make-sparse-keymap "Help"))
ffbdd83d
RS
48
49;; Force Help item to come last, after the major mode's own items.
0d31efcd
KH
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))
ffbdd83d 53
0d31efcd 54(define-key global-map [menu-bar help-menu] (cons "Help" menu-bar-help-menu))
ffbdd83d
RS
55(defvar menu-bar-tools-menu (make-sparse-keymap "Tools"))
56(define-key global-map [menu-bar tools] (cons "Tools" menu-bar-tools-menu))
7f315c7c
EZ
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))
1b009b97
RS
68
69;; This alias is for compatibility with 19.28 and before.
70(defvar menu-bar-file-menu menu-bar-files-menu)
9bb8e471 71\f
7f315c7c 72;; The "File" menu items
ffbdd83d 73(define-key menu-bar-files-menu [exit-emacs]
7f315c7c
EZ
74 '(menu-item "Exit Emacs" save-buffers-kill-emacs
75 :help "Save unsaved buffers, then exit"))
ffbdd83d
RS
76
77(define-key menu-bar-files-menu [separator-exit]
78 '("--"))
79
7f315c7c
EZ
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
ffbdd83d 96(define-key menu-bar-files-menu [one-window]
7f315c7c
EZ
97 '(menu-item "Unsplit Windows" delete-other-windows
98 :enable (not (one-window-p t nil))
99 :help "Make selected window fill its frame"))
ffbdd83d
RS
100
101(define-key menu-bar-files-menu [split-window]
7f315c7c
EZ
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]
438c2df0
GM
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]
7f315c7c
EZ
116 '(menu-item "Postscript Print Region" ps-print-region-with-faces
117 :enable mark-active
118 :help "Pretty-print marked region to PostScript printer"))
438c2df0 119(define-key menu-bar-files-menu [ps-print-buffer-faces]
7f315c7c
EZ
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 "--"))
9bb8e471 132
f3e1e0dd 133(define-key menu-bar-files-menu [recover-session]
7f315c7c
EZ
134 '(menu-item "Recover Crashed Session..." recover-session
135 :enable (and auto-save-list-file-prefix
db3ca487
NF
136 (file-directory-p
137 (file-name-directory auto-save-list-file-prefix))
138 (directory-files
7f315c7c
EZ
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"))
ffbdd83d 147(define-key menu-bar-files-menu [revert-buffer]
7f315c7c
EZ
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"))
ffbdd83d 156(define-key menu-bar-files-menu [write-file]
7f315c7c
EZ
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)
7a98d821 164 (buffer-file-name)
7f315c7c
EZ
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)
ae65cd84 175 :help "Discard current buffer"))
7f315c7c
EZ
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
9bb8e471 190\f
7f315c7c 191;; The "Edit" menu items
ffbdd83d
RS
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
1f50590a 224(defun nonincremental-repeat-search-forward ()
ffbdd83d
RS
225 "Search forward for the previous search string."
226 (interactive)
008c8493
RS
227 (if (null search-ring)
228 (error "No previous search"))
ffbdd83d
RS
229 (search-forward (car search-ring)))
230
1f50590a 231(defun nonincremental-repeat-search-backward ()
ffbdd83d
RS
232 "Search backward for the previous search string."
233 (interactive)
008c8493
RS
234 (if (null search-ring)
235 (error "No previous search"))
ffbdd83d
RS
236 (search-backward (car search-ring)))
237
1f50590a 238(defun nonincremental-repeat-re-search-forward ()
ffbdd83d
RS
239 "Search forward for the previous regular expression."
240 (interactive)
97565dd9 241 (if (null regexp-search-ring)
008c8493 242 (error "No previous search"))
ffbdd83d
RS
243 (re-search-forward (car regexp-search-ring)))
244
1f50590a 245(defun nonincremental-repeat-re-search-backward ()
ffbdd83d
RS
246 "Search backward for the previous regular expression."
247 (interactive)
97565dd9 248 (if (null regexp-search-ring)
008c8493 249 (error "No previous search"))
ffbdd83d
RS
250 (re-search-backward (car regexp-search-ring)))
251
7f315c7c
EZ
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"))
ffbdd83d 291
7f315c7c
EZ
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"))
fe74180c 296(define-key menu-bar-search-menu [repeat-search-back]
7f315c7c
EZ
297 '(menu-item "Repeat Backwards" nonincremental-repeat-search-backward
298 :enable search-ring
299 :help "Repeat last search backwards"))
fe74180c 300(define-key menu-bar-search-menu [repeat-search-fwd]
7f315c7c
EZ
301 '(menu-item "Repeat Search" nonincremental-repeat-search-forward
302 :enable search-ring
303 :help "Repeat last search forward"))
fe74180c 304(define-key menu-bar-search-menu [search-backward]
7f315c7c
EZ
305 '(menu-item "Search Backwards..." nonincremental-search-backward
306 :help "Search backwards for a string"))
fe74180c 307(define-key menu-bar-search-menu [search-forward]
7f315c7c
EZ
308 '(menu-item "Search..." nonincremental-search-forward
309 :help "Search forward for a string"))
9bb8e471 310
7f315c7c
EZ
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"))
3dd92899 315
2eef02ab
EZ
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]
7f315c7c
EZ
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
7f315c7c
EZ
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)))
0ae27881
EZ
344 :enable (and (boundp 'tags-location-ring)
345 (not (ring-empty-p tags-location-ring)))
7f315c7c
EZ
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)))
0ae27881
EZ
350 :enable (and (boundp 'tags-location-ring)
351 (not (ring-empty-p tags-location-ring)))
7f315c7c
EZ
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
2eef02ab
EZ
380(define-key menu-bar-edit-menu [separator-search]
381 '(menu-item "--"))
382
496b7491
EZ
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."))
7f315c7c
EZ
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
ae65cd84 392 "Delete the text in region between mark and current position"))
3dd92899
KH
393(defvar yank-menu (cons "Select Yank" nil))
394(fset 'yank-menu (cons 'keymap yank-menu))
7f315c7c
EZ
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))
19bd58e8 398 :help "Paste (yank) text cut or copied earlier"))
7f315c7c
EZ
399(define-key menu-bar-edit-menu [paste]
400 '(menu-item "Paste" yank
721c26b8
EZ
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))
19bd58e8 406 :help "Paste (yank) text most recently cut/copied"))
7f315c7c
EZ
407(define-key menu-bar-edit-menu [copy]
408 '(menu-item "Copy" menu-bar-kill-ring-save
409 :enable mark-active
84932bf6
SM
410 :help "Copy text in region between mark and current position"
411 :keys "\\[kill-ring-save]"))
7f315c7c
EZ
412(define-key menu-bar-edit-menu [cut]
413 '(menu-item "Cut" kill-region
414 :enable (and mark-active (not buffer-read-only))
ae65cd84
DL
415 :help
416 "Cut (kill) text in region between mark and current position"))
7f315c7c
EZ
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
057d49d1 426
4c0317b1
RS
427(defun menu-bar-kill-ring-save (beg end)
428 (interactive "r")
429 (if (mouse-region-match)
b1a4cc61 430 (message "Selecting a region with the mouse does `copy' automatically")
4c0317b1
RS
431 (kill-ring-save beg end)))
432
9e18f0a0
RS
433(autoload 'ispell-menu-map "ispell" nil t 'keymap)
434
f9cf0be2 435;; These are alternative definitions for the cut, paste and copy
4c0317b1 436;; menu items. Use them if your system expects these to use the clipboard.
f9cf0be2 437
f9cf0be2
RS
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
721c26b8
EZ
441 '(or (and (fboundp 'x-selection-exists-p) (x-selection-exists-p))
442 (x-selection-exists-p 'CLIPBOARD)))
f9cf0be2
RS
443
444(defun clipboard-yank ()
ee497664 445 "Insert the clipboard contents, or the last stretch of killed text."
f9cf0be2
RS
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 ()
5cbdeb30
RS
463 "Make CUT, PASTE and COPY (keys and menu bar items) use the clipboard.
464Do the same for the keys of the same name."
f9cf0be2 465 (interactive)
5754d7f2
RS
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]
7f315c7c 469 (cons "Paste" (cons "Paste text from clipboard" 'clipboard-yank)))
5754d7f2 470 (define-key menu-bar-edit-menu [copy]
7f315c7c
EZ
471 (cons "Copy" (cons "Copy text in region to the clipboard"
472 'clipboard-kill-ring-save)))
5754d7f2 473 (define-key menu-bar-edit-menu [cut]
7f315c7c
EZ
474 (cons "Cut" (cons "Delete text in region and copy it to the clipboard"
475 'clipboard-kill-region)))
5cbdeb30
RS
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))
f9cf0be2 484\f
7f315c7c 485;; The "Options" menu items
a9f53ffb
RS
486
487(defvar menu-bar-custom-menu (make-sparse-keymap "Customize"))
488
b0f661de 489(define-key menu-bar-custom-menu [customize-apropos-groups]
7f315c7c
EZ
490 '(menu-item "Groups Matching Regexp..." customize-apropos-groups
491 :help "Browse groups whose names match regexp"))
b0f661de 492(define-key menu-bar-custom-menu [customize-apropos-faces]
7f315c7c
EZ
493 '(menu-item "Faces Matching Regexp..." customize-apropos-faces
494 :help "Browse faces whose names match regexp"))
b0f661de 495(define-key menu-bar-custom-menu [customize-apropos-options]
7f315c7c
EZ
496 '(menu-item "Options Matching Regexp..." customize-apropos-options
497 :help "Browse options whose names match regexp"))
a9f53ffb 498(define-key menu-bar-custom-menu [customize-apropos]
7f315c7c
EZ
499 '(menu-item "Settings Matching Regexp..." customize-apropos
500 :help "Browse customizable settings whose names match regexp"))
b0f661de
RS
501(define-key menu-bar-custom-menu [separator-2]
502 '("--"))
c9a86e71 503(define-key menu-bar-custom-menu [customize-group]
7f315c7c
EZ
504 '(menu-item "Specific Group..." customize-group
505 :help "Customize settings of specific group"))
a9f53ffb 506(define-key menu-bar-custom-menu [customize-face]
7f315c7c
EZ
507 '(menu-item "Specific Face..." customize-face
508 :help "Customize attributes of specific face"))
b0f661de 509(define-key menu-bar-custom-menu [customize-option]
7f315c7c
EZ
510 '(menu-item "Specific Option..." customize-option
511 :help "Change value of specific option"))
6fe9c658 512(define-key menu-bar-custom-menu [customize-changed-options]
7f315c7c
EZ
513 '(menu-item "Recently Changed Options..." customize-changed-options
514 :help "Customize options changed in recent versions"))
b0f661de
RS
515(define-key menu-bar-custom-menu [separator-3]
516 '("--"))
e6354b3e 517(define-key menu-bar-custom-menu [customize-browse]
7f315c7c
EZ
518 '(menu-item "Browse Customization Groups" customize-browse
519 :help "Browse all customization groups"))
b0f661de 520(define-key menu-bar-custom-menu [customize]
7f315c7c
EZ
521 '(menu-item "Top-level Customization Group" customize
522 :help "The master group called `Emacs'"))
a9f53ffb 523
7f315c7c 524;(defvar menu-bar-preferences-menu (make-sparse-keymap "Preferences"))
bacb2d12 525
7f315c7c 526(defmacro menu-bar-make-toggle (name variable doc message help &rest body)
bacb2d12
RS
527 `(progn
528 (defun ,name ()
e8dd28e7
RS
529 ,(concat "Toggle whether to " (downcase (substring help 0 1))
530 (substring help 1) ".")
bacb2d12
RS
531 (interactive)
532 (if ,(if body `(progn . ,body)
4f9b9060
PA
533 `(progn
534 (custom-load-symbol ',variable)
535 (let ((set (or (get ',variable 'custom-set) 'set-default))
536 (get (or (get ',variable 'custom-get) 'default-value)))
537 (funcall set ',variable (not (funcall get ',variable))))))
538 (message ,message "enabled")
506c6d61 539 (message ,message "disabled")))
4f9b9060
PA
540 ;; The function `customize-mark-as-set' must only be called when
541 ;; a variable is set interactively, as the purpose is to mark it
542 ;; as a candidate for "Save Options", and we do not want to save
543 ;; options the user have already set explicitly in his init
544 ;; file. Unfortunately, he could very likely call the function
545 ;; defined above there. So we put `customize-mark-as-set' in a
546 ;; lambda expression.
547 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-11.
548 '(menu-item ,doc (lambda ()
549 (interactive)
550 (,name)
551 (customize-mark-as-set ',variable))
7f315c7c 552 :help ,help
4f9b9060
PA
553 :button (:toggle . (and (default-boundp ',variable)
554 (default-value ',variable))))))
7f315c7c
EZ
555
556;;; Assemble all the top-level items of the "Options" menu
557(define-key menu-bar-options-menu [customize]
558 (list 'menu-item "Customize Emacs" menu-bar-custom-menu
559 :help "Full customization of every Emacs feature"))
10013d74
DL
560
561(defun menu-bar-options-save ()
562 "Save current values of Options menu items using Custom."
563 (interactive)
414fd702 564 (let ((need-save nil))
4f9b9060
PA
565 ;; These are set with `customize-set-variable'.
566 (dolist (elt '(line-number-mode column-number-mode scroll-bar-mode
567 debug-on-quit debug-on-error menu-bar-mode tool-bar-mode
568 save-place uniquify-buffer-name-style
0ac1c4cf 569 case-fold-search show-paren-mode
414fd702 570 transient-mark-mode global-font-lock-mode
4f9b9060 571 display-time-mode auto-compression-mode
f4990970 572 current-language-environment default-input-method
4f9b9060
PA
573 ;; Saving `text-mode-hook' is somewhat questionable,
574 ;; as we might get more than we bargain for, if
575 ;; other code may has added hooks as well.
576 ;; Nonetheless, not saving it would like be confuse
577 ;; more often.
578 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-11.
579 text-mode-hook))
580 (and (get elt 'customized-value)
581 (customize-mark-to-save elt)
582 (setq need-save t)))
414fd702
PA
583 ;; Save if we changed anything.
584 (when need-save
585 (custom-save-all))))
10013d74
DL
586
587(define-key menu-bar-options-menu [save]
48c9f054 588 '(menu-item "Save Options" menu-bar-options-save
10013d74
DL
589 :help "Save options set from the menu above"))
590
591(define-key menu-bar-options-menu [custom-separator]
592 '("--"))
593
c2ca4bab
PJ
594;; The "Show/Hide" submenu of menu "Options"
595
596(defvar menu-bar-showhide-menu (make-sparse-keymap "Show/Hide"))
40189bd6 597
d0e1c755 598(define-key menu-bar-showhide-menu [column-number-mode]
d38c4312 599 (menu-bar-make-toggle toggle-column-number-mode column-number-mode
d0e1c755
PJ
600 "Show Column Number" "Column number mode %s"
601 "Show the current column number in the mode-line"))
602
603(define-key menu-bar-showhide-menu [line-number-mode]
d38c4312 604 (menu-bar-make-toggle toggle-line-number-mode line-number-mode
d0e1c755
PJ
605 "Show Line Number" "Line number mode %s"
606 "Show the current line number in the mode-line"))
607
608(define-key menu-bar-showhide-menu [linecolumn-separator]
609 '("--"))
610
40189bd6
PJ
611(defun showhide-date-time ()
612 "Toggle whether to show date and time in the mode-line."
613 (interactive)
614 (if (display-time-mode)
615 (message "Display-time mode enabled.")
616 (message "Display-time mode disabled.")))
617
618(define-key menu-bar-showhide-menu [showhide-date-time]
4f9b9060
PA
619 '(menu-item "Date and time" (lambda ()
620 (interactive)
621 (showhide-date-time)
622 (customize-mark-as-set 'display-time-mode))
40189bd6
PJ
623 :help "Display date and time in the mode-line"
624 :button (:toggle . display-time-mode)))
625
626(define-key menu-bar-showhide-menu [datetime-separator]
627 '("--"))
628
c2ca4bab
PJ
629(defvar menu-bar-showhide-scroll-bar-menu (make-sparse-keymap "Scroll-bar"))
630
c2ca4bab 631(define-key menu-bar-showhide-scroll-bar-menu [right]
4f9b9060
PA
632 '(menu-item "On the Right"
633 (lambda ()
634 (interactive)
635 (customize-set-variable 'scroll-bar-mode 'right))
c2ca4bab
PJ
636 :help "Scroll-bar on the right side"
637 :visible window-system
4f9b9060
PA
638 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars
639 (frame-parameters))) 'right))))
c2ca4bab
PJ
640
641(define-key menu-bar-showhide-scroll-bar-menu [left]
4f9b9060
PA
642 '(menu-item "On the Left"
643 (lambda ()
644 (interactive)
645 (customize-set-variable 'scroll-bar-mode 'left))
c2ca4bab
PJ
646 :help "Scroll-bar on the left side"
647 :visible window-system
4f9b9060
PA
648 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars
649 (frame-parameters))) 'left))))
c2ca4bab
PJ
650
651(define-key menu-bar-showhide-scroll-bar-menu [none]
4f9b9060
PA
652 '(menu-item "None"
653 (lambda ()
654 (interactive)
655 (customize-set-variable 'scroll-bar-mode nil))
c2ca4bab
PJ
656 :help "Turn off scroll-bar"
657 :visible window-system
4f9b9060
PA
658 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars
659 (frame-parameters))) nil))))
c2ca4bab
PJ
660
661(define-key menu-bar-showhide-menu [showhide-scroll-bar]
662 (list 'menu-item "Scroll-Bar" menu-bar-showhide-scroll-bar-menu
663 :visible 'window-system
664 :help "Select scroll-bar mode"))
665
666(defun showhide-menu-bar ()
667 "Toggle whether to turn menu-bar on/off."
668 (interactive)
669 (menu-bar-mode)
670 (if menu-bar-mode
671 (message "Menu-bar mode enabled.")
672 (message "Menu-bar mode disabled. Use M-x menu-bar-mode to make the menu bar appear.")))
673
674(define-key menu-bar-showhide-menu [showhide-menu-bar]
4f9b9060
PA
675 '(menu-item "Menu-bar"
676 (lambda ()
677 (interactive)
678 (showhide-menu-bar)
679 (customize-mark-as-set 'menu-bar-mode))
c2ca4bab
PJ
680 :help "Toggle menu-bar on/off"
681 :button (:toggle . menu-bar-mode)))
682
683(defun showhide-tool-bar ()
684 "Toggle whether to turn tool-bar on/off."
685 (interactive)
686 (if (tool-bar-mode)
687 (message "Tool-bar mode enabled.")
688 (message "Tool-bar mode disabled.")))
689
690(define-key menu-bar-showhide-menu [showhide-tool-bar]
4f9b9060
PA
691 '(menu-item "Tool-bar"
692 (lambda ()
693 (interactive)
694 (showhide-tool-bar)
695 (customize-mark-as-set 'tool-bar-mode))
c2ca4bab
PJ
696 :help "Turn tool-bar on/off"
697 :visible window-system
698 :button (:toggle . tool-bar-mode)))
699
700(define-key menu-bar-options-menu [showhide]
701 (list 'menu-item "Show/Hide" menu-bar-showhide-menu
702 :help "Toggle on/off various display features"))
703
704(define-key menu-bar-options-menu [showhide-separator]
705 '("--"))
706
7f315c7c
EZ
707(define-key menu-bar-options-menu [mule]
708 ;; It is better not to use backquote here,
709 ;; because that makes a bootstrapping problem
710 ;; if you need to recompile all the Lisp files using interpreted code.
711 (list 'menu-item "Mule (Multilingual Environment)" mule-menu-keymap
506c6d61
DL
712;; Most of the MULE menu actually does make sense in unibyte mode,
713;; e.g. language selection.
714;;; ':visible 'default-enable-multibyte-characters
7f315c7c
EZ
715 ':help "Default language, encodings, input method"))
716;(setq menu-bar-final-items (cons 'mule menu-bar-final-items))
717;(define-key menu-bar-options-menu [preferences]
718; (list 'menu-item "Preferences" menu-bar-preferences-menu
719; :help "Toggle important global options"))
720
721(define-key menu-bar-options-menu [mule-separator]
506c6d61 722 '("--"))
bacb2d12
RS
723
724(define-key menu-bar-options-menu [debug-on-quit]
725 (menu-bar-make-toggle toggle-debug-on-quit debug-on-quit
e8dd28e7 726 "Enter Debugger on Quit/C-g" "Debug on Quit %s"
7f315c7c 727 "Enter Lisp debugger when C-g is pressed"))
bacb2d12
RS
728(define-key menu-bar-options-menu [debug-on-error]
729 (menu-bar-make-toggle toggle-debug-on-error debug-on-error
e8dd28e7
RS
730 "Enter Debugger on Error" "Debug on Error %s"
731 "Enter Lisp debugger when an error is signaled"))
7f315c7c 732(define-key menu-bar-options-menu [debugger-separator]
bacb2d12 733 '("--"))
7f315c7c
EZ
734(define-key menu-bar-options-menu [toggle-auto-compression]
735 '(menu-item "Automatic File De/compression"
4f9b9060
PA
736 (lambda ()
737 (interactive)
738 (auto-compression-mode)
739 (customize-mark-as-set 'auto-compression-mode))
740 :help "Transparently decompress compressed files"
741 :button (:toggle . (rassq 'jka-compr-handler
742 file-name-handler-alist))))
bacb2d12
RS
743(define-key menu-bar-options-menu [save-place]
744 (menu-bar-make-toggle toggle-save-place-globally save-place
89f1709f 745 "Save Place in Files between Sessions"
bacb2d12 746 "Saving place in files %s"
4f9b9060
PA
747 "Save Emacs state for next session"))
748
bacb2d12
RS
749(define-key menu-bar-options-menu [uniquify]
750 (menu-bar-make-toggle toggle-uniquify-buffer-names uniquify-buffer-name-style
89f1709f 751 "Use Directory Names in Buffer Names"
bacb2d12 752 "Directory name in buffer names (uniquify) %s"
e8dd28e7 753 "Uniquify buffer names by adding parent directory names"
bacb2d12
RS
754 (require 'uniquify)
755 (setq uniquify-buffer-name-style
756 (if (not uniquify-buffer-name-style)
757 'forward))))
4f9b9060 758
7f315c7c
EZ
759(define-key menu-bar-options-menu [edit-options-separator]
760 '("--"))
3f51f129
RS
761(define-key menu-bar-options-menu [case-fold-search]
762 (menu-bar-make-toggle toggle-case-fold-search case-fold-search
7f315c7c
EZ
763 "Case-Insensitive Search"
764 "Case-Insensitive Search %s"
e8dd28e7 765 "Ignore letter-case in search"))
7f315c7c
EZ
766(define-key menu-bar-options-menu [auto-fill-mode]
767 '(menu-item "Word Wrap in Text Modes (Auto Fill)"
4f9b9060
PA
768 (lambda ()
769 (interactive)
770 (toggle-text-mode-auto-fill)
771 ;; This is somewhat questionable, as `text-mode-hook'
772 ;; might have changed outside customize.
773 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-11.
774 (customize-mark-as-set 'text-mode-hook))
7f315c7c
EZ
775 :help "Automatically fill text between left and right margins"
776 :button (:toggle . (member 'turn-on-auto-fill text-mode-hook))))
43c35fd7 777(define-key menu-bar-options-menu [truncate-lines]
0ac1c4cf
PA
778 '(menu-item "Truncate Long Lines in this Buffer"
779 (lambda ()
780 (interactive)
781 (setq truncate-lines (not truncate-lines))
782 (set-buffer-modified-p (buffer-modified-p))
783 (message "Truncate long lines %s"
784 (if truncate-lines "enabled" "disabled")))
785 :help "Truncate long lines on the screen"
786 :button (:toggle . truncate-lines)))
787
7f315c7c
EZ
788(define-key menu-bar-options-menu [highlight-separator]
789 '("--"))
790(define-key menu-bar-options-menu [highlight-paren-mode]
791 (menu-bar-make-toggle toggle-highlight-paren-mode show-paren-mode
e5b31424 792 "Paren Match Highlighting (Show Paren mode)"
7f315c7c 793 "Show Paren mode %s"
4f9b9060 794 "Highlight matching/mismatched parentheses at cursor"))
bacb2d12
RS
795(define-key menu-bar-options-menu [transient-mark-mode]
796 (menu-bar-make-toggle toggle-transient-mark-mode transient-mark-mode
e5b31424 797 "Active Region Highlighting (Transient Mark mode)"
7f315c7c 798 "Transient Mark mode %s"
e5b31424 799 "Make text in active region stand out in color"))
8ad97b87 800(define-key menu-bar-options-menu [toggle-global-lazy-font-lock-mode]
89f1709f 801 (menu-bar-make-toggle toggle-global-lazy-font-lock-mode global-font-lock-mode
e5b31424 802 "Syntax Highlighting (Global Font Lock mode)"
53ca4610 803 "Global Font Lock mode %s"
4f9b9060 804 "Colorize text based on language syntax"))
7f315c7c 805
e5683624 806\f
7f315c7c
EZ
807;; The "Tools" menu items
808
e4ca8f8c
EZ
809(defun send-mail-item-name ()
810 (let* ((known-send-mail-commands '((sendmail-user-agent . "sendmail")
811 (mh-e-user-agent . "MH")
812 (message-user-agent . "Gnus Message")
813 (gnus-user-agent . "Gnus")))
814 (name (assq mail-user-agent known-send-mail-commands)))
815 (if name
816 (setq name (cdr name))
817 (setq name (symbol-name mail-user-agent))
818 (if (string-match "\\(.+\\)-user-agent" name)
819 (setq name (match-string 1 name))))
820 name))
821
0a1f9f1d
EZ
822(defun read-mail-item-name ()
823 (let* ((known-rmail-commands '((rmail . "RMAIL")
824 (mh-rmail . "MH")
825 (gnus . "Gnus")))
826 (known (assq read-mail-command known-rmail-commands)))
827 (if known (cdr known) (symbol-name read-mail-command))))
828
7f315c7c
EZ
829(defvar menu-bar-games-menu (make-sparse-keymap "Games"))
830
831(define-key menu-bar-tools-menu [games]
832 (list 'menu-item "Games" menu-bar-games-menu))
833
834(define-key menu-bar-tools-menu [separator-games]
835 '("--"))
836
7bff37dc
EZ
837(define-key menu-bar-games-menu [zone]
838 '(menu-item "Zone Out" zone
839 :help "Play tricks with Emacs display when Emacs is idle"))
7f315c7c
EZ
840(define-key menu-bar-games-menu [yow]
841 '(menu-item "Random Quotation" yow
842 :help "Display a random Zippy quotation"))
843(define-key menu-bar-games-menu [tetris]
844 '(menu-item "Tetris" tetris))
845(define-key menu-bar-games-menu [solitaire]
846 '(menu-item "Solitaire" solitaire))
847(define-key menu-bar-games-menu [snake]
848 '(menu-item "Snake" snake
849 :help "Move snake around avoiding collisions"))
850(define-key menu-bar-games-menu [mult]
851 '(menu-item "Multiplication Puzzle" mpuz
852 :help "Excercise brain with multiplication"))
853(define-key menu-bar-games-menu [life]
854 '(menu-item "Life" life
855 :help "Watch how John Conway's cellular automaton evolves"))
856(define-key menu-bar-games-menu [hanoi]
857 '(menu-item "Towers of Hanoi" hanoi
858 :help "Watch Towers-of-Hanoi puzzle solved by Emacs"))
859(define-key menu-bar-games-menu [gomoku]
860 '(menu-item "Gomoku" gomoku
861 :help "Mark 5 contiguous squares (like tic-tac-toe)"))
862(define-key menu-bar-games-menu [black-box]
863 '(menu-item "Blackbox" blackbox
864 :help "Find balls in a black box by shooting rays"))
865(define-key menu-bar-games-menu [adventure]
866 '(menu-item "Adventure" dunnet
867 :help "Dunnet, a text Adventure game for Emacs"))
868(define-key menu-bar-games-menu [5x5]
869 '(menu-item "5x5" 5x5
870 :help "Fill in all the squares on a 5x5 board"))
871
9a45aa3d
EZ
872(define-key menu-bar-tools-menu [calculator]
873 '(menu-item "Calculator" calculator
874 :help "Invoke the Emacs built-in scientific calculator"))
506c6d61 875(define-key menu-bar-tools-menu [calendar]
7f315c7c
EZ
876 '(menu-item "Display Calendar" calendar))
877(define-key menu-bar-tools-menu [speedbar]
878 '(menu-item "Display Speedbar" speedbar-frame-mode))
9a45aa3d
EZ
879
880(define-key menu-bar-tools-menu [separator-net]
881 '("--"))
882
7f315c7c
EZ
883(define-key menu-bar-tools-menu [directory-search]
884 '(menu-item "Directory Search" eudc-tools-menu
885 :help "Query directory servers via LDAP, CCSO PH/QI or BBDB"))
506c6d61 886(define-key menu-bar-tools-menu [compose-mail]
e4ca8f8c
EZ
887 (list
888 'menu-item `(format "Send Mail (with %s)" (send-mail-item-name))
889 'compose-mail
890 :visible `(and mail-user-agent (not (eq mail-user-agent 'ignore)))
891 :help "Send a mail message"))
506c6d61 892(define-key menu-bar-tools-menu [rmail]
0a1f9f1d
EZ
893 (list
894 'menu-item `(format "Read Mail (with %s)" (read-mail-item-name))
895 (lambda ()
896 (interactive)
897 (call-interactively read-mail-command))
e4ca8f8c 898 :visible `(and read-mail-command (not (eq read-mail-command 'ignore)))
0a1f9f1d 899 :help "Read your mail and reply to it"))
7f315c7c 900(define-key menu-bar-tools-menu [gnus]
0a1f9f1d 901 '(menu-item "Read Net News (Gnus)" gnus
7f315c7c
EZ
902 :help "Read network news groups"))
903
904(define-key menu-bar-tools-menu [separator-vc]
905 '("--"))
906
907(defvar vc-menu-map (make-sparse-keymap "Version Control"))
eccd9bd5
SM
908(define-key menu-bar-tools-menu [pcl-cvs]
909 `(menu-item "PCL-CVS" ,cvs-global-menu
910 :help "Module-level interface to CVS"))
7f315c7c
EZ
911(define-key menu-bar-tools-menu [vc]
912 (list 'menu-item "Version Control" vc-menu-map
913 :help "Interface to RCS, CVS, SCCS"))
914
915(define-key menu-bar-tools-menu [separator-compare]
916 '("--"))
917
918(define-key menu-bar-tools-menu [ediff-misc]
919 '(menu-item "Ediff Miscellanea" menu-bar-ediff-misc-menu
920 :help "Ediff manual, customization, sessions, etc."))
921(define-key menu-bar-tools-menu [epatch]
922 '(menu-item "Apply Patch" menu-bar-epatch-menu))
923(define-key menu-bar-tools-menu [ediff-merge]
924 '(menu-item "Merge" menu-bar-ediff-merge-menu
925 :help "Merge different revisions of files/directories"))
926(define-key menu-bar-tools-menu [compare]
927 '(menu-item "Compare (Ediff)" menu-bar-ediff-menu
928 :help "Display differences between files/directories"))
929
930
931(define-key menu-bar-tools-menu [separator-spell]
932 '("--"))
933
934(define-key menu-bar-tools-menu [spell]
935 '(menu-item "Spell Checking" ispell-menu-map))
936
937(define-key menu-bar-tools-menu [separator-prog]
938 '("--"))
939
940(define-key menu-bar-tools-menu [gdb]
941 '(menu-item "Debugger (GUD)..." gdb
0a1f9f1d 942 :help "Debug a program from within Emacs"))
7f315c7c
EZ
943(define-key menu-bar-tools-menu [shell-on-region]
944 '(menu-item "Shell Command on Region..." shell-command-on-region
945 :enable mark-active
946 :help "Pass marked region to a shell command"))
947(define-key menu-bar-tools-menu [shell]
948 '(menu-item "Shell Command..." shell-command
949 :help "Invoke a shell command and catch its output"))
950(define-key menu-bar-tools-menu [compile]
951 '(menu-item "Compile..." compile
952 :help "Invoke compiler or Make, view compilation errors"))
953(define-key menu-bar-tools-menu [grep]
954 '(menu-item "Search Files (Grep)..." grep
955 :help "Search files for strings or regexps (with Grep)"))
956
957\f
958;; The "Help" menu items
959
e5683624
RS
960(defvar menu-bar-describe-menu (make-sparse-keymap "Describe"))
961
7f315c7c
EZ
962(define-key menu-bar-describe-menu [mule-diag]
963 '(menu-item "Show All of Mule Status" mule-diag
964 :visible default-enable-multibyte-characters
965 :help "Display multilingual environment settings"))
df5bde6d
SS
966(define-key menu-bar-describe-menu [describe-coding-system-briefly]
967 '(menu-item "Describe Coding System (Briefly)..."
968 describe-current-coding-system-briefly
969 :visible default-enable-multibyte-characters))
7f315c7c
EZ
970(define-key menu-bar-describe-menu [describe-coding-system]
971 '(menu-item "Describe Coding System..." describe-coding-system
972 :visible default-enable-multibyte-characters))
973(define-key menu-bar-describe-menu [describe-input-method]
974 '(menu-item "Describe Input Method..." describe-input-method
975 :visible default-enable-multibyte-characters
976 :help "Keyboard layout for specific input method"))
977(define-key menu-bar-describe-menu [describe-language-environment]
506c6d61
DL
978 (list 'menu-item "Describe Language Environment"
979 describe-language-environment-map
980 :help "Show multilingual settings for a specific language"))
7f315c7c
EZ
981
982(define-key menu-bar-describe-menu [separator-desc-mule]
506c6d61 983 '("--"))
7f315c7c
EZ
984
985(define-key menu-bar-describe-menu [list-keybindings]
986 '(menu-item "List Key Bindings" describe-bindings
987 :help "Display a list of all current keybindings"))
df5bde6d
SS
988(define-key menu-bar-describe-menu [describe-current-display-table]
989 '(menu-item "Describe Display Table" describe-current-display-table
990 :help "Describe the current display table"))
991(define-key menu-bar-describe-menu [describe-face]
992 '(menu-item "Describe Face..." describe-face
993 :help "Display the properties of a face"))
e5683624 994(define-key menu-bar-describe-menu [describe-variable]
7f315c7c
EZ
995 '(menu-item "Describe Variable..." describe-variable
996 :help "Display documentation of variable/option"))
e5683624 997(define-key menu-bar-describe-menu [describe-function]
7f315c7c
EZ
998 '(menu-item "Describe Function..." describe-function
999 :help "Display documentation of function/command"))
e5683624 1000(define-key menu-bar-describe-menu [describe-key]
7f315c7c 1001 '(menu-item "Describe Key..." describe-key
506c6d61
DL
1002 ;; Users typically don't identify keys and menu items...
1003 :help "Display documentation of command bound to a \
1004key (or menu-item)"))
df5bde6d
SS
1005(define-key menu-bar-describe-menu [describe-mode]
1006 '(menu-item "Describe Buffer Modes" describe-mode
1007 :help "Describe this buffer's major and minor mode"))
1008
1009(defvar menu-bar-apropos-menu (make-sparse-keymap "Apropos"))
5275d6a8
EZ
1010(defun menu-bar-read-lispref ()
1011 "Display the Emacs Lisp Reference manual in Info mode."
1012 (interactive)
1013 (info "elisp"))
1014
1015(defun menu-bar-read-lispintro ()
1016 "Display the Introduction to Emacs Lisp Programming in Info mode."
1017 (interactive)
1018 (info "eintr"))
1019
1020(defun menu-bar-read-emacs-man ()
1021 "Display Emacs User Manual in Info mode."
1022 (interactive)
1023 (info "emacs"))
1024
1025(defun search-emacs-glossary ()
1026 "Display the Glossary node of the Emacs manual in Info mode."
1027 (interactive)
1028 (info "(emacs)Glossary"))
1029
1030(defun emacs-index-search (topic)
1031 "Look up TOPIC in the indices of the Emacs User Manual."
1032 (interactive "sSubject to look up: ")
1033 (info "emacs")
1034 (Info-index topic))
1035
1036(defun elisp-index-search (topic)
1037 "Look up TOPIC in the indices of the Emacs Lisp Reference Manual."
1038 (interactive "sSubject to look up: ")
1039 (info "elisp")
1040 (Info-index topic))
df5bde6d
SS
1041
1042(define-key menu-bar-apropos-menu [apropos-documentation]
5275d6a8
EZ
1043 '(menu-item "Search Documentation Strings..." apropos-documentation
1044 :help
1045 "Find functions and variables whose doc strings match a regexp"))
df5bde6d 1046(define-key menu-bar-apropos-menu [apropos]
5275d6a8
EZ
1047 '(menu-item "Find Any Object by Name..." apropos
1048 :help "Find symbols of any kind whose names match a regexp"))
df5bde6d 1049(define-key menu-bar-apropos-menu [apropos-value]
5275d6a8
EZ
1050 '(menu-item "Find Options by Value..." apropos-value
1051 :help "Find variables whose values match a regexp"))
df5bde6d 1052(define-key menu-bar-apropos-menu [apropos-variables]
5275d6a8
EZ
1053 '(menu-item "Find Options by Name..." apropos-variable
1054 :help "Find variables whose names match a regexp"))
df5bde6d 1055(define-key menu-bar-apropos-menu [apropos-commands]
5275d6a8
EZ
1056 '(menu-item "Find Commands by Name..." apropos-command
1057 :help "Find commands whose names match a regexp"))
1058(define-key menu-bar-apropos-menu [sep1]
1059 '("--"))
1060(define-key menu-bar-apropos-menu [elisp-index-search]
1061 '(menu-item "Look Up Subject in ELisp Manual..." elisp-index-search
1062 :help "Find description of a subject in Emacs Lisp manual"))
1063(define-key menu-bar-apropos-menu [emacs-index-search]
1064 '(menu-item "Look Up Subject in User Manual..." emacs-index-search
1065 :help "Find description of a subject in Emacs User manual"))
1066(define-key menu-bar-apropos-menu [emacs-glossary]
1067 '(menu-item "Emacs Terminology" search-emacs-glossary
1068 :help "Display the Glossary section of the Emacs manual"))
1069
1070(defvar menu-bar-manuals-menu (make-sparse-keymap "More Manuals"))
e5683624
RS
1071
1072(define-key menu-bar-manuals-menu [man]
7f315c7c
EZ
1073 '(menu-item "Read Man Page..." manual-entry
1074 :help "Man-page docs for external commands and libraries"))
e5683624
RS
1075(define-key menu-bar-manuals-menu [sep2]
1076 '("--"))
5275d6a8
EZ
1077(define-key menu-bar-manuals-menu [order-emacs-manuals]
1078 '(menu-item "Ordering Manuals" view-order-manuals
1079 :help "How to order manuals from the Free Software Foundation"))
e5683624 1080(define-key menu-bar-manuals-menu [info]
5275d6a8 1081 '(menu-item "All Other Manuals (Info)" Info-directory
7f315c7c 1082 :help "Read any of the installed manuals"))
5275d6a8
EZ
1083(define-key menu-bar-manuals-menu [info-elisp]
1084 '(menu-item "Emacs Lisp Reference" menu-bar-read-lispref
1085 :help "Read the Emacs Lisp Reference manual"))
1086(define-key menu-bar-manuals-menu [info-elintro]
1087 '(menu-item "Introduction to Emacs Lisp" menu-bar-read-lispintro
1088 :help "Read the Introduction to Emacs Lisp Programming"))
1089(define-key menu-bar-manuals-menu [sep3]
1090 '("--"))
7f315c7c
EZ
1091(define-key menu-bar-manuals-menu [command]
1092 '(menu-item "Find Command in Manual" Info-goto-emacs-command-node
1093 :help "Display manual section that describes a command"))
1094(define-key menu-bar-manuals-menu [key]
1095 '(menu-item "Find Key in Manual" Info-goto-emacs-key-command-node
1096 :help "Display manual section that describes a key"))
bacb2d12 1097
7f315c7c
EZ
1098(define-key menu-bar-help-menu [eliza]
1099 '(menu-item "Emacs Psychiatrist" doctor
1100 :help "Our doctor will help you feel better"))
5275d6a8 1101(define-key menu-bar-help-menu [sep4]
7f315c7c 1102 '("--"))
f3e1e0dd 1103(define-key menu-bar-help-menu [describe-no-warranty]
7f315c7c
EZ
1104 '(menu-item "(Non)Warranty" describe-no-warranty
1105 :help "Explain that Emacs has NO WARRANTY"))
f3e1e0dd 1106(define-key menu-bar-help-menu [describe-copying]
7f315c7c
EZ
1107 '(menu-item "Copying Conditions" describe-copying
1108 :help "Show the Emacs license (GPL)"))
f3e1e0dd 1109(define-key menu-bar-help-menu [describe-distribution]
7f315c7c
EZ
1110 '(menu-item "Getting New Versions" describe-distribution
1111 :help "How to get latest versions of Emacs"))
ae65cd84
DL
1112(define-key menu-bar-help-menu [more]
1113 '(menu-item "Find Extra Packages"
1114 (lambda ()
1115 (interactive)
1116 (let (enable-local-variables)
1117 (view-file (expand-file-name "MORE.STUFF"
1118 data-directory))
1119 (goto-address)))
1120 :help "Where to find some extra packages and possible updates"))
008cea2c
PJ
1121(define-key menu-bar-help-menu [about]
1122 '(menu-item "About Emacs" display-splash-screen
40189bd6 1123 :help "Display version number, copyright info, and basic help"))
e5683624
RS
1124(define-key menu-bar-help-menu [sep2]
1125 '("--"))
260130bb 1126(define-key menu-bar-help-menu [finder-by-keyword]
7f315c7c
EZ
1127 '(menu-item "Find Emacs Packages..." finder-by-keyword
1128 :help "Find packages and features by keyword"))
5275d6a8
EZ
1129(define-key menu-bar-help-menu [manuals]
1130 (list 'menu-item "More Manuals" menu-bar-manuals-menu
1131 :help "Search and browse on-line manuals"))
1132(define-key menu-bar-help-menu [emacs-manual]
1133 '(menu-item "Read the Emacs Manual" menu-bar-read-emacs-man
1134 :help "Full documentation of Emacs features"))
e5683624 1135(define-key menu-bar-help-menu [describe]
7f315c7c
EZ
1136 (list 'menu-item "Describe" menu-bar-describe-menu
1137 :help "Describe commands, variables, keys"))
5275d6a8
EZ
1138(define-key menu-bar-help-menu [apropos]
1139 (list 'menu-item "Search Documentation" menu-bar-apropos-menu
1140 :help "Look up terms, find commands, options, etc. (Apropos)"))
e5683624
RS
1141(define-key menu-bar-help-menu [sep1]
1142 '("--"))
7f315c7c
EZ
1143(define-key menu-bar-help-menu [report-emacs-bug]
1144 '(menu-item "Send Bug Report..." report-emacs-bug
1145 :help "Send e-mail to Emacs maintainers"))
1146(define-key menu-bar-help-menu [emacs-problems]
1147 '(menu-item "Emacs Known Problems" view-emacs-problems))
1148(define-key menu-bar-help-menu [emacs-news]
1149 '(menu-item "Emacs News" view-emacs-news
1150 :help "New features of this version"))
1151(define-key menu-bar-help-menu [emacs-faq]
1152 '(menu-item "Emacs FAQ" view-emacs-FAQ))
451ec4e3
GM
1153(define-key menu-bar-help-menu [emacs-tutorial-language-specific]
1154 '(menu-item "Emacs Tutorial (choose language)..."
1155 (lambda () (interactive) (help-with-tutorial t))
1156 :help "Learn how to use Emacs (choose a language)"))
7f315c7c
EZ
1157(define-key menu-bar-help-menu [emacs-tutorial]
1158 '(menu-item "Emacs Tutorial" help-with-tutorial
1159 :help "Learn how to use Emacs"))
889560ed 1160
db774a16 1161(defun kill-this-buffer () ; for the menubar
506c6d61 1162 "Kill the current buffer."
db774a16
RS
1163 (interactive)
1164 (kill-buffer (current-buffer)))
1165
2f1139a4
RS
1166(defun kill-this-buffer-enabled-p ()
1167 (let ((count 0)
1168 (buffers (buffer-list)))
1169 (while buffers
1170 (or (string-match "^ " (buffer-name (car buffers)))
1171 (setq count (1+ count)))
1172 (setq buffers (cdr buffers)))
a6f8cbf1 1173 (and (not (window-minibuffer-p (frame-selected-window menu-updating-frame)))
1f50590a
RS
1174 (> count 1))))
1175
1f50590a 1176(put 'dired 'menu-enable
a6f8cbf1 1177 '(not (window-minibuffer-p (frame-selected-window menu-updating-frame))))
1f50590a 1178
a0213a97 1179;; Permit deleting frame if it would leave a visible or iconified frame.
82a74107
KH
1180(defun delete-frame-enabled-p ()
1181 "Return non-nil if `delete-frame' should be enabled in the menu bar."
1182 (let ((frames (frame-list))
27aa8132
RS
1183 (count 0))
1184 (while frames
1185 (if (frame-visible-p (car frames))
1186 (setq count (1+ count)))
1187 (setq frames (cdr frames)))
1188 (> count 1)))
2f1139a4 1189
30e19aee
RS
1190(defcustom yank-menu-length 20
1191 "*Maximum length to display in the yank-menu."
1192 :type 'integer
1193 :group 'mouse)
3dd92899
KH
1194
1195(defun menu-bar-update-yank-menu (string old)
1196 (let ((front (car (cdr yank-menu)))
1197 (menu-string (if (<= (length string) yank-menu-length)
1198 string
c3e1d435
RS
1199 (concat
1200 (substring string 0 (/ yank-menu-length 2))
1201 "..."
1202 (substring string (- (/ yank-menu-length 2)))))))
7c70a955
RS
1203 ;; Don't let the menu string be all dashes
1204 ;; because that has a special meaning in a menu.
1205 (if (string-match "\\`-+\\'" menu-string)
1206 (setq menu-string (concat menu-string " ")))
3dd92899
KH
1207 ;; If we're supposed to be extending an existing string, and that
1208 ;; string really is at the front of the menu, then update it in place.
1209 (if (and old (or (eq old (car front))
1210 (string= old (car front))))
dfabc98f 1211 (progn
3dd92899
KH
1212 (setcar front string)
1213 (setcar (cdr front) menu-string))
1214 (setcdr yank-menu
1215 (cons
1216 (cons string (cons menu-string 'menu-bar-select-yank))
1217 (cdr yank-menu)))))
1218 (if (> (length (cdr yank-menu)) kill-ring-max)
1219 (setcdr (nthcdr kill-ring-max yank-menu) nil)))
1220
4cca6fbd 1221(put 'menu-bar-select-yank 'apropos-inhibit t)
3dd92899
KH
1222(defun menu-bar-select-yank ()
1223 (interactive "*")
1224 (push-mark (point))
1225 (insert last-command-event))
40954111 1226\f
d0690d12
RS
1227(defvar list-buffers-directory nil)
1228
08e8171f
RS
1229(defvar menu-bar-update-buffers-maxbuf)
1230
09642d97
RS
1231(defun menu-bar-select-buffer ()
1232 (interactive)
1233 (switch-to-buffer last-command-event))
1234
1235(defun menu-bar-select-frame ()
1236 (interactive)
dfe5e27f
DL
1237 (let (frame)
1238 (dolist (f (frame-list))
1239 (when (equal last-command-event (frame-parameter f 'name))
1240 (setq frame f)))
1241 (make-frame-visible frame)
1242 (raise-frame frame)
1243 (select-frame frame)))
09642d97 1244
c171b42f
RS
1245(defun menu-bar-update-buffers-1 (elt)
1246 (cons (format
75547194
RS
1247 ;; (format "%%%ds %%s%%s %%s" menu-bar-update-buffers-maxbuf)
1248 "%s %s%s -- %s"
c171b42f
RS
1249 (cdr elt)
1250 (if (buffer-modified-p (car elt))
1251 "*" " ")
1252 (save-excursion
1253 (set-buffer (car elt))
1254 (if buffer-read-only "%" " "))
1255 (let ((file
1256 (or (buffer-file-name (car elt))
1257 (save-excursion
1258 (set-buffer (car elt))
1259 list-buffers-directory)
1260 "")))
1261 (setq file (or (file-name-directory file)
1262 ""))
1263 (if (> (length file) 20)
1264 (setq file (concat "..." (substring file -17))))
1265 file))
1266 (car elt)))
1267
06ff7539
RS
1268(defvar menu-bar-buffers-menu-list-buffers-entry nil)
1269
ee1dbceb 1270(defun menu-bar-update-buffers (&optional force)
29397c58 1271 ;; If user discards the Buffers item, play along.
4d587a6c 1272 (and (lookup-key (current-global-map) [menu-bar buffer])
ee1dbceb 1273 (or force (frame-or-buffer-changed-p))
29397c58
RS
1274 (let ((buffers (buffer-list))
1275 (frames (frame-list))
b3398af1 1276 (maxlen 0)
29397c58
RS
1277 buffers-menu frames-menu)
1278 ;; If requested, list only the N most recently selected buffers.
1279 (if (and (integerp buffers-menu-max-size)
1280 (> buffers-menu-max-size 1))
1281 (if (> (length buffers) buffers-menu-max-size)
1282 (setcdr (nthcdr buffers-menu-max-size buffers) nil)))
1283
1284 ;; Make the menu of buffers proper.
1285 (setq buffers-menu
1286 (cons "Select Buffer"
c171b42f
RS
1287 (let* ((buffer-list
1288 (mapcar 'list buffers))
1289 tail
08e8171f 1290 (menu-bar-update-buffers-maxbuf 0)
c171b42f
RS
1291 alist
1292 head)
1293 ;; Put into each element of buffer-list
1294 ;; the name for actual display,
1295 ;; perhaps truncated in the middle.
1296 (setq tail buffer-list)
1297 (while tail
1298 (let ((name (buffer-name (car (car tail)))))
1299 (setcdr (car tail)
1300 (if (> (length name) 27)
1301 (concat (substring name 0 12)
1302 "..."
1303 (substring name -12))
1304 name)))
1305 (setq tail (cdr tail)))
1306 ;; Compute the maximum length of any name.
1307 (setq tail buffer-list)
29397c58 1308 (while tail
c171b42f 1309 (or (eq ?\ (aref (cdr (car tail)) 0))
08e8171f
RS
1310 (setq menu-bar-update-buffers-maxbuf
1311 (max menu-bar-update-buffers-maxbuf
c171b42f 1312 (length (cdr (car tail))))))
29397c58 1313 (setq tail (cdr tail)))
c171b42f
RS
1314 ;; Set ALIST to an alist of the form
1315 ;; ITEM-STRING . BUFFER
1316 (setq tail buffer-list)
29397c58
RS
1317 (while tail
1318 (let ((elt (car tail)))
c171b42f 1319 (or (eq ?\ (aref (cdr elt) 0))
29397c58 1320 (setq alist (cons
c171b42f 1321 (menu-bar-update-buffers-1 elt)
29397c58
RS
1322 alist)))
1323 (and alist (> (length (car (car alist))) maxlen)
1324 (setq maxlen (length (car (car alist))))))
1325 (setq tail (cdr tail)))
1326 (setq alist (nreverse alist))
06ff7539
RS
1327 ;; Make the menu item for list-buffers
1328 ;; or reuse the one we already have.
1329 ;; The advantage in reusing one
1330 ;; is that it already has the keyboard equivalent
1331 ;; cached, so we save the time to look that up again.
1332 (or menu-bar-buffers-menu-list-buffers-entry
1333 (setq menu-bar-buffers-menu-list-buffers-entry
1334 (cons
1335 'list-buffers
1336 (cons
1337 ""
1338 'list-buffers))))
1339 ;; Update the item string for menu's new width.
1340 (setcar (cdr menu-bar-buffers-menu-list-buffers-entry)
1341 (concat (make-string (max (- (/ maxlen 2) 8) 0)
1342 ?\ )
1343 "List All Buffers"))
1344 ;; Now make the actual list of items,
1345 ;; ending with the list-buffers item.
f2116cf9 1346 (nconc (mapcar (lambda (pair)
10013d74
DL
1347 ;; This is somewhat risque, to use
1348 ;; the buffer name itself as the event
1349 ;; type to define, but it works.
1350 ;; It would not work to use the buffer
1351 ;; since a buffer as an event has its
1352 ;; own meaning.
1353 (nconc (list (buffer-name (cdr pair))
1354 (car pair)
1355 (cons nil nil))
1356 'menu-bar-select-buffer))
29397c58 1357 alist)
06ff7539 1358 (list menu-bar-buffers-menu-list-buffers-entry)))))
29397c58
RS
1359
1360
1361 ;; Make a Frames menu if we have more than one frame.
1362 (if (cdr frames)
b3398af1
RS
1363 (let ((name (concat (make-string (max (- (/ maxlen 2) 3) 0)
1364 ?\ )
1365 "Frames"))
1366 (frames-menu
1367 (cons 'keymap
1368 (cons "Select Frame"
10013d74
DL
1369 (mapcar
1370 (lambda (frame)
1371 (nconc
dfe5e27f 1372 (list (frame-parameter frame 'name)
ce9561ac 1373 (frame-parameter frame 'name)
10013d74
DL
1374 (cons nil nil))
1375 'menu-bar-select-frame))
b3398af1
RS
1376 frames)))))
1377 ;; Put it underneath the Buffers menu.
1378 (setq buffers-menu (cons (cons 'frames (cons name frames-menu))
1379 buffers-menu))))
29397c58
RS
1380 (if buffers-menu
1381 (setq buffers-menu (cons 'keymap buffers-menu)))
4d587a6c 1382 (define-key (current-global-map) [menu-bar buffer]
b3398af1 1383 (cons "Buffers" buffers-menu)))))
09642d97
RS
1384
1385(add-hook 'menu-bar-update-hook 'menu-bar-update-buffers)
2f1139a4 1386
3f557298
RS
1387(menu-bar-update-buffers)
1388
40954111
RS
1389;; this version is too slow
1390;;;(defun format-buffers-menu-line (buffer)
1391;;; "Returns a string to represent the given buffer in the Buffer menu.
1392;;;nil means the buffer shouldn't be listed. You can redefine this."
1393;;; (if (string-match "\\` " (buffer-name buffer))
1394;;; nil
1395;;; (save-excursion
1396;;; (set-buffer buffer)
1397;;; (let ((size (buffer-size)))
1398;;; (format "%s%s %-19s %6s %-15s %s"
1399;;; (if (buffer-modified-p) "*" " ")
1400;;; (if buffer-read-only "%" " ")
1401;;; (buffer-name)
1402;;; size
1403;;; mode-name
1404;;; (or (buffer-file-name) ""))))))
1405\f
25b048ee
RS
1406;;; Set up a menu bar menu for the minibuffer.
1407
32993295
SM
1408(dolist (map (list minibuffer-local-map
1409 ;; This shouldn't be necessary, but there's a funny
1410 ;; bug in keymap.c that I don't understand yet. -stef
d918e2dc
SM
1411 minibuffer-local-completion-map))
1412 (define-key map [menu-bar minibuf]
1413 (cons "Minibuf" (make-sparse-keymap "Minibuf"))))
1414
32993295 1415(let ((map minibuffer-local-completion-map))
d918e2dc
SM
1416 (define-key map [menu-bar minibuf ?\?]
1417 (list 'menu-item "List Completions" 'minibuffer-completion-help
1418 :help "Display all possible completions"))
1419 (define-key map [menu-bar minibuf space]
1420 (list 'menu-item "Complete Word" 'minibuffer-complete-word
1421 :help "Complete at most one word"))
1422 (define-key map [menu-bar minibuf tab]
1423 (list 'menu-item "Complete" 'minibuffer-complete
1424 :help "Complete as far as possible")))
1425
32993295 1426(let ((map minibuffer-local-map))
d918e2dc
SM
1427 (define-key map [menu-bar minibuf quit]
1428 (list 'menu-item "Quit" 'keyboard-escape-quit
1429 :help "Abort input and exit minibuffer"))
1430 (define-key map [menu-bar minibuf return]
1431 (list 'menu-item "Enter" 'exit-minibuffer
1432 :help "Terminate input and exit minibuffer")))
25b048ee 1433\f
88a26eb4
DL
1434(defcustom menu-bar-mode nil
1435 "Toggle display of a menu bar on each frame.
1436Setting this variable directly does not take effect;
1437use either \\[customize] or the function `menu-bar-mode'."
1438 :set (lambda (symbol value)
1439 (menu-bar-mode (or value 0)))
1440 :initialize 'custom-initialize-default
1441 :type 'boolean
1442 :group 'frames)
7b7d6615 1443
4f9b9060
PA
1444;;; `menu-bar-mode' doesn't really have a standard value, as it depend
1445;;; on where and how Emacs was started. By removing the standard
1446;;; value, we ensure that customize will always save it.
1447;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-11.
1448(put 'menu-bar-mode 'standard-value nil)
1449
6fa40743 1450(defun menu-bar-mode (&optional flag)
dfd29450 1451 "Toggle display of a menu bar on each frame.
057d49d1
RS
1452This command applies to all frames that exist and frames to be
1453created in the future.
e1d18ad8
RS
1454With a numeric argument, if the argument is positive,
1455turn on menu bars; otherwise, turn off menu bars."
dad8e392 1456 (interactive "P")
dad8e392 1457
7b7d6615
RS
1458 ;; Make menu-bar-mode and default-frame-alist consistent.
1459 (let ((default (assq 'menu-bar-lines default-frame-alist)))
1460 (if default
1461 (setq menu-bar-mode (not (eq (cdr default) 0)))
1462 (setq default-frame-alist
1463 (cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
1464 default-frame-alist))))
1465
1466 ;; Toggle or set the mode, according to FLAG.
1467 (setq menu-bar-mode (if (null flag) (not menu-bar-mode)
1468 (> (prefix-numeric-value flag) 0)))
1469
1470 ;; Apply it to default-frame-alist.
1471 (let ((parameter (assq 'menu-bar-lines default-frame-alist)))
1472 (if (consp parameter)
1473 (setcdr parameter (if menu-bar-mode 1 0))
1474 (setq default-frame-alist
1475 (cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
1476 default-frame-alist))))
1477
1478 ;; Apply it to existing frames.
1479 (let ((frames (frame-list)))
1480 (while frames
1481 (let ((height (cdr (assq 'height (frame-parameters (car frames))))))
1482 (modify-frame-parameters (car frames)
1483 (list (cons 'menu-bar-lines
1484 (if menu-bar-mode 1 0))))
1485 (modify-frame-parameters (car frames)
1486 (list (cons 'height height))))
1487 (setq frames (cdr frames)))))
1db87953 1488
bffa5d4d
RS
1489(provide 'menu-bar)
1490
235aa29b 1491;;; menu-bar.el ends here