*** empty log message ***
[bpt/emacs.git] / lisp / menu-bar.el
CommitLineData
55535639 1;;; menu-bar.el --- define a default menu bar
235aa29b 2
0d30b337 3;; Copyright (C) 1993, 1994, 1995, 2000, 2001, 2002, 2003, 2004,
d7a0267c 4;; 2005, 2006, 2007 Free Software Foundation, Inc.
b578f267 5
235aa29b 6;; Author: RMS
e4874521 7;; Maintainer: FSF
dbcee71a 8;; Keywords: internal, mouse
235aa29b 9
1db87953
RS
10;; This file is part of GNU Emacs.
11
12;; GNU Emacs is free software; you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
b4aa6026 14;; the Free Software Foundation; either version 3, or (at your option)
1db87953
RS
15;; any later version.
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
b578f267 23;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
1db87953 26
260130bb
KH
27;; Avishai Yacobi suggested some menu rearrangements.
28
55535639
PJ
29;;; Commentary:
30
b578f267
EN
31;;; Code:
32
d537086b
RS
33;;; User options:
34
30e19aee 35(defcustom buffers-menu-max-size 10
d537086b
RS
36 "*Maximum number of entries which may appear on the Buffers menu.
37If this is 10, then only the ten most-recently-selected buffers are shown.
38If this is nil, then all buffers are shown.
30e19aee
RS
39A large number or nil slows down menu responsiveness."
40 :type '(choice integer
41 (const :tag "All" nil))
42 :group 'mouse)
d537086b 43
b132f2b1
RM
44;; Don't clobber an existing menu-bar keymap, to preserve any menu-bar key
45;; definitions made in loaddefs.el.
46(or (lookup-key global-map [menu-bar])
47 (define-key global-map [menu-bar] (make-sparse-keymap "menu-bar")))
22390f50 48(defvar menu-bar-help-menu (make-sparse-keymap "Help"))
ffbdd83d
RS
49
50;; Force Help item to come last, after the major mode's own items.
0d31efcd
KH
51;; The symbol used to be called `help', but that gets confused with the
52;; help key.
53(setq menu-bar-final-items '(help-menu))
ffbdd83d 54
0d31efcd 55(define-key global-map [menu-bar help-menu] (cons "Help" menu-bar-help-menu))
ffbdd83d
RS
56(defvar menu-bar-tools-menu (make-sparse-keymap "Tools"))
57(define-key global-map [menu-bar tools] (cons "Tools" menu-bar-tools-menu))
7f315c7c
EZ
58;; This definition is just to show what this looks like.
59;; It gets overridden below when menu-bar-update-buffers is called.
60(define-key global-map [menu-bar buffer]
61 (cons "Buffers" (make-sparse-keymap "Buffers")))
62(defvar menu-bar-options-menu (make-sparse-keymap "Options"))
63(define-key global-map [menu-bar options]
64 (cons "Options" menu-bar-options-menu))
65(defvar menu-bar-edit-menu (make-sparse-keymap "Edit"))
66(define-key global-map [menu-bar edit] (cons "Edit" menu-bar-edit-menu))
b23b6fec
RS
67(defvar menu-bar-file-menu (make-sparse-keymap "File"))
68(define-key global-map [menu-bar file] (cons "File" menu-bar-file-menu))
1b009b97
RS
69
70;; This alias is for compatibility with 19.28 and before.
b23b6fec 71(defvar menu-bar-files-menu menu-bar-file-menu)
68703c11
MB
72
73;; This is referenced by some code below; it is defined in uniquify.el
74(defvar uniquify-buffer-name-style)
75
9bb8e471 76\f
7f315c7c 77;; The "File" menu items
b23b6fec 78(define-key menu-bar-file-menu [exit-emacs]
7f315c7c
EZ
79 '(menu-item "Exit Emacs" save-buffers-kill-emacs
80 :help "Save unsaved buffers, then exit"))
ffbdd83d 81
b23b6fec 82(define-key menu-bar-file-menu [separator-exit]
ffbdd83d
RS
83 '("--"))
84
7f315c7c
EZ
85;; Don't use delete-frame as event name because that is a special
86;; event.
b23b6fec 87(define-key menu-bar-file-menu [delete-this-frame]
7f315c7c
EZ
88 '(menu-item "Delete Frame" delete-frame
89 :visible (fboundp 'delete-frame)
90 :enable (delete-frame-enabled-p)
91 :help "Delete currently selected frame"))
b23b6fec 92(define-key menu-bar-file-menu [make-frame-on-display]
7f315c7c
EZ
93 '(menu-item "New Frame on Display..." make-frame-on-display
94 :visible (fboundp 'make-frame-on-display)
95 :help "Open a new frame on another display"))
b23b6fec 96(define-key menu-bar-file-menu [make-frame]
7f315c7c
EZ
97 '(menu-item "New Frame" make-frame-command
98 :visible (fboundp 'make-frame-command)
99 :help "Open a new frame"))
100
b23b6fec 101(define-key menu-bar-file-menu [one-window]
a7384d3d 102 '(menu-item "Remove Splits" delete-other-windows
7f315c7c 103 :enable (not (one-window-p t nil))
a7384d3d 104 :help "Selected window grows to fill the whole frame"))
ffbdd83d 105
b23b6fec 106(define-key menu-bar-file-menu [split-window]
7f315c7c 107 '(menu-item "Split Window" split-window-vertically
92752c3a
EZ
108 :enable (and (menu-bar-menu-frame-live-and-visible-p)
109 (menu-bar-non-minibuffer-window-p))
a7384d3d 110 :help "Split selected window in two windows"))
7f315c7c 111
b23b6fec 112(define-key menu-bar-file-menu [separator-window]
7f315c7c
EZ
113 '(menu-item "--"))
114
b23b6fec 115(define-key menu-bar-file-menu [ps-print-region]
438c2df0
GM
116 '(menu-item "Postscript Print Region (B+W)" ps-print-region
117 :enable mark-active
118 :help "Pretty-print marked region in black and white to PostScript printer"))
b23b6fec 119(define-key menu-bar-file-menu [ps-print-buffer]
438c2df0 120 '(menu-item "Postscript Print Buffer (B+W)" ps-print-buffer
92752c3a 121 :enable (menu-bar-menu-frame-live-and-visible-p)
438c2df0 122 :help "Pretty-print current buffer in black and white to PostScript printer"))
b23b6fec 123(define-key menu-bar-file-menu [ps-print-region-faces]
7f315c7c
EZ
124 '(menu-item "Postscript Print Region" ps-print-region-with-faces
125 :enable mark-active
126 :help "Pretty-print marked region to PostScript printer"))
b23b6fec 127(define-key menu-bar-file-menu [ps-print-buffer-faces]
7f315c7c 128 '(menu-item "Postscript Print Buffer" ps-print-buffer-with-faces
92752c3a 129 :enable (menu-bar-menu-frame-live-and-visible-p)
7f315c7c 130 :help "Pretty-print current buffer to PostScript printer"))
b23b6fec 131(define-key menu-bar-file-menu [print-region]
7f315c7c
EZ
132 '(menu-item "Print Region" print-region
133 :enable mark-active
134 :help "Print region between mark and current position"))
b23b6fec 135(define-key menu-bar-file-menu [print-buffer]
7f315c7c 136 '(menu-item "Print Buffer" print-buffer
92752c3a 137 :enable (menu-bar-menu-frame-live-and-visible-p)
7f315c7c
EZ
138 :help "Print current buffer with page headings"))
139
b23b6fec 140(define-key menu-bar-file-menu [separator-print]
7f315c7c 141 '(menu-item "--"))
9bb8e471 142
b23b6fec 143(define-key menu-bar-file-menu [recover-session]
bd649ca3 144 '(menu-item "Recover Crashed Session" recover-session
7f315c7c 145 :enable (and auto-save-list-file-prefix
db3ca487
NF
146 (file-directory-p
147 (file-name-directory auto-save-list-file-prefix))
148 (directory-files
7f315c7c
EZ
149 (file-name-directory auto-save-list-file-prefix)
150 nil
151 (concat "\\`"
152 (regexp-quote
153 (file-name-nondirectory
154 auto-save-list-file-prefix)))
155 t))
156 :help "Recover edits from a crashed session"))
b23b6fec 157(define-key menu-bar-file-menu [revert-buffer]
7f315c7c
EZ
158 '(menu-item "Revert Buffer" revert-buffer
159 :enable (or revert-buffer-function
160 revert-buffer-insert-file-contents-function
59dac63b 161 (and buffer-file-number
7f315c7c
EZ
162 (or (buffer-modified-p)
163 (not (verify-visited-file-modtime
164 (current-buffer))))))
165 :help "Re-read current buffer from its file"))
b23b6fec 166(define-key menu-bar-file-menu [write-file]
a7384d3d 167 '(menu-item "Save As..." write-file
92752c3a
EZ
168 :enable (and (menu-bar-menu-frame-live-and-visible-p)
169 (menu-bar-non-minibuffer-window-p))
7f315c7c 170 :help "Write current buffer to another file"))
b23b6fec 171(define-key menu-bar-file-menu [save-buffer]
a7384d3d 172 '(menu-item "Save" save-buffer
7f315c7c 173 :enable (and (buffer-modified-p)
7a98d821 174 (buffer-file-name)
92752c3a 175 (menu-bar-non-minibuffer-window-p))
7f315c7c
EZ
176 :help "Save current buffer to its file"))
177
b23b6fec 178(define-key menu-bar-file-menu [separator-save]
7f315c7c
EZ
179 '(menu-item "--"))
180
7b5836c7
JD
181(defun menu-find-file-existing ()
182 "Edit the existing file FILENAME."
183 (interactive)
184 (let* ((mustmatch (not (and (fboundp 'x-uses-old-gtk-dialog)
185 (x-uses-old-gtk-dialog))))
186 (filename (car (find-file-read-args "Find file: " mustmatch))))
187 (if mustmatch
188 (find-file-existing filename)
189 (find-file filename))))
190
191
b23b6fec 192(define-key menu-bar-file-menu [kill-buffer]
a7384d3d 193 '(menu-item "Close" kill-this-buffer
7f315c7c 194 :enable (kill-this-buffer-enabled-p)
a7384d3d 195 :help "Discard (kill) current buffer"))
b23b6fec 196(define-key menu-bar-file-menu [insert-file]
7f315c7c 197 '(menu-item "Insert File..." insert-file
92752c3a 198 :enable (menu-bar-non-minibuffer-window-p)
7f315c7c 199 :help "Insert another file into current buffer"))
b23b6fec 200(define-key menu-bar-file-menu [dired]
7f315c7c 201 '(menu-item "Open Directory..." dired
92752c3a 202 :enable (menu-bar-non-minibuffer-window-p)
220602e9 203 :help "Read a directory, to operate on its files"))
b23b6fec 204(define-key menu-bar-file-menu [open-file]
7b5836c7 205 '(menu-item "Open File..." menu-find-file-existing
92752c3a 206 :enable (menu-bar-non-minibuffer-window-p)
46bfc73b 207 :help "Read an existing file into an Emacs buffer"))
b23b6fec 208(define-key menu-bar-file-menu [new-file]
a7384d3d 209 '(menu-item "Visit New File..." find-file
92752c3a 210 :enable (menu-bar-non-minibuffer-window-p)
220602e9 211 :help "Specify a new file's name, to edit the file"))
7f315c7c 212
9bb8e471 213\f
7f315c7c 214;; The "Edit" menu items
bac6e4e2
KS
215
216;; The "Edit->Search" submenu
217(defvar menu-bar-last-search-type nil
218 "Type of last non-incremental search command called from the menu.")
219
220(defun nonincremental-repeat-search-forward ()
221 "Search forward for the previous search string or regexp."
222 (interactive)
223 (cond
224 ((and (eq menu-bar-last-search-type 'string)
225 search-ring)
226 (search-forward (car search-ring)))
227 ((and (eq menu-bar-last-search-type 'regexp)
228 regexp-search-ring)
229 (re-search-forward (car regexp-search-ring)))
230 (t
231 (error "No previous search"))))
232
233(defun nonincremental-repeat-search-backward ()
234 "Search backward for the previous search string or regexp."
235 (interactive)
236 (cond
237 ((and (eq menu-bar-last-search-type 'string)
238 search-ring)
239 (search-backward (car search-ring)))
240 ((and (eq menu-bar-last-search-type 'regexp)
241 regexp-search-ring)
242 (re-search-backward (car regexp-search-ring)))
243 (t
244 (error "No previous search"))))
245
ffbdd83d
RS
246(defun nonincremental-search-forward (string)
247 "Read a string and search for it nonincrementally."
248 (interactive "sSearch for string: ")
bac6e4e2 249 (setq menu-bar-last-search-type 'string)
ffbdd83d
RS
250 (if (equal string "")
251 (search-forward (car search-ring))
252 (isearch-update-ring string nil)
253 (search-forward string)))
254
255(defun nonincremental-search-backward (string)
256 "Read a string and search backward for it nonincrementally."
257 (interactive "sSearch for string: ")
bac6e4e2 258 (setq menu-bar-last-search-type 'string)
ffbdd83d
RS
259 (if (equal string "")
260 (search-backward (car search-ring))
261 (isearch-update-ring string nil)
262 (search-backward string)))
263
264(defun nonincremental-re-search-forward (string)
265 "Read a regular expression and search for it nonincrementally."
266 (interactive "sSearch for regexp: ")
bac6e4e2 267 (setq menu-bar-last-search-type 'regexp)
ffbdd83d
RS
268 (if (equal string "")
269 (re-search-forward (car regexp-search-ring))
270 (isearch-update-ring string t)
271 (re-search-forward string)))
272
273(defun nonincremental-re-search-backward (string)
274 "Read a regular expression and search backward for it nonincrementally."
275 (interactive "sSearch for regexp: ")
bac6e4e2 276 (setq menu-bar-last-search-type 'regexp)
ffbdd83d
RS
277 (if (equal string "")
278 (re-search-backward (car regexp-search-ring))
279 (isearch-update-ring string t)
280 (re-search-backward string)))
281
bac6e4e2 282(defvar menu-bar-search-menu (make-sparse-keymap "Search"))
ffbdd83d 283
bac6e4e2
KS
284;; The Edit->Search->Incremental Search menu
285(defvar menu-bar-i-search-menu
286 (make-sparse-keymap "Incremental Search"))
287
288(define-key menu-bar-i-search-menu [isearch-backward-regexp]
289 '(menu-item "Backward Regexp..." isearch-backward-regexp
290 :help "Search backwards for a regular expression as you type it"))
291(define-key menu-bar-i-search-menu [isearch-forward-regexp]
292 '(menu-item "Forward Regexp..." isearch-forward-regexp
293 :help "Search forward for a regular expression as you type it"))
294(define-key menu-bar-i-search-menu [isearch-backward]
295 '(menu-item "Backward String..." isearch-backward
296 :help "Search backwards for a string as you type it"))
297(define-key menu-bar-i-search-menu [isearch-forward]
298 '(menu-item "Forward String..." isearch-forward
299 :help "Search forward for a string as you type it"))
ffbdd83d 300
7f315c7c 301
bac6e4e2 302(define-key menu-bar-search-menu [i-search]
ad9f6125 303 (list 'menu-item "Incremental Search" menu-bar-i-search-menu))
bac6e4e2 304(define-key menu-bar-search-menu [separator-tag-isearch]
7f315c7c
EZ
305 '(menu-item "--"))
306
bac6e4e2
KS
307(define-key menu-bar-search-menu [tags-continue]
308 '(menu-item "Continue Tags Search" tags-loop-continue
309 :help "Continue last tags search operation"))
310(define-key menu-bar-search-menu [tags-srch]
bd649ca3 311 '(menu-item "Search tagged files..." tags-search
bac6e4e2
KS
312 :help "Search for a regexp in all tagged files"))
313(define-key menu-bar-search-menu [separator-tag-search]
bc6f3791 314 '(menu-item "--"))
ffbdd83d 315
fe74180c 316(define-key menu-bar-search-menu [repeat-search-back]
7f315c7c 317 '(menu-item "Repeat Backwards" nonincremental-repeat-search-backward
bac6e4e2
KS
318 :enable (or (and (eq menu-bar-last-search-type 'string)
319 search-ring)
320 (and (eq menu-bar-last-search-type 'regexp)
321 regexp-search-ring))
7f315c7c 322 :help "Repeat last search backwards"))
fe74180c 323(define-key menu-bar-search-menu [repeat-search-fwd]
bac6e4e2
KS
324 '(menu-item "Repeat Forward" nonincremental-repeat-search-forward
325 :enable (or (and (eq menu-bar-last-search-type 'string)
326 search-ring)
327 (and (eq menu-bar-last-search-type 'regexp)
328 regexp-search-ring))
7f315c7c 329 :help "Repeat last search forward"))
bac6e4e2
KS
330(define-key menu-bar-search-menu [separator-repeat-search]
331 '(menu-item "--"))
332
333(define-key menu-bar-search-menu [re-search-backward]
334 '(menu-item "Regexp Backwards..." nonincremental-re-search-backward
335 :help "Search backwards for a regular expression"))
336(define-key menu-bar-search-menu [re-search-forward]
337 '(menu-item "Regexp Forward..." nonincremental-re-search-forward
338 :help "Search forward for a regular expression"))
339
fe74180c 340(define-key menu-bar-search-menu [search-backward]
bac6e4e2 341 '(menu-item "String Backwards..." nonincremental-search-backward
7f315c7c 342 :help "Search backwards for a string"))
fe74180c 343(define-key menu-bar-search-menu [search-forward]
bac6e4e2 344 '(menu-item "String Forward..." nonincremental-search-forward
7f315c7c 345 :help "Search forward for a string"))
9bb8e471 346
bac6e4e2
KS
347;; The Edit->Replace submenu
348
349(defvar menu-bar-replace-menu (make-sparse-keymap "Replace"))
350
351(define-key menu-bar-replace-menu [tags-repl-continue]
352 '(menu-item "Continue Replace" tags-loop-continue
353 :help "Continue last tags replace operation"))
354(define-key menu-bar-replace-menu [tags-repl]
bd649ca3 355 '(menu-item "Replace in tagged files..." tags-query-replace
bac6e4e2
KS
356 :help "Interactively replace a regexp in all tagged files"))
357(define-key menu-bar-replace-menu [separator-replace-tags]
358 '(menu-item "--"))
359
360(define-key menu-bar-replace-menu [query-replace-regexp]
361 '(menu-item "Replace Regexp..." query-replace-regexp
362 :enable (not buffer-read-only)
363 :help "Replace regular expression interactively, ask about each occurrence"))
364(define-key menu-bar-replace-menu [query-replace]
365 '(menu-item "Replace String..." query-replace
366 :enable (not buffer-read-only)
367 :help "Replace string interactively, ask about each occurrence"))
368
7f315c7c
EZ
369;;; Assemble the top-level Edit menu items.
370(define-key menu-bar-edit-menu [props]
ad9f6125 371 '(menu-item "Text Properties" facemenu-menu))
3dd92899 372
2eef02ab
EZ
373(define-key menu-bar-edit-menu [fill]
374 '(menu-item "Fill" fill-region
375 :enable (and mark-active (not buffer-read-only))
376 :help
377 "Fill text in region to fit between left and right margin"))
378
379(define-key menu-bar-edit-menu [separator-bookmark]
7f315c7c
EZ
380 '(menu-item "--"))
381
382(define-key menu-bar-edit-menu [bookmark]
ad9f6125 383 '(menu-item "Bookmarks" menu-bar-bookmark-map))
7f315c7c 384
7f315c7c
EZ
385(defvar menu-bar-goto-menu (make-sparse-keymap "Go To"))
386
387(define-key menu-bar-goto-menu [set-tags-name]
bd649ca3 388 '(menu-item "Set Tags File Name..." visit-tags-table
7f315c7c
EZ
389 :help "Tell Tags commands which tag table file to use"))
390
391(define-key menu-bar-goto-menu [separator-tag-file]
392 '(menu-item "--"))
393
394(define-key menu-bar-goto-menu [apropos-tags]
bd649ca3 395 '(menu-item "Tags Apropos..." tags-apropos
7f315c7c
EZ
396 :help "Find function/variables whose names match regexp"))
397(define-key menu-bar-goto-menu [next-tag-otherw]
398 '(menu-item "Next Tag in Other Window"
277e0f9d 399 menu-bar-next-tag-other-window
0ae27881
EZ
400 :enable (and (boundp 'tags-location-ring)
401 (not (ring-empty-p tags-location-ring)))
7f315c7c 402 :help "Find next function/variable matching last tag name in another window"))
277e0f9d
RS
403
404(defun menu-bar-next-tag-other-window ()
405 "Find the next definition of the tag already specified."
406 (interactive)
407 (find-tag-other-window nil t))
408
409(defun menu-bar-next-tag ()
410 "Find the next definition of the tag already specified."
411 (interactive)
412 (find-tag nil t))
413
7f315c7c
EZ
414(define-key menu-bar-goto-menu [next-tag]
415 '(menu-item "Find Next Tag"
277e0f9d 416 menu-bar-next-tag
0ae27881
EZ
417 :enable (and (boundp 'tags-location-ring)
418 (not (ring-empty-p tags-location-ring)))
7f315c7c
EZ
419 :help "Find next function/variable matching last tag name"))
420(define-key menu-bar-goto-menu [find-tag-otherw]
421 '(menu-item "Find Tag in Other Window..." find-tag-other-window
422 :help "Find function/variable definition in another window"))
423(define-key menu-bar-goto-menu [find-tag]
424 '(menu-item "Find Tag..." find-tag
425 :help "Find definition of function or variable"))
426
427(define-key menu-bar-goto-menu [separator-tags]
428 '(menu-item "--"))
429
430(define-key menu-bar-goto-menu [end-of-buf]
431 '(menu-item "Goto End of Buffer" end-of-buffer))
432(define-key menu-bar-goto-menu [beg-of-buf]
433 '(menu-item "Goto Beginning of Buffer" beginning-of-buffer))
434(define-key menu-bar-goto-menu [go-to-pos]
435 '(menu-item "Goto Buffer Position..." goto-char
436 :help "Read a number N and go to buffer position N"))
437(define-key menu-bar-goto-menu [go-to-line]
438 '(menu-item "Goto Line..." goto-line
439 :help "Read a line number and go to that line"))
440
441(define-key menu-bar-edit-menu [goto]
442 (list 'menu-item "Go To" menu-bar-goto-menu))
443
bac6e4e2
KS
444(define-key menu-bar-edit-menu [replace]
445 (list 'menu-item "Replace" menu-bar-replace-menu))
446
7f315c7c
EZ
447(define-key menu-bar-edit-menu [search]
448 (list 'menu-item "Search" menu-bar-search-menu))
449
2eef02ab
EZ
450(define-key menu-bar-edit-menu [separator-search]
451 '(menu-item "--"))
452
496b7491
EZ
453(define-key menu-bar-edit-menu [mark-whole-buffer]
454 '(menu-item "Select All" mark-whole-buffer
455 :help "Mark the whole buffer for a subsequent cut/copy."))
7f315c7c
EZ
456(define-key menu-bar-edit-menu [clear]
457 '(menu-item "Clear" delete-region
458 :enable (and mark-active
459 (not buffer-read-only)
460 (not (mouse-region-match)))
461 :help
ae65cd84 462 "Delete the text in region between mark and current position"))
3dd92899
KH
463(defvar yank-menu (cons "Select Yank" nil))
464(fset 'yank-menu (cons 'keymap yank-menu))
b36e96c8
RS
465(define-key menu-bar-edit-menu [paste-from-menu]
466 '(menu-item "Paste from kill menu" yank-menu
467 :enable (and (cdr yank-menu) (not buffer-read-only))
468 :help "Choose a string from the kill ring and paste it"))
7f315c7c
EZ
469(define-key menu-bar-edit-menu [paste]
470 '(menu-item "Paste" yank
721c26b8
EZ
471 :enable (and
472 ;; Emacs compiled --without-x doesn't have
473 ;; x-selection-exists-p.
474 (fboundp 'x-selection-exists-p)
475 (x-selection-exists-p) (not buffer-read-only))
19bd58e8 476 :help "Paste (yank) text most recently cut/copied"))
7f315c7c
EZ
477(define-key menu-bar-edit-menu [copy]
478 '(menu-item "Copy" menu-bar-kill-ring-save
479 :enable mark-active
84932bf6
SM
480 :help "Copy text in region between mark and current position"
481 :keys "\\[kill-ring-save]"))
7f315c7c
EZ
482(define-key menu-bar-edit-menu [cut]
483 '(menu-item "Cut" kill-region
484 :enable (and mark-active (not buffer-read-only))
ae65cd84
DL
485 :help
486 "Cut (kill) text in region between mark and current position"))
7f315c7c
EZ
487(define-key menu-bar-edit-menu [undo]
488 '(menu-item "Undo" undo
489 :enable (and (not buffer-read-only)
490 (not (eq t buffer-undo-list))
491 (if (eq last-command 'undo)
37fec9be 492 (listp pending-undo-list)
7f315c7c
EZ
493 (consp buffer-undo-list)))
494 :help "Undo last operation"))
495
057d49d1 496
4c0317b1
RS
497(defun menu-bar-kill-ring-save (beg end)
498 (interactive "r")
499 (if (mouse-region-match)
b1a4cc61 500 (message "Selecting a region with the mouse does `copy' automatically")
4c0317b1
RS
501 (kill-ring-save beg end)))
502
f9cf0be2 503;; These are alternative definitions for the cut, paste and copy
4c0317b1 504;; menu items. Use them if your system expects these to use the clipboard.
f9cf0be2 505
f9cf0be2
RS
506(put 'clipboard-kill-region 'menu-enable 'mark-active)
507(put 'clipboard-kill-ring-save 'menu-enable 'mark-active)
508(put 'clipboard-yank 'menu-enable
721c26b8
EZ
509 '(or (and (fboundp 'x-selection-exists-p) (x-selection-exists-p))
510 (x-selection-exists-p 'CLIPBOARD)))
f9cf0be2
RS
511
512(defun clipboard-yank ()
ee497664 513 "Insert the clipboard contents, or the last stretch of killed text."
1d45e02e 514 (interactive "*")
f9cf0be2
RS
515 (let ((x-select-enable-clipboard t))
516 (yank)))
517
518(defun clipboard-kill-ring-save (beg end)
519 "Copy region to kill ring, and save in the X clipboard."
520 (interactive "r")
521 (let ((x-select-enable-clipboard t))
522 (kill-ring-save beg end)))
523
524(defun clipboard-kill-region (beg end)
525 "Kill the region, and save it in the X clipboard."
526 (interactive "r")
527 (let ((x-select-enable-clipboard t))
528 (kill-region beg end)))
529
530(defun menu-bar-enable-clipboard ()
5cbdeb30
RS
531 "Make CUT, PASTE and COPY (keys and menu bar items) use the clipboard.
532Do the same for the keys of the same name."
f9cf0be2 533 (interactive)
5754d7f2
RS
534 ;; We can't use constant list structure here because it becomes pure,
535 ;; and because it gets modified with cache data.
536 (define-key menu-bar-edit-menu [paste]
7f315c7c 537 (cons "Paste" (cons "Paste text from clipboard" 'clipboard-yank)))
5754d7f2 538 (define-key menu-bar-edit-menu [copy]
7f315c7c
EZ
539 (cons "Copy" (cons "Copy text in region to the clipboard"
540 'clipboard-kill-ring-save)))
5754d7f2 541 (define-key menu-bar-edit-menu [cut]
7f315c7c
EZ
542 (cons "Cut" (cons "Delete text in region and copy it to the clipboard"
543 'clipboard-kill-region)))
5cbdeb30 544
e3fa3057
DL
545 ;; These are Sun server keysyms for the Cut, Copy and Paste keys
546 ;; (also for XFree86 on Sun keyboard):
5cbdeb30
RS
547 (define-key global-map [f20] 'clipboard-kill-region)
548 (define-key global-map [f16] 'clipboard-kill-ring-save)
549 (define-key global-map [f18] 'clipboard-yank)
e3fa3057 550 ;; X11R6 versions:
5cbdeb30
RS
551 (define-key global-map [cut] 'clipboard-kill-region)
552 (define-key global-map [copy] 'clipboard-kill-ring-save)
553 (define-key global-map [paste] 'clipboard-yank))
f9cf0be2 554\f
7f315c7c 555;; The "Options" menu items
a9f53ffb
RS
556
557(defvar menu-bar-custom-menu (make-sparse-keymap "Customize"))
558
b0f661de 559(define-key menu-bar-custom-menu [customize-apropos-groups]
7f315c7c
EZ
560 '(menu-item "Groups Matching Regexp..." customize-apropos-groups
561 :help "Browse groups whose names match regexp"))
b0f661de 562(define-key menu-bar-custom-menu [customize-apropos-faces]
7f315c7c
EZ
563 '(menu-item "Faces Matching Regexp..." customize-apropos-faces
564 :help "Browse faces whose names match regexp"))
b0f661de 565(define-key menu-bar-custom-menu [customize-apropos-options]
7f315c7c
EZ
566 '(menu-item "Options Matching Regexp..." customize-apropos-options
567 :help "Browse options whose names match regexp"))
a9f53ffb 568(define-key menu-bar-custom-menu [customize-apropos]
7f315c7c
EZ
569 '(menu-item "Settings Matching Regexp..." customize-apropos
570 :help "Browse customizable settings whose names match regexp"))
6e0fbd65 571(define-key menu-bar-custom-menu [separator-1]
b0f661de 572 '("--"))
c9a86e71 573(define-key menu-bar-custom-menu [customize-group]
7f315c7c
EZ
574 '(menu-item "Specific Group..." customize-group
575 :help "Customize settings of specific group"))
a9f53ffb 576(define-key menu-bar-custom-menu [customize-face]
7f315c7c
EZ
577 '(menu-item "Specific Face..." customize-face
578 :help "Customize attributes of specific face"))
b0f661de 579(define-key menu-bar-custom-menu [customize-option]
7f315c7c 580 '(menu-item "Specific Option..." customize-option
6e0fbd65
KS
581 :help "Customize value of specific option"))
582(define-key menu-bar-custom-menu [separator-2]
583 '("--"))
6fe9c658 584(define-key menu-bar-custom-menu [customize-changed-options]
6e0fbd65
KS
585 '(menu-item "New Options..." customize-changed-options
586 :help "Options added or changed in recent Emacs versions"))
587(define-key menu-bar-custom-menu [customize-saved]
588 '(menu-item "Saved Options" customize-saved
589 :help "Customize previously saved options"))
b0f661de
RS
590(define-key menu-bar-custom-menu [separator-3]
591 '("--"))
e6354b3e 592(define-key menu-bar-custom-menu [customize-browse]
7f315c7c
EZ
593 '(menu-item "Browse Customization Groups" customize-browse
594 :help "Browse all customization groups"))
b0f661de 595(define-key menu-bar-custom-menu [customize]
7f315c7c
EZ
596 '(menu-item "Top-level Customization Group" customize
597 :help "The master group called `Emacs'"))
a9f53ffb 598
7f315c7c 599;(defvar menu-bar-preferences-menu (make-sparse-keymap "Preferences"))
bacb2d12 600
09bfa5ca
SM
601(defmacro menu-bar-make-mm-toggle (fname doc help &optional props)
602 "Make a menu-item for a global minor mode toggle.
603FNAME is the minor mode's name (variable and function).
7faa9d02 604DOC is the text to use for the menu entry.
09bfa5ca
SM
605HELP is the text to use for the tooltip.
606PROPS are additional properties."
72c0e394 607 `'(menu-item ,doc ,fname
4a4a82d6 608 ,@props
09bfa5ca
SM
609 :help ,help
610 :button (:toggle . (and (default-boundp ',fname)
611 (default-value ',fname)))))
612
a9d96061 613(defmacro menu-bar-make-toggle (name variable doc message help &rest body)
bacb2d12 614 `(progn
da67fa9a 615 (defun ,name (&optional interactively)
e8dd28e7 616 ,(concat "Toggle whether to " (downcase (substring help 0 1))
d02c57d3 617 (substring help 1) ".
da67fa9a
RS
618In an interactive call, record this option as a candidate for saving
619by \"Save Options\" in Custom buffers.")
620 (interactive "p")
bacb2d12 621 (if ,(if body `(progn . ,body)
bc6f3791 622 `(progn
4f9b9060
PA
623 (custom-load-symbol ',variable)
624 (let ((set (or (get ',variable 'custom-set) 'set-default))
625 (get (or (get ',variable 'custom-get) 'default-value)))
626 (funcall set ',variable (not (funcall get ',variable))))))
b36e96c8
RS
627 (message ,message "enabled globally")
628 (message ,message "disabled globally"))
a9d96061
SM
629 ;; The function `customize-mark-as-set' must only be called when
630 ;; a variable is set interactively, as the purpose is to mark it as
631 ;; a candidate for "Save Options", and we do not want to save options
632 ;; the user have already set explicitly in his init file.
da67fa9a 633 (if interactively (customize-mark-as-set ',variable)))
a9d96061 634 '(menu-item ,doc ,name
7f315c7c 635 :help ,help
4f9b9060
PA
636 :button (:toggle . (and (default-boundp ',variable)
637 (default-value ',variable))))))
7f315c7c
EZ
638
639;;; Assemble all the top-level items of the "Options" menu
640(define-key menu-bar-options-menu [customize]
ad9f6125 641 (list 'menu-item "Customize Emacs" menu-bar-custom-menu))
10013d74
DL
642
643(defun menu-bar-options-save ()
644 "Save current values of Options menu items using Custom."
645 (interactive)
414fd702 646 (let ((need-save nil))
5373d675
RS
647 ;; These are set with menu-bar-make-mm-toggle, which does not
648 ;; put on a customized-value property.
e1573595
LK
649 (dolist (elt '(line-number-mode column-number-mode size-indication-mode
650 cua-mode show-paren-mode transient-mark-mode
dea24608 651 blink-cursor-mode display-time-mode display-battery-mode))
5373d675
RS
652 (and (customize-mark-to-save elt)
653 (setq need-save t)))
4f9b9060 654 ;; These are set with `customize-set-variable'.
5373d675 655 (dolist (elt '(scroll-bar-mode
73ae229c
NR
656 debug-on-quit debug-on-error
657 tooltip-mode menu-bar-mode tool-bar-mode
8cfa1cd5 658 save-place uniquify-buffer-name-style fringe-mode
622a8785 659 indicate-empty-lines indicate-buffer-boundaries
537fd670 660 case-fold-search
f4990970 661 current-language-environment default-input-method
4f9b9060
PA
662 ;; Saving `text-mode-hook' is somewhat questionable,
663 ;; as we might get more than we bargain for, if
664 ;; other code may has added hooks as well.
665 ;; Nonetheless, not saving it would like be confuse
666 ;; more often.
667 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-11.
668 text-mode-hook))
669 (and (get elt 'customized-value)
670 (customize-mark-to-save elt)
671 (setq need-save t)))
414fd702
PA
672 ;; Save if we changed anything.
673 (when need-save
674 (custom-save-all))))
10013d74
DL
675
676(define-key menu-bar-options-menu [save]
48c9f054 677 '(menu-item "Save Options" menu-bar-options-save
10013d74
DL
678 :help "Save options set from the menu above"))
679
680(define-key menu-bar-options-menu [custom-separator]
681 '("--"))
682
3f9f1c1f 683(define-key menu-bar-options-menu [mouse-set-font]
bd649ca3 684 '(menu-item "Set Font/Fontset..." mouse-set-font
3f9f1c1f
RS
685 :visible (display-multi-font-p)
686 :help "Select a font from list of known fonts/fontsets"))
687
c2ca4bab
PJ
688;; The "Show/Hide" submenu of menu "Options"
689
690(defvar menu-bar-showhide-menu (make-sparse-keymap "Show/Hide"))
40189bd6 691
d0e1c755 692(define-key menu-bar-showhide-menu [column-number-mode]
a9d96061 693 (menu-bar-make-mm-toggle column-number-mode
e3fa3057 694 "Column Numbers"
a9d96061 695 "Show the current column number in the mode line"))
d0e1c755
PJ
696
697(define-key menu-bar-showhide-menu [line-number-mode]
a9d96061 698 (menu-bar-make-mm-toggle line-number-mode
e3fa3057 699 "Line Numbers"
a9d96061 700 "Show the current line number in the mode line"))
d0e1c755 701
e1573595
LK
702(define-key menu-bar-showhide-menu [size-indication-mode]
703 (menu-bar-make-mm-toggle size-indication-mode
704 "Size Indication"
705 "Show the size of the buffer in the mode line"))
706
d0e1c755
PJ
707(define-key menu-bar-showhide-menu [linecolumn-separator]
708 '("--"))
709
87737bc2
JL
710(define-key menu-bar-showhide-menu [showhide-battery]
711 (menu-bar-make-mm-toggle display-battery-mode
1f742f74 712 "Battery Status"
87737bc2
JL
713 "Display battery status information in mode line"))
714
40189bd6 715(define-key menu-bar-showhide-menu [showhide-date-time]
4a4a82d6 716 (menu-bar-make-mm-toggle display-time-mode
704c78e9
LT
717 "Time, Load and Mail"
718 "Display time, system load averages and \
719mail status in mode line"))
40189bd6
PJ
720
721(define-key menu-bar-showhide-menu [datetime-separator]
722 '("--"))
723
a9c6d330
PA
724(define-key menu-bar-showhide-menu [showhide-speedbar]
725 '(menu-item "Speedbar" speedbar-frame-mode
5f7b6438 726 :help "Display a Speedbar quick-navigation frame"
a9c6d330
PA
727 :button (:toggle
728 . (and (boundp 'speedbar-frame)
729 (frame-live-p (symbol-value 'speedbar-frame))
bc6f3791 730 (frame-visible-p
a9c6d330
PA
731 (symbol-value 'speedbar-frame))))))
732
622a8785 733(defvar menu-bar-showhide-fringe-menu (make-sparse-keymap "Fringe"))
f7481749 734
622a8785
LT
735(defvar menu-bar-showhide-fringe-ind-menu
736 (make-sparse-keymap "Buffer boundaries"))
f7481749 737
622a8785
LT
738(defun menu-bar-showhide-fringe-ind-customize ()
739 "Show customization buffer for `indicate-buffer-boundaries'."
f7481749 740 (interactive)
622a8785 741 (customize-variable 'indicate-buffer-boundaries))
f7481749 742
622a8785 743(define-key menu-bar-showhide-fringe-ind-menu [customize]
1f742f74 744 '(menu-item "Other (Customize)"
622a8785
LT
745 menu-bar-showhide-fringe-ind-customize
746 :help "Additional choices available through Custom buffer"
747 :visible (display-graphic-p)))
f7481749
KS
748
749(defun menu-bar-showhide-fringe-ind-mixed ()
622a8785 750 "Display top and bottom indicators in opposite fringes, arrows in right."
f7481749 751 (interactive)
622a8785
LT
752 (customize-set-variable 'indicate-buffer-boundaries
753 '((t . right) (top . left))))
f7481749
KS
754
755(define-key menu-bar-showhide-fringe-ind-menu [mixed]
1f742f74 756 '(menu-item "Opposite, Arrows Right" menu-bar-showhide-fringe-ind-mixed
622a8785
LT
757 :help
758 "Show top/bottom indicators in opposite fringes, arrows in right"
f7481749 759 :visible (display-graphic-p)
622a8785
LT
760 :button (:radio . (eq indicate-buffer-boundaries
761 '((t . right) (top . left))))))
f7481749
KS
762
763(defun menu-bar-showhide-fringe-ind-box ()
764 "Display top and bottom indicators in opposite fringes."
765 (interactive)
622a8785
LT
766 (customize-set-variable 'indicate-buffer-boundaries
767 '((top . left) (bottom . right))))
f7481749
KS
768
769(define-key menu-bar-showhide-fringe-ind-menu [box]
1f742f74 770 '(menu-item "Opposite, No Arrows" menu-bar-showhide-fringe-ind-box
f7481749
KS
771 :help "Show top/bottom indicators in opposite fringes, no arrows"
772 :visible (display-graphic-p)
622a8785
LT
773 :button (:radio . (eq indicate-buffer-boundaries
774 '((top . left) (bottom . right))))))
f7481749
KS
775
776(defun menu-bar-showhide-fringe-ind-right ()
622a8785 777 "Display buffer boundaries and arrows in the right fringe."
f7481749 778 (interactive)
622a8785 779 (customize-set-variable 'indicate-buffer-boundaries 'right))
f7481749
KS
780
781(define-key menu-bar-showhide-fringe-ind-menu [right]
1f742f74 782 '(menu-item "In Right Fringe" menu-bar-showhide-fringe-ind-right
622a8785 783 :help "Show buffer boundaries and arrows in right fringe"
f7481749 784 :visible (display-graphic-p)
622a8785 785 :button (:radio . (eq indicate-buffer-boundaries 'right))))
f7481749
KS
786
787(defun menu-bar-showhide-fringe-ind-left ()
622a8785 788 "Display buffer boundaries and arrows in the left fringe."
f7481749 789 (interactive)
622a8785 790 (customize-set-variable 'indicate-buffer-boundaries 'left))
f7481749
KS
791
792(define-key menu-bar-showhide-fringe-ind-menu [left]
1f742f74 793 '(menu-item "In Left Fringe" menu-bar-showhide-fringe-ind-left
622a8785 794 :help "Show buffer boundaries and arrows in left fringe"
f7481749 795 :visible (display-graphic-p)
622a8785 796 :button (:radio . (eq indicate-buffer-boundaries 'left))))
f7481749
KS
797
798(defun menu-bar-showhide-fringe-ind-none ()
622a8785 799 "Do not display any buffer boundary indicators."
f7481749 800 (interactive)
622a8785 801 (customize-set-variable 'indicate-buffer-boundaries nil))
f7481749
KS
802
803(define-key menu-bar-showhide-fringe-ind-menu [none]
1f742f74 804 '(menu-item "No Indicators" menu-bar-showhide-fringe-ind-none
622a8785 805 :help "Hide all buffer boundary indicators and arrows"
f7481749 806 :visible (display-graphic-p)
622a8785 807 :button (:radio . (eq indicate-buffer-boundaries nil))))
f7481749 808
622a8785 809(define-key menu-bar-showhide-fringe-menu [showhide-fringe-ind]
1f742f74 810 (list 'menu-item "Buffer Boundaries" menu-bar-showhide-fringe-ind-menu
622a8785
LT
811 :visible `(display-graphic-p)
812 :help "Indicate buffer boundaries in fringe"))
f7481749 813
622a8785
LT
814(define-key menu-bar-showhide-fringe-menu [indicate-empty-lines]
815 (menu-bar-make-toggle toggle-indicate-empty-lines indicate-empty-lines
1f742f74 816 "Empty Line Indicators"
622a8785 817 "Indicating of empty lines %s"
b36e96c8 818 "Indicate trailing empty lines in fringe, globally"))
8cfa1cd5
SJ
819
820(defun menu-bar-showhide-fringe-menu-customize ()
821 "Show customization buffer for `fringe-mode'."
822 (interactive)
823 (customize-variable 'fringe-mode))
824
825(define-key menu-bar-showhide-fringe-menu [customize]
1f742f74 826 '(menu-item "Customize Fringe" menu-bar-showhide-fringe-menu-customize
8cfa1cd5
SJ
827 :help "Detailed customization of fringe"
828 :visible (display-graphic-p)))
829
830(defun menu-bar-showhide-fringe-menu-customize-reset ()
277e0f9d 831 "Reset the fringe mode: display fringes on both sides of a window."
8cfa1cd5
SJ
832 (interactive)
833 (customize-set-variable 'fringe-mode nil))
834
835(define-key menu-bar-showhide-fringe-menu [default]
836 '(menu-item "Default" menu-bar-showhide-fringe-menu-customize-reset
837 :help "Default width fringe on both left and right side"
838 :visible (display-graphic-p)
277e0f9d 839 :button (:radio . (eq fringe-mode nil))))
8cfa1cd5 840
8cfa1cd5 841(defun menu-bar-showhide-fringe-menu-customize-right ()
277e0f9d 842 "Display fringes only on the right of each window."
8cfa1cd5 843 (interactive)
00cb70dc
MB
844 (require 'fringe)
845 (customize-set-variable 'fringe-mode '(0 . nil)))
8cfa1cd5
SJ
846
847(define-key menu-bar-showhide-fringe-menu [right]
848 '(menu-item "On the Right" menu-bar-showhide-fringe-menu-customize-right
849 :help "Fringe only on the right side"
850 :visible (display-graphic-p)
277e0f9d 851 :button (:radio . (equal fringe-mode '(0 . nil)))))
8cfa1cd5 852
4c0252a5
JD
853(defun menu-bar-showhide-fringe-menu-customize-left ()
854 "Display fringes only on the left of each window."
855 (interactive)
856 (require 'fringe)
857 (customize-set-variable 'fringe-mode '(nil . 0)))
858
859(define-key menu-bar-showhide-fringe-menu [left]
860 '(menu-item "On the Left" menu-bar-showhide-fringe-menu-customize-left
861 :help "Fringe only on the left side"
862 :visible (display-graphic-p)
863 :button (:radio . (equal fringe-mode '(nil . 0)))))
864
8cfa1cd5 865(defun menu-bar-showhide-fringe-menu-customize-disable ()
277e0f9d 866 "Do not display window fringes."
8cfa1cd5 867 (interactive)
00cb70dc
MB
868 (require 'fringe)
869 (customize-set-variable 'fringe-mode 0))
8cfa1cd5
SJ
870
871(define-key menu-bar-showhide-fringe-menu [none]
872 '(menu-item "None" menu-bar-showhide-fringe-menu-customize-disable
873 :help "Turn off fringe"
874 :visible (display-graphic-p)
277e0f9d 875 :button (:radio . (eq fringe-mode 0))))
8cfa1cd5
SJ
876
877(define-key menu-bar-showhide-menu [showhide-fringe]
878 (list 'menu-item "Fringe" menu-bar-showhide-fringe-menu
ad9f6125 879 :visible `(display-graphic-p)))
8cfa1cd5 880
c2ca4bab
PJ
881(defvar menu-bar-showhide-scroll-bar-menu (make-sparse-keymap "Scroll-bar"))
882
c2ca4bab 883(define-key menu-bar-showhide-scroll-bar-menu [right]
bc6f3791 884 '(menu-item "On the Right"
277e0f9d 885 menu-bar-right-scroll-bar
c2ca4bab 886 :help "Scroll-bar on the right side"
5f7b6438 887 :visible (display-graphic-p)
4f9b9060
PA
888 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars
889 (frame-parameters))) 'right))))
277e0f9d
RS
890(defun menu-bar-right-scroll-bar ()
891 "Display scroll bars on the right of each window."
892 (interactive)
893 (customize-set-variable 'scroll-bar-mode 'right))
c2ca4bab
PJ
894
895(define-key menu-bar-showhide-scroll-bar-menu [left]
bc6f3791 896 '(menu-item "On the Left"
277e0f9d 897 menu-bar-left-scroll-bar
c2ca4bab 898 :help "Scroll-bar on the left side"
5f7b6438 899 :visible (display-graphic-p)
4f9b9060
PA
900 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars
901 (frame-parameters))) 'left))))
c2ca4bab 902
277e0f9d
RS
903(defun menu-bar-left-scroll-bar ()
904 "Display scroll bars on the left of each window."
905 (interactive)
0e5ddee1 906 (customize-set-variable 'scroll-bar-mode 'left))
277e0f9d 907
c2ca4bab 908(define-key menu-bar-showhide-scroll-bar-menu [none]
bc6f3791 909 '(menu-item "None"
277e0f9d 910 menu-bar-no-scroll-bar
c2ca4bab 911 :help "Turn off scroll-bar"
5f7b6438 912 :visible (display-graphic-p)
4f9b9060
PA
913 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars
914 (frame-parameters))) nil))))
c2ca4bab 915
277e0f9d
RS
916(defun menu-bar-no-scroll-bar ()
917 "Turn off scroll bars."
918 (interactive)
919 (customize-set-variable 'scroll-bar-mode nil))
920
c2ca4bab 921(define-key menu-bar-showhide-menu [showhide-scroll-bar]
bc6f3791 922 (list 'menu-item "Scroll-bar" menu-bar-showhide-scroll-bar-menu
ad9f6125 923 :visible `(display-graphic-p)))
c2ca4bab 924
73ae229c
NR
925(define-key menu-bar-showhide-menu [showhide-tooltip-mode]
926 (list 'menu-item "Tooltips" 'tooltip-mode
5ead5d5e 927 :help "Turn tooltips on/off"
73ae229c
NR
928 :visible `(and (display-graphic-p) (fboundp 'x-show-tip))
929 :button `(:toggle . tooltip-mode)))
930
09bfa5ca 931(define-key menu-bar-showhide-menu [menu-bar-mode]
6a5af08f 932 '(menu-item "Menu-bar" toggle-menu-bar-mode-from-frame
5ead5d5e 933 :help "Turn menu-bar on/off"
6a5af08f 934 :button (:toggle . (> (frame-parameter nil 'menu-bar-lines) 0))))
c2ca4bab 935
c2ca4bab 936(define-key menu-bar-showhide-menu [showhide-tool-bar]
6a5af08f
KL
937 (list 'menu-item "Tool-bar" 'toggle-tool-bar-mode-from-frame
938 :help "Toggle tool-bar on/off"
5f7b6438 939 :visible `(display-graphic-p)
6a5af08f 940 :button `(:toggle . (> (frame-parameter nil 'tool-bar-lines) 0))))
c2ca4bab
PJ
941
942(define-key menu-bar-options-menu [showhide]
ad9f6125 943 (list 'menu-item "Show/Hide" menu-bar-showhide-menu))
c2ca4bab
PJ
944
945(define-key menu-bar-options-menu [showhide-separator]
946 '("--"))
947
7f315c7c
EZ
948(define-key menu-bar-options-menu [mule]
949 ;; It is better not to use backquote here,
950 ;; because that makes a bootstrapping problem
951 ;; if you need to recompile all the Lisp files using interpreted code.
952 (list 'menu-item "Mule (Multilingual Environment)" mule-menu-keymap
506c6d61
DL
953;; Most of the MULE menu actually does make sense in unibyte mode,
954;; e.g. language selection.
955;;; ':visible 'default-enable-multibyte-characters
ad9f6125 956 ))
7f315c7c
EZ
957;(setq menu-bar-final-items (cons 'mule menu-bar-final-items))
958;(define-key menu-bar-options-menu [preferences]
959; (list 'menu-item "Preferences" menu-bar-preferences-menu
960; :help "Toggle important global options"))
961
962(define-key menu-bar-options-menu [mule-separator]
506c6d61 963 '("--"))
bacb2d12
RS
964
965(define-key menu-bar-options-menu [debug-on-quit]
966 (menu-bar-make-toggle toggle-debug-on-quit debug-on-quit
e8dd28e7 967 "Enter Debugger on Quit/C-g" "Debug on Quit %s"
7f315c7c 968 "Enter Lisp debugger when C-g is pressed"))
bacb2d12
RS
969(define-key menu-bar-options-menu [debug-on-error]
970 (menu-bar-make-toggle toggle-debug-on-error debug-on-error
e8dd28e7
RS
971 "Enter Debugger on Error" "Debug on Error %s"
972 "Enter Lisp debugger when an error is signaled"))
7f315c7c 973(define-key menu-bar-options-menu [debugger-separator]
bacb2d12 974 '("--"))
7faa9d02
LT
975
976(define-key menu-bar-options-menu [blink-cursor-mode]
977 (menu-bar-make-mm-toggle blink-cursor-mode
978 "Blinking Cursor"
979 "Whether the cursor blinks (Blink Cursor mode)"))
980(define-key menu-bar-options-menu [cursor-separator]
981 '("--"))
982
bacb2d12
RS
983(define-key menu-bar-options-menu [save-place]
984 (menu-bar-make-toggle toggle-save-place-globally save-place
89f1709f 985 "Save Place in Files between Sessions"
bacb2d12 986 "Saving place in files %s"
aef1a2e6
KF
987 "Visit files of previous session when restarting Emacs"
988 (require 'saveplace)
989 ;; Do it by name, to avoid a free-variable
990 ;; warning during byte compilation.
991 (set-default
992 'save-place (not (symbol-value 'save-place)))))
4f9b9060 993
bacb2d12
RS
994(define-key menu-bar-options-menu [uniquify]
995 (menu-bar-make-toggle toggle-uniquify-buffer-names uniquify-buffer-name-style
89f1709f 996 "Use Directory Names in Buffer Names"
bacb2d12 997 "Directory name in buffer names (uniquify) %s"
e8dd28e7 998 "Uniquify buffer names by adding parent directory names"
bacb2d12
RS
999 (require 'uniquify)
1000 (setq uniquify-buffer-name-style
1001 (if (not uniquify-buffer-name-style)
1002 'forward))))
4f9b9060 1003
7f315c7c
EZ
1004(define-key menu-bar-options-menu [edit-options-separator]
1005 '("--"))
06753468 1006(define-key menu-bar-options-menu [cua-mode]
c960446b 1007 (menu-bar-make-mm-toggle cua-mode
1f742f74 1008 "C-x/C-c/C-v Cut and Paste (CUA)"
899481b7
KS
1009 "Use C-z/C-x/C-c/C-v keys for undo/cut/copy/paste"
1010 (:visible (or (not (boundp 'cua-enable-cua-keys))
1011 cua-enable-cua-keys))))
1012
1013(define-key menu-bar-options-menu [cua-emulation-mode]
1014 (menu-bar-make-mm-toggle cua-mode
1015 "Shift movement mark region (CUA)"
1016 "Use shifted movement keys to set and extend the region."
1017 (:visible (and (boundp 'cua-enable-cua-keys)
1018 (not cua-enable-cua-keys)))))
277e0f9d 1019
3f51f129
RS
1020(define-key menu-bar-options-menu [case-fold-search]
1021 (menu-bar-make-toggle toggle-case-fold-search case-fold-search
f5be22a2 1022 "Case-Insensitive Search"
b36e96c8
RS
1023 "Case-Insensitive Search %s"
1024 "Globally ignore letter-case in search"))
277e0f9d
RS
1025
1026(defun menu-bar-text-mode-auto-fill ()
1027 (interactive)
1028 (toggle-text-mode-auto-fill)
1029 ;; This is somewhat questionable, as `text-mode-hook'
1030 ;; might have changed outside customize.
1031 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-11.
1032 (customize-mark-as-set 'text-mode-hook))
1033
7f315c7c 1034(define-key menu-bar-options-menu [auto-fill-mode]
6b285f60 1035 '(menu-item "Word Wrap in Text Modes"
277e0f9d 1036 menu-bar-text-mode-auto-fill
6b285f60 1037 :help "Automatically fill text between left and right margins (Auto Fill)"
e51c889c
RS
1038 :button (:toggle . (if (listp text-mode-hook)
1039 (member 'turn-on-auto-fill text-mode-hook)
1040 (eq 'turn-on-auto-fill text-mode-hook)))))
43c35fd7 1041(define-key menu-bar-options-menu [truncate-lines]
0ac1c4cf 1042 '(menu-item "Truncate Long Lines in this Buffer"
277e0f9d 1043 toggle-truncate-lines
0ac1c4cf 1044 :help "Truncate long lines on the screen"
8248b7ca 1045 :button (:toggle . truncate-lines)
92752c3a 1046 :enable (menu-bar-menu-frame-live-and-visible-p)))
0ac1c4cf 1047
7f315c7c
EZ
1048(define-key menu-bar-options-menu [highlight-separator]
1049 '("--"))
1050(define-key menu-bar-options-menu [highlight-paren-mode]
09bfa5ca
SM
1051 (menu-bar-make-mm-toggle show-paren-mode
1052 "Paren Match Highlighting"
a9d96061 1053 "Highlight matching/mismatched parentheses at cursor (Show Paren mode)"))
bacb2d12 1054(define-key menu-bar-options-menu [transient-mark-mode]
a9d96061
SM
1055 (menu-bar-make-mm-toggle transient-mark-mode
1056 "Active Region Highlighting"
1057 "Make text in active region stand out in color (Transient Mark mode)"
1058 (:enable (not cua-mode))))
7f315c7c 1059
e5683624 1060\f
7f315c7c
EZ
1061;; The "Tools" menu items
1062
e4ca8f8c
EZ
1063(defun send-mail-item-name ()
1064 (let* ((known-send-mail-commands '((sendmail-user-agent . "sendmail")
1065 (mh-e-user-agent . "MH")
1066 (message-user-agent . "Gnus Message")
1067 (gnus-user-agent . "Gnus")))
1068 (name (assq mail-user-agent known-send-mail-commands)))
1069 (if name
1070 (setq name (cdr name))
1071 (setq name (symbol-name mail-user-agent))
1072 (if (string-match "\\(.+\\)-user-agent" name)
1073 (setq name (match-string 1 name))))
1074 name))
1075
0a1f9f1d
EZ
1076(defun read-mail-item-name ()
1077 (let* ((known-rmail-commands '((rmail . "RMAIL")
1078 (mh-rmail . "MH")
1079 (gnus . "Gnus")))
1080 (known (assq read-mail-command known-rmail-commands)))
1081 (if known (cdr known) (symbol-name read-mail-command))))
1082
7f315c7c
EZ
1083(defvar menu-bar-games-menu (make-sparse-keymap "Games"))
1084
1085(define-key menu-bar-tools-menu [games]
1086 (list 'menu-item "Games" menu-bar-games-menu))
1087
1088(define-key menu-bar-tools-menu [separator-games]
1089 '("--"))
1090
7bff37dc
EZ
1091(define-key menu-bar-games-menu [zone]
1092 '(menu-item "Zone Out" zone
1093 :help "Play tricks with Emacs display when Emacs is idle"))
7f315c7c
EZ
1094(define-key menu-bar-games-menu [tetris]
1095 '(menu-item "Tetris" tetris))
1096(define-key menu-bar-games-menu [solitaire]
1097 '(menu-item "Solitaire" solitaire))
1098(define-key menu-bar-games-menu [snake]
1099 '(menu-item "Snake" snake
1100 :help "Move snake around avoiding collisions"))
1101(define-key menu-bar-games-menu [mult]
1102 '(menu-item "Multiplication Puzzle" mpuz
df9b6d77 1103 :help "Exercise brain with multiplication"))
7f315c7c
EZ
1104(define-key menu-bar-games-menu [life]
1105 '(menu-item "Life" life
1106 :help "Watch how John Conway's cellular automaton evolves"))
1107(define-key menu-bar-games-menu [hanoi]
1108 '(menu-item "Towers of Hanoi" hanoi
1109 :help "Watch Towers-of-Hanoi puzzle solved by Emacs"))
1110(define-key menu-bar-games-menu [gomoku]
1111 '(menu-item "Gomoku" gomoku
1112 :help "Mark 5 contiguous squares (like tic-tac-toe)"))
1113(define-key menu-bar-games-menu [black-box]
1114 '(menu-item "Blackbox" blackbox
1115 :help "Find balls in a black box by shooting rays"))
1116(define-key menu-bar-games-menu [adventure]
1117 '(menu-item "Adventure" dunnet
1118 :help "Dunnet, a text Adventure game for Emacs"))
1119(define-key menu-bar-games-menu [5x5]
1120 '(menu-item "5x5" 5x5
1121 :help "Fill in all the squares on a 5x5 board"))
1122
1edd6ac4
CW
1123(define-key menu-bar-tools-menu [simple-calculator]
1124 '(menu-item "Simple Calculator" calculator
1125 :help "Invoke the Emacs built-in quick calculator"))
1126(define-key menu-bar-tools-menu [calc]
1127 '(menu-item "Programmable Calculator" calc
1128 :help "Invoke the Emacs built-in full scientific calculator"))
506c6d61 1129(define-key menu-bar-tools-menu [calendar]
5ead5d5e
CY
1130 '(menu-item "Calendar" calendar
1131 :help "Invoke the Emacs built-in calendar"))
9a45aa3d
EZ
1132
1133(define-key menu-bar-tools-menu [separator-net]
1134 '("--"))
1135
7f315c7c 1136(define-key menu-bar-tools-menu [directory-search]
ad9f6125 1137 '(menu-item "Directory Search" eudc-tools-menu))
506c6d61 1138(define-key menu-bar-tools-menu [compose-mail]
e4ca8f8c
EZ
1139 (list
1140 'menu-item `(format "Send Mail (with %s)" (send-mail-item-name))
1141 'compose-mail
1142 :visible `(and mail-user-agent (not (eq mail-user-agent 'ignore)))
1143 :help "Send a mail message"))
506c6d61 1144(define-key menu-bar-tools-menu [rmail]
0a1f9f1d
EZ
1145 (list
1146 'menu-item `(format "Read Mail (with %s)" (read-mail-item-name))
277e0f9d 1147 'menu-bar-read-mail
e4ca8f8c 1148 :visible `(and read-mail-command (not (eq read-mail-command 'ignore)))
0a1f9f1d 1149 :help "Read your mail and reply to it"))
277e0f9d
RS
1150
1151(defun menu-bar-read-mail ()
724f328c 1152 "Read mail using `read-mail-command'."
277e0f9d
RS
1153 (interactive)
1154 (call-interactively read-mail-command))
1155
7f315c7c 1156(define-key menu-bar-tools-menu [gnus]
0a1f9f1d 1157 '(menu-item "Read Net News (Gnus)" gnus
7f315c7c
EZ
1158 :help "Read network news groups"))
1159
1160(define-key menu-bar-tools-menu [separator-vc]
1161 '("--"))
1162
eccd9bd5 1163(define-key menu-bar-tools-menu [pcl-cvs]
ad9f6125 1164 '(menu-item "PCL-CVS" cvs-global-menu))
dc172b73 1165(define-key menu-bar-tools-menu [vc] nil) ;Create the place for the VC menu.
7f315c7c
EZ
1166
1167(define-key menu-bar-tools-menu [separator-compare]
1168 '("--"))
1169
1170(define-key menu-bar-tools-menu [ediff-misc]
ad9f6125 1171 '(menu-item "Ediff Miscellanea" menu-bar-ediff-misc-menu))
7f315c7c
EZ
1172(define-key menu-bar-tools-menu [epatch]
1173 '(menu-item "Apply Patch" menu-bar-epatch-menu))
1174(define-key menu-bar-tools-menu [ediff-merge]
ad9f6125 1175 '(menu-item "Merge" menu-bar-ediff-merge-menu))
7f315c7c 1176(define-key menu-bar-tools-menu [compare]
ad9f6125 1177 '(menu-item "Compare (Ediff)" menu-bar-ediff-menu))
7f315c7c
EZ
1178
1179(define-key menu-bar-tools-menu [separator-spell]
1180 '("--"))
1181
1182(define-key menu-bar-tools-menu [spell]
1183 '(menu-item "Spell Checking" ispell-menu-map))
1184
1185(define-key menu-bar-tools-menu [separator-prog]
1186 '("--"))
1187
1188(define-key menu-bar-tools-menu [gdb]
39328775
RS
1189 '(menu-item "Debugger (GDB)..." gdb
1190 :help "Debug a program from within Emacs with GDB"))
7f315c7c
EZ
1191(define-key menu-bar-tools-menu [shell-on-region]
1192 '(menu-item "Shell Command on Region..." shell-command-on-region
1193 :enable mark-active
1194 :help "Pass marked region to a shell command"))
1195(define-key menu-bar-tools-menu [shell]
1196 '(menu-item "Shell Command..." shell-command
1197 :help "Invoke a shell command and catch its output"))
1198(define-key menu-bar-tools-menu [compile]
1199 '(menu-item "Compile..." compile
1200 :help "Invoke compiler or Make, view compilation errors"))
1201(define-key menu-bar-tools-menu [grep]
1b45944f
CY
1202 '(menu-item "Search Files (Grep)..." grep
1203 :help "Search files for strings or regexps (with Grep)"))
7f315c7c
EZ
1204
1205\f
1206;; The "Help" menu items
1207
e5683624
RS
1208(defvar menu-bar-describe-menu (make-sparse-keymap "Describe"))
1209
7f315c7c
EZ
1210(define-key menu-bar-describe-menu [mule-diag]
1211 '(menu-item "Show All of Mule Status" mule-diag
1212 :visible default-enable-multibyte-characters
1213 :help "Display multilingual environment settings"))
df5bde6d
SS
1214(define-key menu-bar-describe-menu [describe-coding-system-briefly]
1215 '(menu-item "Describe Coding System (Briefly)..."
1216 describe-current-coding-system-briefly
1217 :visible default-enable-multibyte-characters))
7f315c7c
EZ
1218(define-key menu-bar-describe-menu [describe-coding-system]
1219 '(menu-item "Describe Coding System..." describe-coding-system
1220 :visible default-enable-multibyte-characters))
1221(define-key menu-bar-describe-menu [describe-input-method]
1222 '(menu-item "Describe Input Method..." describe-input-method
1223 :visible default-enable-multibyte-characters
1224 :help "Keyboard layout for specific input method"))
1225(define-key menu-bar-describe-menu [describe-language-environment]
506c6d61 1226 (list 'menu-item "Describe Language Environment"
ad9f6125 1227 describe-language-environment-map))
7f315c7c
EZ
1228
1229(define-key menu-bar-describe-menu [separator-desc-mule]
506c6d61 1230 '("--"))
7f315c7c
EZ
1231
1232(define-key menu-bar-describe-menu [list-keybindings]
1233 '(menu-item "List Key Bindings" describe-bindings
eeb935fd 1234 :help "Display all current keybindings (keyboard shortcuts)"))
df5bde6d
SS
1235(define-key menu-bar-describe-menu [describe-current-display-table]
1236 '(menu-item "Describe Display Table" describe-current-display-table
1237 :help "Describe the current display table"))
1238(define-key menu-bar-describe-menu [describe-face]
1239 '(menu-item "Describe Face..." describe-face
1240 :help "Display the properties of a face"))
e5683624 1241(define-key menu-bar-describe-menu [describe-variable]
7f315c7c
EZ
1242 '(menu-item "Describe Variable..." describe-variable
1243 :help "Display documentation of variable/option"))
e5683624 1244(define-key menu-bar-describe-menu [describe-function]
7f315c7c
EZ
1245 '(menu-item "Describe Function..." describe-function
1246 :help "Display documentation of function/command"))
686e63b3 1247(define-key menu-bar-describe-menu [describe-key-1]
c6a816df 1248 '(menu-item "Describe Key or Mouse Operation..." describe-key
506c6d61 1249 ;; Users typically don't identify keys and menu items...
686e63b3 1250 :help "Display documentation of command bound to a \
c6a816df 1251key, a click, or a menu-item"))
df5bde6d
SS
1252(define-key menu-bar-describe-menu [describe-mode]
1253 '(menu-item "Describe Buffer Modes" describe-mode
1254 :help "Describe this buffer's major and minor mode"))
1255
1256(defvar menu-bar-apropos-menu (make-sparse-keymap "Apropos"))
5275d6a8
EZ
1257(defun menu-bar-read-lispref ()
1258 "Display the Emacs Lisp Reference manual in Info mode."
1259 (interactive)
1260 (info "elisp"))
1261
1262(defun menu-bar-read-lispintro ()
1263 "Display the Introduction to Emacs Lisp Programming in Info mode."
1264 (interactive)
1265 (info "eintr"))
1266
5275d6a8
EZ
1267(defun search-emacs-glossary ()
1268 "Display the Glossary node of the Emacs manual in Info mode."
1269 (interactive)
1270 (info "(emacs)Glossary"))
1271
1272(defun emacs-index-search (topic)
1273 "Look up TOPIC in the indices of the Emacs User Manual."
1274 (interactive "sSubject to look up: ")
1275 (info "emacs")
1276 (Info-index topic))
1277
1278(defun elisp-index-search (topic)
1279 "Look up TOPIC in the indices of the Emacs Lisp Reference Manual."
1280 (interactive "sSubject to look up: ")
1281 (info "elisp")
1282 (Info-index topic))
df5bde6d
SS
1283
1284(define-key menu-bar-apropos-menu [apropos-documentation]
5275d6a8
EZ
1285 '(menu-item "Search Documentation Strings..." apropos-documentation
1286 :help
1287 "Find functions and variables whose doc strings match a regexp"))
df5bde6d 1288(define-key menu-bar-apropos-menu [apropos]
5275d6a8
EZ
1289 '(menu-item "Find Any Object by Name..." apropos
1290 :help "Find symbols of any kind whose names match a regexp"))
df5bde6d 1291(define-key menu-bar-apropos-menu [apropos-value]
5275d6a8
EZ
1292 '(menu-item "Find Options by Value..." apropos-value
1293 :help "Find variables whose values match a regexp"))
df5bde6d 1294(define-key menu-bar-apropos-menu [apropos-variables]
5275d6a8
EZ
1295 '(menu-item "Find Options by Name..." apropos-variable
1296 :help "Find variables whose names match a regexp"))
df5bde6d 1297(define-key menu-bar-apropos-menu [apropos-commands]
5275d6a8
EZ
1298 '(menu-item "Find Commands by Name..." apropos-command
1299 :help "Find commands whose names match a regexp"))
1300(define-key menu-bar-apropos-menu [sep1]
1301 '("--"))
e7682d92
EZ
1302(define-key menu-bar-apropos-menu [emacs-command-node]
1303 '(menu-item "Look Up Command in User Manual..." Info-goto-emacs-command-node
1304 :help "Display manual section that describes a command"))
1305(define-key menu-bar-apropos-menu [emacs-key-command-node]
1306 '(menu-item "Look Up Key in User Manual..." Info-goto-emacs-key-command-node
1307 :help "Display manual section that describes a key"))
5275d6a8
EZ
1308(define-key menu-bar-apropos-menu [elisp-index-search]
1309 '(menu-item "Look Up Subject in ELisp Manual..." elisp-index-search
1310 :help "Find description of a subject in Emacs Lisp manual"))
1311(define-key menu-bar-apropos-menu [emacs-index-search]
1312 '(menu-item "Look Up Subject in User Manual..." emacs-index-search
1313 :help "Find description of a subject in Emacs User manual"))
1314(define-key menu-bar-apropos-menu [emacs-glossary]
1315 '(menu-item "Emacs Terminology" search-emacs-glossary
1316 :help "Display the Glossary section of the Emacs manual"))
1317
1318(defvar menu-bar-manuals-menu (make-sparse-keymap "More Manuals"))
e5683624
RS
1319
1320(define-key menu-bar-manuals-menu [man]
7f315c7c
EZ
1321 '(menu-item "Read Man Page..." manual-entry
1322 :help "Man-page docs for external commands and libraries"))
e5683624
RS
1323(define-key menu-bar-manuals-menu [sep2]
1324 '("--"))
5275d6a8
EZ
1325(define-key menu-bar-manuals-menu [order-emacs-manuals]
1326 '(menu-item "Ordering Manuals" view-order-manuals
1327 :help "How to order manuals from the Free Software Foundation"))
372ef0ab
EZ
1328(define-key menu-bar-manuals-menu [info-apropos]
1329 '(menu-item "Lookup Subject in all manuals..." info-apropos
1330 :help "Find description of a subject in all installed manuals"))
e5683624 1331(define-key menu-bar-manuals-menu [info]
5275d6a8 1332 '(menu-item "All Other Manuals (Info)" Info-directory
7f315c7c 1333 :help "Read any of the installed manuals"))
5275d6a8
EZ
1334(define-key menu-bar-manuals-menu [info-elisp]
1335 '(menu-item "Emacs Lisp Reference" menu-bar-read-lispref
1336 :help "Read the Emacs Lisp Reference manual"))
1337(define-key menu-bar-manuals-menu [info-elintro]
1338 '(menu-item "Introduction to Emacs Lisp" menu-bar-read-lispintro
1339 :help "Read the Introduction to Emacs Lisp Programming"))
bacb2d12 1340
3a155dd6
JL
1341(define-key menu-bar-help-menu [describe-project]
1342 '(menu-item "About GNU" describe-project
1343 :help "About the GNU System, GNU Project, and GNU/Linux"))
1344(define-key menu-bar-help-menu [about]
1345 '(menu-item "About Emacs" about-emacs
1346 :help "Display version number, copyright info, and basic help"))
5275d6a8 1347(define-key menu-bar-help-menu [sep4]
7f315c7c 1348 '("--"))
f3e1e0dd 1349(define-key menu-bar-help-menu [describe-no-warranty]
7f315c7c
EZ
1350 '(menu-item "(Non)Warranty" describe-no-warranty
1351 :help "Explain that Emacs has NO WARRANTY"))
f3e1e0dd 1352(define-key menu-bar-help-menu [describe-copying]
7f315c7c
EZ
1353 '(menu-item "Copying Conditions" describe-copying
1354 :help "Show the Emacs license (GPL)"))
f3e1e0dd 1355(define-key menu-bar-help-menu [describe-distribution]
7f315c7c
EZ
1356 '(menu-item "Getting New Versions" describe-distribution
1357 :help "How to get latest versions of Emacs"))
277e0f9d
RS
1358(defun menu-bar-help-extra-packages ()
1359 "Display help about some additional packages available for Emacs."
1360 (interactive)
1361 (let (enable-local-variables)
1362 (view-file (expand-file-name "MORE.STUFF"
1363 data-directory))
1364 (goto-address)))
e5683624
RS
1365(define-key menu-bar-help-menu [sep2]
1366 '("--"))
3a155dd6
JL
1367(define-key menu-bar-help-menu [more]
1368 '(menu-item "External Packages" menu-bar-help-extra-packages
1369 :help "Lisp packages distributed separately for use in Emacs"))
260130bb 1370(define-key menu-bar-help-menu [finder-by-keyword]
bd649ca3 1371 '(menu-item "Find Emacs Packages" finder-by-keyword
7f315c7c 1372 :help "Find packages and features by keyword"))
5275d6a8 1373(define-key menu-bar-help-menu [manuals]
ad9f6125 1374 (list 'menu-item "More Manuals" menu-bar-manuals-menu))
5275d6a8 1375(define-key menu-bar-help-menu [emacs-manual]
277e0f9d 1376 '(menu-item "Read the Emacs Manual" info-emacs-manual
5275d6a8 1377 :help "Full documentation of Emacs features"))
e5683624 1378(define-key menu-bar-help-menu [describe]
ad9f6125 1379 (list 'menu-item "Describe" menu-bar-describe-menu))
5275d6a8 1380(define-key menu-bar-help-menu [apropos]
ad9f6125 1381 (list 'menu-item "Search Documentation" menu-bar-apropos-menu))
e5683624
RS
1382(define-key menu-bar-help-menu [sep1]
1383 '("--"))
3a155dd6
JL
1384(define-key menu-bar-help-menu [eliza]
1385 '(menu-item "Emacs Psychotherapist" doctor
1386 :help "Our doctor will help you feel better"))
7f315c7c
EZ
1387(define-key menu-bar-help-menu [report-emacs-bug]
1388 '(menu-item "Send Bug Report..." report-emacs-bug
1389 :help "Send e-mail to Emacs maintainers"))
1390(define-key menu-bar-help-menu [emacs-problems]
5ead5d5e
CY
1391 '(menu-item "Emacs Known Problems" view-emacs-problems
1392 :help "Read about known problems with Emacs"))
7f315c7c
EZ
1393(define-key menu-bar-help-menu [emacs-news]
1394 '(menu-item "Emacs News" view-emacs-news
1395 :help "New features of this version"))
1396(define-key menu-bar-help-menu [emacs-faq]
5ead5d5e
CY
1397 '(menu-item "Emacs FAQ" view-emacs-FAQ
1398 :help "Frequently asked (and answered) questions about Emacs"))
277e0f9d
RS
1399
1400(defun help-with-tutorial-spec-language ()
1401 "Use the Emacs tutorial, specifying which language you want."
f1180544 1402 (interactive)
277e0f9d
RS
1403 (help-with-tutorial t))
1404
451ec4e3
GM
1405(define-key menu-bar-help-menu [emacs-tutorial-language-specific]
1406 '(menu-item "Emacs Tutorial (choose language)..."
277e0f9d 1407 help-with-tutorial-spec-language
451ec4e3 1408 :help "Learn how to use Emacs (choose a language)"))
7f315c7c
EZ
1409(define-key menu-bar-help-menu [emacs-tutorial]
1410 '(menu-item "Emacs Tutorial" help-with-tutorial
1411 :help "Learn how to use Emacs"))
889560ed 1412
92752c3a
EZ
1413(defun menu-bar-menu-frame-live-and-visible-p ()
1414 "Return non-nil if the menu frame is alive and visible.
1415The menu frame is the frame for which we are updating the menu."
55d42133 1416 (let ((menu-frame (or menu-updating-frame (selected-frame))))
92752c3a
EZ
1417 (and (frame-live-p menu-frame)
1418 (frame-visible-p menu-frame))))
1419
1420(defun menu-bar-non-minibuffer-window-p ()
1421 "Return non-nil if selected window of the menu frame is not a minibuf window.
1422
1423See the documentation of `menu-bar-menu-frame-live-and-visible-p'
1424for the definition of the menu frame."
55d42133 1425 (let ((menu-frame (or menu-updating-frame (selected-frame))))
92752c3a
EZ
1426 (not (window-minibuffer-p (frame-selected-window menu-frame)))))
1427
6eee5abf 1428(defun kill-this-buffer () ; for the menu bar
506c6d61 1429 "Kill the current buffer."
db774a16
RS
1430 (interactive)
1431 (kill-buffer (current-buffer)))
1432
2f1139a4
RS
1433(defun kill-this-buffer-enabled-p ()
1434 (let ((count 0)
1435 (buffers (buffer-list)))
1436 (while buffers
1437 (or (string-match "^ " (buffer-name (car buffers)))
1438 (setq count (1+ count)))
1439 (setq buffers (cdr buffers)))
92752c3a 1440 (and (menu-bar-non-minibuffer-window-p)
1f50590a
RS
1441 (> count 1))))
1442
92752c3a 1443(put 'dired 'menu-enable '(menu-bar-non-minibuffer-window-p))
1f50590a 1444
a0213a97 1445;; Permit deleting frame if it would leave a visible or iconified frame.
82a74107
KH
1446(defun delete-frame-enabled-p ()
1447 "Return non-nil if `delete-frame' should be enabled in the menu bar."
1448 (let ((frames (frame-list))
27aa8132
RS
1449 (count 0))
1450 (while frames
1451 (if (frame-visible-p (car frames))
1452 (setq count (1+ count)))
1453 (setq frames (cdr frames)))
1454 (> count 1)))
2f1139a4 1455
30e19aee
RS
1456(defcustom yank-menu-length 20
1457 "*Maximum length to display in the yank-menu."
1458 :type 'integer
1459 :group 'mouse)
3dd92899
KH
1460
1461(defun menu-bar-update-yank-menu (string old)
1462 (let ((front (car (cdr yank-menu)))
1463 (menu-string (if (<= (length string) yank-menu-length)
1464 string
c3e1d435
RS
1465 (concat
1466 (substring string 0 (/ yank-menu-length 2))
1467 "..."
1468 (substring string (- (/ yank-menu-length 2)))))))
7c70a955
RS
1469 ;; Don't let the menu string be all dashes
1470 ;; because that has a special meaning in a menu.
1471 (if (string-match "\\`-+\\'" menu-string)
1472 (setq menu-string (concat menu-string " ")))
3dd92899
KH
1473 ;; If we're supposed to be extending an existing string, and that
1474 ;; string really is at the front of the menu, then update it in place.
1475 (if (and old (or (eq old (car front))
1476 (string= old (car front))))
dfabc98f 1477 (progn
3dd92899
KH
1478 (setcar front string)
1479 (setcar (cdr front) menu-string))
1480 (setcdr yank-menu
1481 (cons
1482 (cons string (cons menu-string 'menu-bar-select-yank))
1483 (cdr yank-menu)))))
1484 (if (> (length (cdr yank-menu)) kill-ring-max)
1485 (setcdr (nthcdr kill-ring-max yank-menu) nil)))
1486
4cca6fbd 1487(put 'menu-bar-select-yank 'apropos-inhibit t)
3dd92899 1488(defun menu-bar-select-yank ()
5fb64ecc
EZ
1489 "Insert the stretch of previously-killed text selected from menu.
1490The menu shows all the killed text sequences stored in `kill-ring'."
3dd92899
KH
1491 (interactive "*")
1492 (push-mark (point))
1493 (insert last-command-event))
68310f2a 1494
40954111 1495\f
68310f2a
MB
1496(defcustom buffers-menu-show-directories 'unless-uniquify
1497 "If non-nil, show directories in the Buffers menu for buffers that have them.
1498The special value `unless-uniquify' means that directories will be shown
1499unless `uniquify-buffer-name-style' is non-nil (in which case, buffer
1500names should include enough of a buffer's directory to distinguish it
1501from other buffers).
1502
1503Setting this variable directly does not take effect until next time the
1504Buffers menu is regenerated."
1505 :set (lambda (symbol value)
1506 (set symbol value)
1507 (menu-bar-update-buffers t))
1508 :initialize 'custom-initialize-default
1509 :type '(choice (const :tag "Never" nil)
1510 (const :tag "Unless uniquify is enabled" unless-uniquify)
1511 (const :tag "Always" t))
1512 :group 'menu)
1513
1514(defcustom buffers-menu-show-status t
1515 "If non-nil, show modified/read-only status of buffers in the Buffers menu.
1516Setting this variable directly does not take effect until next time the
1517Buffers menu is regenerated."
1518 :set (lambda (symbol value)
1519 (set symbol value)
1520 (menu-bar-update-buffers t))
1521 :initialize 'custom-initialize-default
1522 :type 'boolean
1523 :group 'menu)
1524
d0690d12
RS
1525(defvar list-buffers-directory nil)
1526
08e8171f
RS
1527(defvar menu-bar-update-buffers-maxbuf)
1528
09642d97
RS
1529(defun menu-bar-select-buffer ()
1530 (interactive)
1531 (switch-to-buffer last-command-event))
1532
1533(defun menu-bar-select-frame ()
1534 (interactive)
dfe5e27f
DL
1535 (let (frame)
1536 (dolist (f (frame-list))
1537 (when (equal last-command-event (frame-parameter f 'name))
1538 (setq frame f)))
f48e845f
RS
1539 ;; FRAME can be nil when user specifies the selected frame.
1540 (setq frame (or frame (selected-frame)))
1541 (make-frame-visible frame)
1542 (raise-frame frame)
1543 (select-frame frame)))
09642d97 1544
c171b42f 1545(defun menu-bar-update-buffers-1 (elt)
68703c11
MB
1546 (let* ((buf (car elt))
1547 (file
68310f2a
MB
1548 (and (if (eq buffers-menu-show-directories 'unless-uniquify)
1549 (or (not (boundp 'uniquify-buffer-name-style))
1550 (null uniquify-buffer-name-style))
1551 buffers-menu-show-directories)
68703c11 1552 (or (buffer-file-name buf)
68310f2a 1553 (buffer-local-value 'list-buffers-directory buf)))))
68703c11
MB
1554 (when file
1555 (setq file (file-name-directory file)))
1556 (when (and file (> (length file) 20))
1557 (setq file (concat "..." (substring file -17))))
68310f2a
MB
1558 (cons (if buffers-menu-show-status
1559 (let ((mod (if (buffer-modified-p buf) "*" ""))
1560 (ro (if (buffer-local-value 'buffer-read-only buf) "%" "")))
1561 (if file
1562 (format "%s %s%s -- %s" (cdr elt) mod ro file)
1563 (format "%s %s%s" (cdr elt) mod ro)))
1564 (if file
1565 (format "%s -- %s" (cdr elt) file)
1566 (cdr elt)))
68703c11
MB
1567 buf)))
1568
887d3c94
MB
1569;; Used to cache the menu entries for commands in the Buffers menu
1570(defvar menu-bar-buffers-menu-command-entries nil)
1571
ee1dbceb 1572(defun menu-bar-update-buffers (&optional force)
29397c58 1573 ;; If user discards the Buffers item, play along.
4d587a6c 1574 (and (lookup-key (current-global-map) [menu-bar buffer])
ee1dbceb 1575 (or force (frame-or-buffer-changed-p))
29397c58
RS
1576 (let ((buffers (buffer-list))
1577 (frames (frame-list))
1578 buffers-menu frames-menu)
1579 ;; If requested, list only the N most recently selected buffers.
1580 (if (and (integerp buffers-menu-max-size)
1581 (> buffers-menu-max-size 1))
1582 (if (> (length buffers) buffers-menu-max-size)
1583 (setcdr (nthcdr buffers-menu-max-size buffers) nil)))
1584
1585 ;; Make the menu of buffers proper.
1586 (setq buffers-menu
8b621d39
MB
1587 (let* ((buffer-list
1588 (mapcar 'list buffers))
1589 (menu-bar-update-buffers-maxbuf 0)
1590 alist)
1591 ;; Put into each element of buffer-list
1592 ;; the name for actual display,
1593 ;; perhaps truncated in the middle.
1594 (dolist (buf buffer-list)
1595 (let ((name (buffer-name (car buf))))
1596 (setcdr buf
1597 (if (> (length name) 27)
1598 (concat (substring name 0 12)
1599 "..."
1600 (substring name -12))
1601 name))))
1602 ;; Compute the maximum length of any name.
1603 (dolist (buf buffer-list)
15e917e4 1604 (unless (eq ?\s (aref (cdr buf) 0))
8b621d39
MB
1605 (setq menu-bar-update-buffers-maxbuf
1606 (max menu-bar-update-buffers-maxbuf
1607 (length (cdr buf))))))
1608 ;; Set ALIST to an alist of the form
1609 ;; ITEM-STRING . BUFFER
1610 (dolist (buf buffer-list)
15e917e4 1611 (unless (eq ?\s (aref (cdr buf) 0))
8b621d39
MB
1612 (push (menu-bar-update-buffers-1 buf) alist)))
1613 ;; Now make the actual list of items, and add
1614 ;; some miscellaneous buffer commands to the end.
1615 (mapcar (lambda (pair)
1616 ;; This is somewhat risque, to use
1617 ;; the buffer name itself as the event
1618 ;; type to define, but it works.
1619 ;; It would not work to use the buffer
1620 ;; since a buffer as an event has its
1621 ;; own meaning.
1622 (nconc (list (buffer-name (cdr pair))
1623 (car pair)
1624 (cons nil nil))
1625 'menu-bar-select-buffer))
1626 (nreverse alist))))
29397c58
RS
1627
1628 ;; Make a Frames menu if we have more than one frame.
8b621d39
MB
1629 (when (cdr frames)
1630 (let ((frames-menu
1631 (cons 'keymap
1632 (cons "Select Frame"
1633 (mapcar
1634 (lambda (frame)
1635 (nconc
1636 (list (frame-parameter frame 'name)
1637 (frame-parameter frame 'name)
1638 (cons nil nil))
1639 'menu-bar-select-frame))
1640 frames)))))
1641 ;; Put it after the normal buffers
1642 (setq buffers-menu
1643 (nconc buffers-menu
1644 `((frames-separator "--")
1645 (frames menu-item "Frames" ,frames-menu))))))
1646
887d3c94
MB
1647 ;; Add in some normal commands at the end of the menu. We use
1648 ;; the copy cached in `menu-bar-buffers-menu-command-entries'
1649 ;; if it's been set already. Note that we can't use constant
1650 ;; lists for the menu-entries, because the low-level menu-code
1651 ;; modifies them.
1652 (unless menu-bar-buffers-menu-command-entries
1653 (setq menu-bar-buffers-menu-command-entries
1654 (list '(command-separator "--")
332b907c
RS
1655 (list 'next-buffer
1656 'menu-item
1657 "Next Buffer"
1658 'next-buffer
1659 :help "Switch to the \"next\" buffer in a cyclic order")
a74f9094 1660 (list 'previous-buffer
332b907c
RS
1661 'menu-item
1662 "Previous Buffer"
a74f9094 1663 'previous-buffer
332b907c 1664 :help "Switch to the \"previous\" buffer in a cyclic order")
887d3c94
MB
1665 (list 'select-named-buffer
1666 'menu-item
1667 "Select Named Buffer..."
1668 'switch-to-buffer
1669 :help "Prompt for a buffer name, and select that buffer in the current window")
1670 (list 'list-all-buffers
1671 'menu-item
1672 "List All Buffers"
1673 'list-buffers
4f00f90f 1674 :help "Pop up a window listing all Emacs buffers"
887d3c94 1675 ))))
8b621d39 1676 (setq buffers-menu
887d3c94 1677 (nconc buffers-menu menu-bar-buffers-menu-command-entries))
8b621d39
MB
1678
1679 (setq buffers-menu (cons 'keymap (cons "Select Buffer" buffers-menu)))
4d587a6c 1680 (define-key (current-global-map) [menu-bar buffer]
d08fd12f
RS
1681 ;; Call copy-sequence so the string is not pure.
1682 (cons (copy-sequence "Buffers") buffers-menu)))))
09642d97
RS
1683
1684(add-hook 'menu-bar-update-hook 'menu-bar-update-buffers)
2f1139a4 1685
3f557298
RS
1686(menu-bar-update-buffers)
1687
40954111 1688;; this version is too slow
a9d96061
SM
1689;;(defun format-buffers-menu-line (buffer)
1690;; "Returns a string to represent the given buffer in the Buffer menu.
1691;;nil means the buffer shouldn't be listed. You can redefine this."
1692;; (if (string-match "\\` " (buffer-name buffer))
1693;; nil
1694;; (save-excursion
1695;; (set-buffer buffer)
1696;; (let ((size (buffer-size)))
1697;; (format "%s%s %-19s %6s %-15s %s"
1698;; (if (buffer-modified-p) "*" " ")
1699;; (if buffer-read-only "%" " ")
1700;; (buffer-name)
1701;; size
1702;; mode-name
1703;; (or (buffer-file-name) ""))))))
40954111 1704\f
25b048ee
RS
1705;;; Set up a menu bar menu for the minibuffer.
1706
32993295
SM
1707(dolist (map (list minibuffer-local-map
1708 ;; This shouldn't be necessary, but there's a funny
1709 ;; bug in keymap.c that I don't understand yet. -stef
d918e2dc
SM
1710 minibuffer-local-completion-map))
1711 (define-key map [menu-bar minibuf]
1712 (cons "Minibuf" (make-sparse-keymap "Minibuf"))))
1713
32993295 1714(let ((map minibuffer-local-completion-map))
d918e2dc
SM
1715 (define-key map [menu-bar minibuf ?\?]
1716 (list 'menu-item "List Completions" 'minibuffer-completion-help
1717 :help "Display all possible completions"))
1718 (define-key map [menu-bar minibuf space]
1719 (list 'menu-item "Complete Word" 'minibuffer-complete-word
1720 :help "Complete at most one word"))
1721 (define-key map [menu-bar minibuf tab]
1722 (list 'menu-item "Complete" 'minibuffer-complete
1723 :help "Complete as far as possible")))
1724
32993295 1725(let ((map minibuffer-local-map))
d918e2dc
SM
1726 (define-key map [menu-bar minibuf quit]
1727 (list 'menu-item "Quit" 'keyboard-escape-quit
1728 :help "Abort input and exit minibuffer"))
1729 (define-key map [menu-bar minibuf return]
1730 (list 'menu-item "Enter" 'exit-minibuffer
1731 :help "Terminate input and exit minibuffer")))
25b048ee 1732\f
8ab9589d 1733;;;###autoload
ffda926c 1734;; This comment is taken from tool-bar.el near
8ab9589d
JD
1735;; (put 'tool-bar-mode ...)
1736;; We want to pretend the menu bar by standard is on, as this will make
1737;; customize consider disabling the menu bar a customization, and save
1738;; that. We could do this for real by setting :init-value below, but
1739;; that would overwrite disabling the tool bar from X resources.
1740(put 'menu-bar-mode 'standard-value '(t))
1741
1742;;;###autoload
1743(define-minor-mode menu-bar-mode
dfd29450 1744 "Toggle display of a menu bar on each frame.
057d49d1
RS
1745This command applies to all frames that exist and frames to be
1746created in the future.
e1d18ad8
RS
1747With a numeric argument, if the argument is positive,
1748turn on menu bars; otherwise, turn off menu bars."
8ab9589d
JD
1749 :init-value nil
1750 :global t
1751 :group 'frames
095fe281 1752
7b7d6615 1753 ;; Make menu-bar-mode and default-frame-alist consistent.
095fe281
KL
1754 (modify-all-frames-parameters (list (cons 'menu-bar-lines
1755 (if menu-bar-mode 1 0))))
8ab9589d
JD
1756
1757 ;; Make the message appear when Emacs is idle. We can not call message
1758 ;; directly. The minor-mode message "Menu-bar mode disabled" comes
1759 ;; after this function returns, overwriting any message we do here.
1760 (when (and (interactive-p) (not menu-bar-mode))
1761 (run-with-idle-timer 0 nil 'message
1762 "Menu-bar mode disabled. Use M-x menu-bar-mode to make the menu bar appear."))
09bfa5ca 1763 menu-bar-mode)
1db87953 1764
6a5af08f
KL
1765(defun toggle-menu-bar-mode-from-frame (&optional arg)
1766 "Toggle menu bar on or off, based on the status of the current frame.
1767See `menu-bar-mode' for more information."
1768 (interactive (list (or current-prefix-arg 'toggle)))
1769 (if (eq arg 'toggle)
1770 (menu-bar-mode (if (> (frame-parameter nil 'menu-bar-lines) 0) 0 1))
1771 (menu-bar-mode arg)))
1772
14ab3a40
KL
1773(defun menu-bar-open (&optional frame)
1774 "Start key navigation of the menu bar in FRAME.
1775
1776This function decides which method to use to access the menu
1777depending on FRAME's terminal device. On X displays, it calls
1778`x-menu-bar-open'; otherwise it calls `tmm-menubar'.
1779
1780If FRAME is nil or not given, use the selected frame."
1781 (interactive)
1782 (if (eq window-system 'x)
1783 (x-menu-bar-open frame)
1784 (with-selected-frame (or frame (selected-frame))
1785 (tmm-menubar))))
1786
1787(global-set-key [f10] 'menu-bar-open)
1788
bffa5d4d
RS
1789(provide 'menu-bar)
1790
ab5796a9 1791;;; arch-tag: 6e6a3c22-4ec4-4d3d-8190-583f8ef94ced
235aa29b 1792;;; menu-bar.el ends here