annotate lisp/easymenu.el @ 5724:ede80ef92a74

Make soft links in src for module source files, if built in to the executable. This ensures that those files are built with the same compiler flags as all other source files. See these xemacs-beta messages: <CAHCOHQn+q=Xuwq+y68dvqi7afAP9f-TdB7=8YiZ8VYO816sjHg@mail.gmail.com> <f5by5ejqiyk.fsf@calexico.inf.ed.ac.uk>
author Jerry James <james@xemacs.org>
date Sat, 02 Mar 2013 14:32:37 -0700
parents cc6f0266bc36
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1 ;;; easymenu.el - Easy menu support for Emacs 19 and XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
3 ;; Copyright (C) 1992, 1993, 1994, 1995, 2005 Free Software Foundation, Inc.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
6 ;; Maintainer: XEmacs Development Team
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
7 ;; Keywords: internal, extensions, dumped
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
8
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
9 ;; This file is part of XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
10
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 3230
diff changeset
11 ;; XEmacs is free software: you can redistribute it and/or modify it
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 3230
diff changeset
12 ;; under the terms of the GNU General Public License as published by the
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 3230
diff changeset
13 ;; Free Software Foundation, either version 3 of the License, or (at your
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 3230
diff changeset
14 ;; option) any later version.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
15
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 3230
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 3230
diff changeset
17 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 3230
diff changeset
18 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 3230
diff changeset
19 ;; for more details.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
20
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 3230
diff changeset
22 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
23
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
24 ;;; Synched up with: Not synched with FSF but coordinated with the FSF
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
25 ;;; easymenu maintainer for compatibility with FSF 20.4.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
26 ;;; Please: Coordinate changes with Inge Frick <inge@nada.kth.se>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
27
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
28 ;; Commentary:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
29
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
30 ;; This file is dumped with XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
31
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
32 ;; Easymenu allows you to define menus for both Emacs 19 and XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
33
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
34 ;; This file
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
35 ;; The advantages of using easymenu are:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
36
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
37 ;; - Easier to use than either the Emacs 19 and XEmacs menu syntax.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
38
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
39 ;; - Common interface for Emacs 18, Emacs 19, and XEmacs.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
40 ;; (The code does nothing when run under Emacs 18).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
41
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
42 ;; The public functions are:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
43
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
44 ;; - Function: easy-menu-define SYMBOL MAPS DOC MENU
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
45 ;; SYMBOL is both the name of the variable that holds the menu and
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
46 ;; the name of a function that will present the menu.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
47 ;; MAPS is a list of keymaps where the menu should appear in the menubar.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
48 ;; DOC is the documentation string for the variable.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
49 ;; MENU is an XEmacs style menu description.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
50
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
51 ;; See the documentation for easy-menu-define for details.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
52
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
53 ;; - Function: easy-menu-change PATH NAME ITEMS
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
54 ;; Change an existing menu.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
55 ;; The menu must already exist and be visible on the menu bar.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
56 ;; PATH is a list of strings used for locating the menu on the menu bar.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
57 ;; NAME is the name of the menu.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
58 ;; ITEMS is a list of menu items, as defined in `easy-menu-define'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
59
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
60 ;; - Function: easy-menu-add MENU [ MAP ]
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
61 ;; Add MENU to the current menubar in MAP.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
62
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
63 ;; - Function: easy-menu-remove MENU
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
64 ;; Remove MENU from the current menubar.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
65
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
66 ;; - Function: easy-menu-add-item
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
67 ;; Add item or submenu to existing menu
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
68
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
69 ;; - Function: easy-menu-item-present-p
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
70 ;; Locate item
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
71
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
72 ;; - Function: easy-menu-remove-item
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
73 ;; Delete item from menu.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
74
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
75 ;; Emacs 19 never uses `easy-menu-add' or `easy-menu-remove', menus
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
76 ;; automatically appear and disappear when the keymaps specified by
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
77 ;; the MAPS argument to `easy-menu-define' are activated.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
78
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
79 ;; XEmacs will bind the map to button3 in each MAPS, but you must
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
80 ;; explicitly call `easy-menu-add' and `easy-menu-remove' to add and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
81 ;; remove menus from the menu bar.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
82
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
83 ;;; Code:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
84
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
85 ;; ;;;###autoload
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
86 (defmacro easy-menu-define (symbol maps doc menu)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
87 "Define a menu bar submenu in maps MAPS, according to MENU.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
88 The arguments SYMBOL and DOC are ignored; they are present for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
89 compatibility only. SYMBOL is not evaluated. In other Emacs versions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
90 these arguments may be used as a variable to hold the menu data, and a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
91 doc string for that variable.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
92
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
93 The first element of MENU must be a string. It is the menu bar item name.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
94 The rest of the elements are menu items.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
95
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
96 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE]
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
97
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
98 NAME is a string--the menu item name.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
99
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
100 CALLBACK is a command to run when the item is chosen,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
101 or a list to evaluate when the item is chosen.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
102
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
103 ENABLE is an expression; the item is enabled for selection
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
104 whenever this expression's value is non-nil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
105
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
106 Alternatively, a menu item may have the form:
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
107
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
108 [ NAME CALLBACK [ KEYWORD ARG ] ... ]
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
109
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
110 Where KEYWORD is one of the symbol defined below.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
111
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
112 :keys KEYS
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
113
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
114 KEYS is a string; a complex keyboard equivalent to this menu item.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
115
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
116 :active ENABLE
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
117
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
118 ENABLE is an expression; the item is enabled for selection
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
119 whenever this expression's value is non-nil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
120
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
121 :suffix NAME
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
122
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
123 NAME is a string; the name of an argument to CALLBACK.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
124
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
125 :style STYLE
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
126
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
127 STYLE is a symbol describing the type of menu item. The following are
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
128 defined:
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
129
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
130 toggle: A checkbox.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
131 Currently just prepend the name with the string \"Toggle \".
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
132 radio: A radio button.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
133 nil: An ordinary menu item.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
134
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
135 :selected SELECTED
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
136
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
137 SELECTED is an expression; the checkbox or radio button is selected
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
138 whenever this expression's value is non-nil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
139 Currently just disable radio buttons, no effect on checkboxes.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
140
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
141 A menu item can be a string. Then that string appears in the menu as
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
142 unselectable text. A string consisting solely of hyphens is displayed
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
143 as a solid horizontal line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
144
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
145 A menu item can be a list. It is treated as a submenu.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
146 The first element should be the submenu name. That's used as the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
147 menu item in the top-level menu. The cdr of the submenu list
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
148 is a list of menu items, as above."
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
149 `(progn
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
150 (defvar ,symbol nil ,doc)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
151 (easy-menu-do-define (quote ,symbol) ,maps ,doc ,menu)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
152
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
153 (defun easy-menu-do-define (symbol maps doc menu)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
154 (when (featurep 'menubar)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
155 (set symbol menu)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
156 (fset symbol `(lambda (e)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
157 ,doc
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
158 (interactive "@e")
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
159 (run-hooks 'activate-menubar-hook)
502
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 442
diff changeset
160 (setq zmacs-region-stays t)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
161 (popup-menu ,symbol)))))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
162
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
163 (defun easy-menu-change (&rest args)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
164 (when (featurep 'menubar)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
165 (apply 'add-menu args)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
166
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
167 (defvar easy-menu-all-popups nil
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
168 "This variable holds all the popup menus easy-menu knows about.
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
169 This includes any menu created with `easy-menu-add' and any
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
170 non-default value for `mode-popup-menu' that existed when
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
171 `easy-menu-add' was first called.")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
172 (make-variable-buffer-local 'easy-menu-all-popups)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
173
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
174 (defun easy-menu-add (menu &optional map)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
175 "Add MENU to the current menu bar."
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
176 ;; If you uncomment the following, do an xemacs -vanilla, type M-x
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
177 ;; folding-mode RET, you'll see that this code, which theoretically has
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
178 ;; *scratch* as its buffer context, can't see *scratch*'s value for
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
179 ;; mode-popup-menu--the default overrides it.
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
180 ;;
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
181 ;; This is not specific to *scratch*--try it on ~/.xemacs/init.el--but it
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
182 ;; does appear to be specific to the first time mode-popup-menu is
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
183 ;; accessed as a buffer-local variable in non-interactive code (that is,
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
184 ;; M-: mode-popup-menu RET gives the correct value).
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
185 ;;
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
186 ;; My fixing this right now isn't going to happen. Aidan Kehoe, 2006-01-03
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
187 ; (message (concat "inside easy-menu-add, menu is %s, "
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
188 ; "mode-popup-menu is %s, current buffer is %s, "
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
189 ; "default-value mode-popup-menu is %s, "
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
190 ; "easy-menu-all-popups is %s")
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
191 ; menu mode-popup-menu (current-buffer)
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
192 ; (default-value 'mode-popup-menu) easy-menu-all-popups)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
193 (when (featurep 'menubar)
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
194 ;; Save the existing mode-popup-menu, if it's been changed.
5366
f00192e1cd49 Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents: 5287
diff changeset
195 (when (and (eql (length easy-menu-all-popups) 0)
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
196 (not (equal (default-value 'mode-popup-menu) mode-popup-menu)))
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
197 (push mode-popup-menu easy-menu-all-popups))
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
198 ;; Add the menu to our list of all the popups for the buffer.
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
199 (pushnew menu easy-menu-all-popups :test 'equal)
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
200 ;; If there are multiple popup menus available, make the popup menu
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
201 ;; normally shown with button-3 a menu of them. If there is just one,
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
202 ;; make that button show it, and no super-menu.
5366
f00192e1cd49 Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents: 5287
diff changeset
203 (setq mode-popup-menu (if (eql 1 (length easy-menu-all-popups))
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
204 (car easy-menu-all-popups)
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
205 (cons (easy-menu-title)
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
206 (reverse easy-menu-all-popups))))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
207 (cond ((null current-menubar)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
208 ;; Don't add it to a non-existing menubar.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
209 nil)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
210 ((assoc (car menu) current-menubar)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
211 ;; Already present.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
212 nil)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
213 ((equal current-menubar '(nil))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
214 ;; Set at left if only contains right marker.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
215 (set-buffer-menubar (list menu nil)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
216 (t
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
217 ;; Add at right.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
218 (set-buffer-menubar (copy-sequence current-menubar))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
219 (add-menu nil (car menu) (cdr menu))))))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
220
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
221 (defun easy-menu-remove (menu)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
222 "Remove MENU from the current menu bar."
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
223 (when (featurep 'menubar)
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
224 (setq
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
225 ;; Remove this menu from the list of popups we know about.
5652
cc6f0266bc36 Avoid #'delq in core Lisp, for the sake of style, a very slightly smaller binary
Aidan Kehoe <kehoea@parhasard.net>
parents: 5473
diff changeset
226 easy-menu-all-popups (delete* menu easy-menu-all-popups)
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
227 ;; If there are multiple popup menus available, make the popup menu
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
228 ;; normally shown with button-3 a menu of them. If there is just one,
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
229 ;; make that button show it, and no super-menu.
5366
f00192e1cd49 Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents: 5287
diff changeset
230 mode-popup-menu (if (eql 1 (length easy-menu-all-popups))
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
231 (car easy-menu-all-popups)
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
232 (cons (easy-menu-title)
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
233 (reverse easy-menu-all-popups))))
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
234 ;; If we've just set mode-popup-menu to an empty menu, change that menu
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
235 ;; to its default value (without intervention from easy-menu).
5366
f00192e1cd49 Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents: 5287
diff changeset
236 (if (eql (length easy-menu-all-popups) 0)
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
237 (setq mode-popup-menu (default-value 'mode-popup-menu)))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
238 (and current-menubar
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
239 (assoc (car menu) current-menubar)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
240 (delete-menu-item (list (car menu))))))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
241
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
242 (defsubst easy-menu-normalize (menu)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
243 (if (symbolp menu)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
244 (symbol-value menu)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
245 menu))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
246
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
247 (defun easy-menu-add-item (menu path item &optional before)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
248 "At the end of the submenu of MENU with path PATH, add ITEM.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
249 If ITEM is already present in this submenu, then this item will be changed.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
250 otherwise ITEM will be added at the end of the submenu, unless the optional
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
251 argument BEFORE is present, in which case ITEM will instead be added
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
252 before the item named BEFORE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
253 MENU is either a symbol, which have earlier been used as the first
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
254 argument in a call to `easy-menu-define', or the value of such a symbol
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
255 i.e. a menu, or nil, which stands for the current menubar.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
256 PATH is a list of strings for locating the submenu where ITEM is to be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
257 added. If PATH is nil, MENU itself is used. Otherwise, the first
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
258 element should be the name of a submenu directly under MENU. This
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
259 submenu is then traversed recursively with the remaining elements of PATH.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
260 ITEM is either defined as in `easy-menu-define', a menu defined earlier
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
261 by `easy-menu-define' or `easy-menu-create-menu' or an item returned
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
262 from `easy-menu-item-present-p' or `easy-menu-remove-item'."
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
263 (when (featurep 'menubar)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
264 (add-menu-button path item before (easy-menu-normalize menu))))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
265
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
266 (defun easy-menu-item-present-p (menu path name)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
267 "In submenu of MENU with path PATH, return true iff item NAME is present.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
268 MENU and PATH are defined as in `easy-menu-add-item'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
269 NAME should be a string, the name of the element to be looked for.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
270
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
271 The return value can be used as an argument to `easy-menu-add-item'."
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
272 (if (featurep 'menubar)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
273 (car (find-menu-item (or (easy-menu-normalize menu) current-menubar)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
274 (append path (list name))))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
275 nil))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
276
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
277 (defun easy-menu-remove-item (menu path name)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
278 "From submenu of MENU with path PATH, remove item NAME.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
279 MENU and PATH are defined as in `easy-menu-add-item'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
280 NAME should be a string, the name of the element to be removed.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
281
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
282 The return value can be used as an argument to `easy-menu-add-item'."
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
283 (when (featurep 'menubar)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
284 (delete-menu-item (append path (list name))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
285 (easy-menu-normalize menu))))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
286
3230
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
287 ;; Think up a good title for the menu. Take the major-mode of the buffer,
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
288 ;; strip the -mode part, convert hyphens to spaces, and capitalize it.
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
289 ;;
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
290 ;; In a more ideal world, we could use `mode-name' here, which see, but that
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
291 ;; turns out to be temporarily trashed by various minor modes, and this
012240027a21 [xemacs-hg @ 2006-02-05 19:20:44 by aidan]
aidan
parents: 2686
diff changeset
292 ;; value is much more trustworthy.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
293
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
294 (defun easy-menu-title ()
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
295 (capitalize (replace-in-string (replace-in-string
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
296 (symbol-name major-mode) "-mode$" "")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
297 "-" " ")))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
298
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
299 (provide 'easymenu)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
300
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
301 ;;; easymenu.el ends here