Mercurial > emacs
annotate lisp/emacs-lisp/lmenu.el @ 8630:6d932654b63b
entered into RCS
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 26 Aug 1994 00:40:24 +0000 |
parents | a320525f4d8f |
children | 5eff9b0c1a43 |
rev | line source |
---|---|
2232
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
1 ;;; lmenu.el --- emulate Lucid's menubar support |
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
2 |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
3 ;; Keywords: emulations |
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
4 |
7298 | 5 ;; Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. |
2231 | 6 |
7 ;; This file is part of GNU Emacs. | |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
11 ;; the Free Software Foundation; either version 2, or (at your option) | |
12 ;; any later version. | |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
20 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
22 | |
2232
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
23 ;;; Code: |
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
24 |
2231 | 25 |
26 ;; First, emulate the Lucid menubar support in GNU Emacs 19. | |
27 | |
28 ;; Arrange to use current-menubar to set up part of the menu bar. | |
29 | |
7656
d50e5481aae2
(popup-dialog-box): Bind meaning with let.
Richard M. Stallman <rms@gnu.org>
parents:
7655
diff
changeset
|
30 (defvar current-menubar) |
d50e5481aae2
(popup-dialog-box): Bind meaning with let.
Richard M. Stallman <rms@gnu.org>
parents:
7655
diff
changeset
|
31 |
2231 | 32 (setq recompute-lucid-menubar 'recompute-lucid-menubar) |
33 (defun recompute-lucid-menubar () | |
34 (define-key lucid-menubar-map [menu-bar] | |
35 (condition-case nil | |
36 (make-lucid-menu-keymap "menu-bar" current-menubar) | |
37 (error (message "Invalid data in current-menubar moved to lucid-failing-menubar") | |
38 (sit-for 1) | |
39 (setq lucid-failing-menubar current-menubar | |
40 current-menubar nil)))) | |
41 (setq lucid-menu-bar-dirty-flag nil)) | |
42 | |
43 (defvar lucid-menubar-map (make-sparse-keymap)) | |
44 (or (assq 'current-menubar minor-mode-map-alist) | |
45 (setq minor-mode-map-alist | |
46 (cons (cons 'current-menubar lucid-menubar-map) | |
47 minor-mode-map-alist))) | |
48 | |
49 (defun set-menubar-dirty-flag () | |
50 (force-mode-line-update) | |
51 (setq lucid-menu-bar-dirty-flag t)) | |
52 | |
53 (defvar add-menu-item-count 0) | |
54 | |
55 ;; Return a menu keymap corresponding to a Lucid-style menu list | |
56 ;; MENU-ITEMS, and with name MENU-NAME. | |
57 (defun make-lucid-menu-keymap (menu-name menu-items) | |
58 (let ((menu (make-sparse-keymap menu-name))) | |
59 ;; Process items in reverse order, | |
60 ;; since the define-key loop reverses them again. | |
61 (setq menu-items (reverse menu-items)) | |
62 (while menu-items | |
63 (let* ((item (car menu-items)) | |
64 (callback (if (vectorp item) (aref item 1))) | |
7742
2b0419458768
(make-lucid-menu-keymap): Allow any form as the enabler.
Richard M. Stallman <rms@gnu.org>
parents:
7699
diff
changeset
|
65 command name) |
2231 | 66 (cond ((stringp item) |
67 (setq command nil) | |
6445
19bf0e182eda
(make-lucid-menu-keymap): Any row of dashes means blank.
Karl Heuer <kwzh@gnu.org>
parents:
6435
diff
changeset
|
68 (setq name (if (string-match "^-+$" item) "" item))) |
2231 | 69 ((consp item) |
70 (setq command (make-lucid-menu-keymap (car item) (cdr item))) | |
71 (setq name (car item))) | |
72 ((vectorp item) | |
73 (setq command (make-symbol (format "menu-function-%d" | |
74 add-menu-item-count))) | |
75 (setq add-menu-item-count (1+ add-menu-item-count)) | |
7742
2b0419458768
(make-lucid-menu-keymap): Allow any form as the enabler.
Richard M. Stallman <rms@gnu.org>
parents:
7699
diff
changeset
|
76 (put command 'menu-enable (aref item 2)) |
2231 | 77 (setq name (aref item 0)) |
78 (if (symbolp callback) | |
79 (fset command callback) | |
80 (fset command (list 'lambda () '(interactive) callback))))) | |
5477
2efe469a9c24
(make-lucid-menu-keymap): Allow multiple identical inactive strings.
Richard M. Stallman <rms@gnu.org>
parents:
5461
diff
changeset
|
81 (if (null command) |
2efe469a9c24
(make-lucid-menu-keymap): Allow multiple identical inactive strings.
Richard M. Stallman <rms@gnu.org>
parents:
5461
diff
changeset
|
82 ;; Handle inactive strings specially--allow any number |
2efe469a9c24
(make-lucid-menu-keymap): Allow multiple identical inactive strings.
Richard M. Stallman <rms@gnu.org>
parents:
5461
diff
changeset
|
83 ;; of identical ones. |
2efe469a9c24
(make-lucid-menu-keymap): Allow multiple identical inactive strings.
Richard M. Stallman <rms@gnu.org>
parents:
5461
diff
changeset
|
84 (setcdr menu (cons (list nil name) (cdr menu))) |
2efe469a9c24
(make-lucid-menu-keymap): Allow multiple identical inactive strings.
Richard M. Stallman <rms@gnu.org>
parents:
5461
diff
changeset
|
85 (if name |
2efe469a9c24
(make-lucid-menu-keymap): Allow multiple identical inactive strings.
Richard M. Stallman <rms@gnu.org>
parents:
5461
diff
changeset
|
86 (define-key menu (vector (intern name)) (cons name command))))) |
2231 | 87 (setq menu-items (cdr menu-items))) |
88 menu)) | |
89 | |
90 (defun popup-menu (menu-desc) | |
91 "Pop up the given menu. | |
92 A menu is a list of menu items, strings, and submenus. | |
93 | |
94 The first element of a menu must be a string, which is the name of the | |
95 menu. This is the string that will be displayed in the parent menu, if | |
96 any. For toplevel menus, it is ignored. This string is not displayed | |
97 in the menu itself. | |
98 | |
99 A menu item is a vector of three or four elements: | |
100 | |
101 - the name of the menu item (a string); | |
102 - the `callback' of that item; | |
103 - whether this item is active (selectable); | |
104 - and an optional string to append to the name. | |
105 | |
106 If the `callback' of a menu item is a symbol, then it must name a command. | |
107 It will be invoked with `call-interactively'. If it is a list, then it is | |
108 evaluated with `eval'. | |
109 | |
110 The fourth element of a menu item is a convenient way of adding the name | |
111 of a command's ``argument'' to the menu, like ``Kill Buffer NAME''. | |
112 | |
113 If an element of a menu is a string, then that string will be presented in | |
114 the menu as unselectable text. | |
115 | |
116 If an element of a menu is a string consisting solely of hyphens, then that | |
117 item will be presented as a solid horizontal line. | |
118 | |
119 If an element of a menu is a list, it is treated as a submenu. The name of | |
120 that submenu (the first element in the list) will be used as the name of the | |
121 item representing this menu on the parent. | |
122 | |
123 The syntax, more precisely: | |
124 | |
125 form := <something to pass to `eval'> | |
126 command := <a symbol or string, to pass to `call-interactively'> | |
127 callback := command | form | |
128 active-p := <t or nil, whether this thing is selectable> | |
129 text := <string, non selectable> | |
130 name := <string> | |
131 argument := <string> | |
132 menu-item := '[' name callback active-p [ argument ] ']' | |
133 menu := '(' name [ menu-item | menu | text ]+ ')' | |
134 " | |
135 (let ((menu (make-lucid-menu-keymap (car menu-desc) (cdr menu-desc))) | |
7641
2db2ad2025c4
(popup-menu): Use mouse-pixel-position.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
136 (pos (mouse-pixel-position)) |
7655
9134274acb76
(popup-menu): Bind cmd with let.
Richard M. Stallman <rms@gnu.org>
parents:
7641
diff
changeset
|
137 answer cmd) |
8051
a320525f4d8f
(popup-menu): Allow user to select nothing.
Karl Heuer <kwzh@gnu.org>
parents:
8038
diff
changeset
|
138 (while (and menu |
a320525f4d8f
(popup-menu): Allow user to select nothing.
Karl Heuer <kwzh@gnu.org>
parents:
8038
diff
changeset
|
139 (setq answer (x-popup-menu (list (list (nth 1 pos) |
a320525f4d8f
(popup-menu): Allow user to select nothing.
Karl Heuer <kwzh@gnu.org>
parents:
8038
diff
changeset
|
140 (nthcdr 2 pos)) |
a320525f4d8f
(popup-menu): Allow user to select nothing.
Karl Heuer <kwzh@gnu.org>
parents:
8038
diff
changeset
|
141 (car pos)) |
a320525f4d8f
(popup-menu): Allow user to select nothing.
Karl Heuer <kwzh@gnu.org>
parents:
8038
diff
changeset
|
142 menu))) |
8038
bffab6b07862
(popup-menu): Convert list to same-size vector, not singleton vector.
Karl Heuer <kwzh@gnu.org>
parents:
7742
diff
changeset
|
143 (setq cmd (lookup-key menu (apply 'vector answer))) |
5439
77798fccc85c
(popup-menu): Add loop to handle submenus.
Richard M. Stallman <rms@gnu.org>
parents:
2751
diff
changeset
|
144 (setq menu nil) |
77798fccc85c
(popup-menu): Add loop to handle submenus.
Richard M. Stallman <rms@gnu.org>
parents:
2751
diff
changeset
|
145 (and cmd |
77798fccc85c
(popup-menu): Add loop to handle submenus.
Richard M. Stallman <rms@gnu.org>
parents:
2751
diff
changeset
|
146 (if (keymapp cmd) |
77798fccc85c
(popup-menu): Add loop to handle submenus.
Richard M. Stallman <rms@gnu.org>
parents:
2751
diff
changeset
|
147 (setq menu cmd) |
77798fccc85c
(popup-menu): Add loop to handle submenus.
Richard M. Stallman <rms@gnu.org>
parents:
2751
diff
changeset
|
148 (call-interactively cmd)))))) |
6744
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
149 |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
150 (defun popup-dialog-box (data) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
151 "Pop up a dialog box. |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
152 A dialog box description is a list. |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
153 |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
154 - The first element of the list is a string to display in the dialog box. |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
155 - The rest of the elements are descriptions of the dialog box's buttons. |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
156 Each one is a vector of three elements: |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
157 - The first element is the text of the button. |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
158 - The second element is the `callback'. |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
159 - The third element is t or nil, whether this button is selectable. |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
160 |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
161 If the `callback' of a button is a symbol, then it must name a command. |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
162 It will be invoked with `call-interactively'. If it is a list, then it is |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
163 evaluated with `eval'. |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
164 |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
165 One (and only one) of the buttons may be `nil'. This marker means that all |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
166 following buttons should be flushright instead of flushleft. |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
167 |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
168 The syntax, more precisely: |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
169 |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
170 form := <something to pass to `eval'> |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
171 command := <a symbol or string, to pass to `call-interactively'> |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
172 callback := command | form |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
173 active-p := <t, nil, or a form to evaluate to decide whether this |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
174 button should be selectable> |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
175 name := <string> |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
176 partition := 'nil' |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
177 button := '[' name callback active-p ']' |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
178 dialog := '(' name [ button ]+ [ partition [ button ]+ ] ')'" |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
179 (let ((name (car data)) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
180 (tail (cdr data)) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
181 converted |
7656
d50e5481aae2
(popup-dialog-box): Bind meaning with let.
Richard M. Stallman <rms@gnu.org>
parents:
7655
diff
changeset
|
182 choice meaning) |
6744
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
183 (while tail |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
184 (if (null (car tail)) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
185 (setq converted (cons nil converted)) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
186 (let ((item (aref (car tail) 0)) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
187 (callback (aref (car tail) 1)) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
188 (enable (aref (car tail) 2))) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
189 (setq converted |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
190 (cons (if enable (cons item callback) item) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
191 converted)))) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
192 (setq tail (cdr tail))) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
193 (setq choice (x-popup-dialog t (cons name (nreverse converted)))) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
194 (setq meaning (assq choice converted)) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
195 (if meaning |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
196 (if (symbolp (cdr meaning)) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
197 (call-interactively (cdr meaning)) |
67485a72803d
(popup-dialog-box): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6445
diff
changeset
|
198 (eval (cdr meaning)))))) |
2231 | 199 |
2751
f95808ad4b95
(default-menubar): Make initial value nil.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
200 ;; This is empty because the usual elements of the menu bar |
f95808ad4b95
(default-menubar): Make initial value nil.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
201 ;; are provided by menu-bar.el instead. |
f95808ad4b95
(default-menubar): Make initial value nil.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
202 ;; It would not make sense to duplicate them here. |
f95808ad4b95
(default-menubar): Make initial value nil.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
203 (defconst default-menubar nil) |
2231 | 204 |
205 (defun set-menubar (menubar) | |
206 "Set the default menubar to be menubar." | |
207 (setq-default current-menubar (copy-sequence menubar)) | |
208 (set-menubar-dirty-flag)) | |
209 | |
210 (defun set-buffer-menubar (menubar) | |
211 "Set the buffer-local menubar to be menubar." | |
212 (make-local-variable 'current-menubar) | |
213 (setq current-menubar (copy-sequence menubar)) | |
214 (set-menubar-dirty-flag)) | |
215 | |
216 | |
217 ;;; menu manipulation functions | |
218 | |
219 (defun find-menu-item (menubar item-path-list &optional parent) | |
220 "Searches MENUBAR for item given by ITEM-PATH-LIST. | |
221 Returns (ITEM . PARENT), where PARENT is the immediate parent of | |
222 the item found. | |
223 Signals an error if the item is not found." | |
224 (or parent (setq item-path-list (mapcar 'downcase item-path-list))) | |
225 (if (not (consp menubar)) | |
226 nil | |
227 (let ((rest menubar) | |
228 result) | |
229 (while rest | |
230 (if (and (car rest) | |
231 (equal (car item-path-list) | |
232 (downcase (if (vectorp (car rest)) | |
233 (aref (car rest) 0) | |
234 (if (stringp (car rest)) | |
235 (car rest) | |
236 (car (car rest))))))) | |
237 (setq result (car rest) rest nil) | |
238 (setq rest (cdr rest)))) | |
239 (if (cdr item-path-list) | |
240 (if (consp result) | |
241 (find-menu-item (cdr result) (cdr item-path-list) result) | |
242 (if result | |
243 (signal 'error (list "not a submenu" result)) | |
244 (signal 'error (list "no such submenu" (car item-path-list))))) | |
245 (cons result parent))))) | |
246 | |
247 | |
248 (defun disable-menu-item (path) | |
249 "Make the named menu item be unselectable. | |
250 PATH is a list of strings which identify the position of the menu item in | |
251 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\" | |
252 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the | |
253 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"." | |
254 (let* ((menubar current-menubar) | |
255 (pair (find-menu-item menubar path)) | |
256 (item (car pair)) | |
257 (menu (cdr pair))) | |
258 (or item | |
259 (signal 'error (list (if menu "No such menu item" "No such menu") | |
260 path))) | |
261 (if (consp item) (error "can't disable menus, only menu items")) | |
262 (aset item 2 nil) | |
263 (set-menubar-dirty-flag) | |
264 item)) | |
265 | |
266 | |
267 (defun enable-menu-item (path) | |
268 "Make the named menu item be selectable. | |
269 PATH is a list of strings which identify the position of the menu item in | |
270 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\" | |
271 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the | |
272 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"." | |
273 (let* ((menubar current-menubar) | |
274 (pair (find-menu-item menubar path)) | |
275 (item (car pair)) | |
276 (menu (cdr pair))) | |
277 (or item | |
278 (signal 'error (list (if menu "No such menu item" "No such menu") | |
279 path))) | |
280 (if (consp item) (error "%S is a menu, not a menu item" path)) | |
281 (aset item 2 t) | |
282 (set-menubar-dirty-flag) | |
283 item)) | |
284 | |
285 | |
286 (defun add-menu-item-1 (item-p menu-path item-name item-data enabled-p before) | |
287 (if before (setq before (downcase before))) | |
288 (let* ((menubar current-menubar) | |
289 (menu (condition-case () | |
290 (car (find-menu-item menubar menu-path)) | |
291 (error nil))) | |
292 (item (if (listp menu) | |
293 (car (find-menu-item (cdr menu) (list item-name))) | |
294 (signal 'error (list "not a submenu" menu-path))))) | |
295 (or menu | |
296 (let ((rest menu-path) | |
297 (so-far menubar)) | |
298 (while rest | |
299 ;;; (setq menu (car (find-menu-item (cdr so-far) (list (car rest))))) | |
300 (setq menu | |
301 (if (eq so-far menubar) | |
302 (car (find-menu-item so-far (list (car rest)))) | |
303 (car (find-menu-item (cdr so-far) (list (car rest)))))) | |
304 (or menu | |
305 (let ((rest2 so-far)) | |
306 (while (and (cdr rest2) (car (cdr rest2))) | |
307 (setq rest2 (cdr rest2))) | |
308 (setcdr rest2 | |
7699 | 309 (nconc (list (setq menu (list (car rest)))) |
310 (cdr rest2))))) | |
2231 | 311 (setq so-far menu) |
312 (setq rest (cdr rest))))) | |
313 (or menu (setq menu menubar)) | |
314 (if item | |
315 nil ; it's already there | |
316 (if item-p | |
317 (setq item (vector item-name item-data enabled-p)) | |
318 (setq item (cons item-name item-data))) | |
319 ;; if BEFORE is specified, try to add it there. | |
320 (if before | |
321 (setq before (car (find-menu-item menu (list before))))) | |
322 (let ((rest menu) | |
323 (added-before nil)) | |
324 (while rest | |
325 (if (eq before (car (cdr rest))) | |
326 (progn | |
327 (setcdr rest (cons item (cdr rest))) | |
328 (setq rest nil added-before t)) | |
329 (setq rest (cdr rest)))) | |
330 (if (not added-before) | |
331 ;; adding before the first item on the menubar itself is harder | |
332 (if (and (eq menu menubar) (eq before (car menu))) | |
333 (setq menu (cons item menu) | |
334 current-menubar menu) | |
335 ;; otherwise, add the item to the end. | |
336 (nconc menu (list item)))))) | |
337 (if item-p | |
338 (progn | |
339 (aset item 1 item-data) | |
340 (aset item 2 (not (null enabled-p)))) | |
341 (setcar item item-name) | |
342 (setcdr item item-data)) | |
343 (set-menubar-dirty-flag) | |
344 item)) | |
345 | |
346 (defun add-menu-item (menu-path item-name function enabled-p &optional before) | |
347 "Add a menu item to some menu, creating the menu first if necessary. | |
348 If the named item exists already, it is changed. | |
349 MENU-PATH identifies the menu under which the new menu item should be inserted. | |
350 It is a list of strings; for example, (\"File\") names the top-level \"File\" | |
351 menu. (\"File\" \"Foo\") names a hypothetical submenu of \"File\". | |
352 ITEM-NAME is the string naming the menu item to be added. | |
353 FUNCTION is the command to invoke when this menu item is selected. | |
354 If it is a symbol, then it is invoked with `call-interactively', in the same | |
355 way that functions bound to keys are invoked. If it is a list, then the | |
356 list is simply evaluated. | |
357 ENABLED-P controls whether the item is selectable or not. | |
358 BEFORE, if provided, is the name of a menu item before which this item should | |
359 be added, if this item is not on the menu already. If the item is already | |
360 present, it will not be moved." | |
361 (or menu-path (error "must specify a menu path")) | |
362 (or item-name (error "must specify an item name")) | |
363 (add-menu-item-1 t menu-path item-name function enabled-p before)) | |
364 | |
365 | |
366 (defun delete-menu-item (path) | |
367 "Remove the named menu item from the menu hierarchy. | |
368 PATH is a list of strings which identify the position of the menu item in | |
369 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\" | |
370 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the | |
371 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\"." | |
372 (let* ((menubar current-menubar) | |
373 (pair (find-menu-item menubar path)) | |
374 (item (car pair)) | |
375 (menu (or (cdr pair) menubar))) | |
376 (if (not item) | |
377 nil | |
378 ;; the menubar is the only special case, because other menus begin | |
379 ;; with their name. | |
380 (if (eq menu current-menubar) | |
381 (setq current-menubar (delq item menu)) | |
382 (delq item menu)) | |
383 (set-menubar-dirty-flag) | |
384 item))) | |
385 | |
386 | |
387 (defun relabel-menu-item (path new-name) | |
388 "Change the string of the specified menu item. | |
389 PATH is a list of strings which identify the position of the menu item in | |
390 the menu hierarchy. (\"File\" \"Save\") means the menu item called \"Save\" | |
391 under the toplevel \"File\" menu. (\"Menu\" \"Foo\" \"Item\") means the | |
392 menu item called \"Item\" under the \"Foo\" submenu of \"Menu\". | |
393 NEW-NAME is the string that the menu item will be printed as from now on." | |
394 (or (stringp new-name) | |
395 (setq new-name (signal 'wrong-type-argument (list 'stringp new-name)))) | |
396 (let* ((menubar current-menubar) | |
397 (pair (find-menu-item menubar path)) | |
398 (item (car pair)) | |
399 (menu (cdr pair))) | |
400 (or item | |
401 (signal 'error (list (if menu "No such menu item" "No such menu") | |
402 path))) | |
403 (if (and (consp item) | |
404 (stringp (car item))) | |
405 (setcar item new-name) | |
406 (aset item 0 new-name)) | |
407 (set-menubar-dirty-flag) | |
408 item)) | |
409 | |
410 (defun add-menu (menu-path menu-name menu-items &optional before) | |
411 "Add a menu to the menubar or one of its submenus. | |
412 If the named menu exists already, it is changed. | |
413 MENU-PATH identifies the menu under which the new menu should be inserted. | |
414 It is a list of strings; for example, (\"File\") names the top-level \"File\" | |
415 menu. (\"File\" \"Foo\") names a hypothetical submenu of \"File\". | |
416 If MENU-PATH is nil, then the menu will be added to the menubar itself. | |
417 MENU-NAME is the string naming the menu to be added. | |
418 MENU-ITEMS is a list of menu item descriptions. | |
419 Each menu item should be a vector of three elements: | |
420 - a string, the name of the menu item; | |
421 - a symbol naming a command, or a form to evaluate; | |
7742
2b0419458768
(make-lucid-menu-keymap): Allow any form as the enabler.
Richard M. Stallman <rms@gnu.org>
parents:
7699
diff
changeset
|
422 - and a form whose value determines whether this item is selectable. |
2231 | 423 BEFORE, if provided, is the name of a menu before which this menu should |
424 be added, if this menu is not on its parent already. If the menu is already | |
425 present, it will not be moved." | |
426 (or menu-name (error "must specify a menu name")) | |
427 (or menu-items (error "must specify some menu items")) | |
428 (add-menu-item-1 nil menu-path menu-name menu-items t before)) | |
429 | |
430 | |
431 | |
432 (defvar put-buffer-names-in-file-menu t) | |
433 | |
434 | |
5982
a9f7e018245b
Delete the code to enable menu bars.
Richard M. Stallman <rms@gnu.org>
parents:
5477
diff
changeset
|
435 ;; Don't unconditionally enable menu bars; leave that up to the user. |
a9f7e018245b
Delete the code to enable menu bars.
Richard M. Stallman <rms@gnu.org>
parents:
5477
diff
changeset
|
436 ;;(let ((frames (frame-list))) |
a9f7e018245b
Delete the code to enable menu bars.
Richard M. Stallman <rms@gnu.org>
parents:
5477
diff
changeset
|
437 ;; (while frames |
a9f7e018245b
Delete the code to enable menu bars.
Richard M. Stallman <rms@gnu.org>
parents:
5477
diff
changeset
|
438 ;; (modify-frame-parameters (car frames) '((menu-bar-lines . 1))) |
a9f7e018245b
Delete the code to enable menu bars.
Richard M. Stallman <rms@gnu.org>
parents:
5477
diff
changeset
|
439 ;; (setq frames (cdr frames)))) |
a9f7e018245b
Delete the code to enable menu bars.
Richard M. Stallman <rms@gnu.org>
parents:
5477
diff
changeset
|
440 ;;(or (assq 'menu-bar-lines default-frame-alist) |
a9f7e018245b
Delete the code to enable menu bars.
Richard M. Stallman <rms@gnu.org>
parents:
5477
diff
changeset
|
441 ;; (setq default-frame-alist |
a9f7e018245b
Delete the code to enable menu bars.
Richard M. Stallman <rms@gnu.org>
parents:
5477
diff
changeset
|
442 ;; (cons '(menu-bar-lines . 1) default-frame-alist))) |
2231 | 443 |
444 (set-menubar default-menubar) | |
445 | |
6435
050f711140e0
Provide lmenu, not menubar.
Richard M. Stallman <rms@gnu.org>
parents:
5982
diff
changeset
|
446 (provide 'lmenu) |
2231 | 447 |
2232
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
448 ;;; lmenu.el ends here |