Mercurial > emacs
annotate lisp/emacs-lisp/easymenu.el @ 7898:1d65b2152c4e
Put config.h first.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 15 Jun 1994 03:46:59 +0000 |
parents | 877b3aeaa9b5 |
children | c7eb887a1e78 |
rev | line source |
---|---|
6529 | 1 ;;; easymenu.el --- support the easymenu interface for defining a menu. |
2 | |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
3 ;; Copyright (C) 1994 Free Software Foundation, Inc. |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
4 |
6529 | 5 ;; Keywords: emulations |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
6 ;; Author: rms |
6529 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
24 ;;; This is compatible with easymenu.el by Per Abrahamsen | |
25 ;;; but it is much simpler as it doesn't try to support other Emacs versions. | |
26 ;;; The code was mostly derived from lmenu.el. | |
27 | |
28 ;;; Code: | |
29 | |
6542
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
30 ;;;###autoload |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
31 (defmacro easy-menu-define (symbol maps doc menu) |
6529 | 32 "Define a menu bar submenu in maps MAPS, according to MENU. |
33 The arguments SYMBOL and DOC are ignored; they are present for | |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
34 compatibility only. SYMBOL is not evaluated. In other Emacs versions |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
35 these arguments may be used as a variable to hold the menu data, and a |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
36 doc string for that variable. |
6529 | 37 |
38 The first element of MENU must be a string. It is the menu bar item name. | |
39 The rest of the elements are menu items. | |
40 | |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
41 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE] |
6529 | 42 |
6542
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
43 NAME is a string--the menu item name. |
6529 | 44 |
6542
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
45 CALLBACK is a command to run when the item is chosen, |
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
46 or a list to evaluate when the item is chosen. |
6529 | 47 |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
48 ENABLE is a symbol; if its value is non-nil, the item is enabled |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
49 for selection. |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
50 |
6542
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
51 A menu item can be a string. Then that string appears in the menu as |
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
52 unselectable text. A string consisting solely of hyphens is displayed |
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
53 as a solid horizontal line. |
6529 | 54 |
6542
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
55 A menu item can be a list. It is treated as a submenu. |
6529 | 56 The first element should be the submenu name. That's used as the |
57 menu item in the top-level menu. The cdr of the submenu list | |
58 is a list of menu items, as above." | |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
59 (` (let* ((maps (, maps)) |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
60 (menu (, menu)) |
7614
877b3aeaa9b5
(easy-menu-create-keymaps):
Richard M. Stallman <rms@gnu.org>
parents:
6794
diff
changeset
|
61 (keymap (easy-menu-create-keymaps (car menu) (cdr menu)))) |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
62 (and (keymapp maps) (setq maps (list maps))) |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
63 (while maps |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
64 (define-key (car maps) (vector 'menu-bar (intern (car menu))) |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
65 (cons (car menu) keymap)) |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
66 (setq maps (cdr maps)))))) |
6542
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
67 |
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
68 (defvar easy-menu-item-count 0) |
6529 | 69 |
70 ;; Return a menu keymap corresponding to a Lucid-style menu list | |
71 ;; MENU-ITEMS, and with name MENU-NAME. | |
7614
877b3aeaa9b5
(easy-menu-create-keymaps):
Richard M. Stallman <rms@gnu.org>
parents:
6794
diff
changeset
|
72 (defun easy-menu-create-keymaps (menu-name menu-items) |
6529 | 73 (let ((menu (make-sparse-keymap menu-name))) |
74 ;; Process items in reverse order, | |
75 ;; since the define-key loop reverses them again. | |
76 (setq menu-items (reverse menu-items)) | |
77 (while menu-items | |
78 (let* ((item (car menu-items)) | |
79 (callback (if (vectorp item) (aref item 1))) | |
80 command enabler name) | |
81 (cond ((stringp item) | |
82 (setq command nil) | |
83 (setq name (if (string-match "^-+$" item) "" item))) | |
84 ((consp item) | |
7614
877b3aeaa9b5
(easy-menu-create-keymaps):
Richard M. Stallman <rms@gnu.org>
parents:
6794
diff
changeset
|
85 (setq command (easy-menu-create-keymaps (car item) (cdr item))) |
6794 | 86 (setq name (car item))) |
6529 | 87 ((vectorp item) |
88 (setq command (make-symbol (format "menu-function-%d" | |
6542
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
89 easy-menu-item-count))) |
1d9da8160357
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6529
diff
changeset
|
90 (setq easy-menu-item-count (1+ easy-menu-item-count)) |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
91 (put command 'menu-enable (aref item 2)) |
6529 | 92 (setq name (aref item 0)) |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
93 (if (keymapp callback) |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
94 (setq name (concat name " ..."))) |
6529 | 95 (if (symbolp callback) |
96 (fset command callback) | |
97 (fset command (list 'lambda () '(interactive) callback))))) | |
98 (if (null command) | |
99 ;; Handle inactive strings specially--allow any number | |
100 ;; of identical ones. | |
101 (setcdr menu (cons (list nil name) (cdr menu))) | |
102 (if name | |
103 (define-key menu (vector (intern name)) (cons name command))))) | |
104 (setq menu-items (cdr menu-items))) | |
105 menu)) | |
106 | |
6600
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
107 (defmacro easy-menu-remove (menu)) |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
108 |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
109 (defmacro easy-menu-add (menu &optional map)) |
f75ac1f3d99c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6542
diff
changeset
|
110 |
6529 | 111 (provide 'easymenu) |
112 | |
113 ;;; easymenu.el ends here |