Mercurial > emacs
annotate lisp/derived.el @ 5820:3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Bind inhibit-read-only; don't set buffer-read-only.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 07 Feb 1994 05:54:34 +0000 |
parents | 27a2ad893b22 |
children | d81345ecac1a |
rev | line source |
---|---|
5765 | 1 ;;; mode-clone.el (alpha version) -- allow inheritance of major modes. |
2 | |
3 ;; Copyright (C) 1993 Free Software Foundation, Inc. | |
4 | |
5 ;; Author: David Megginson (dmeggins@aix1.uottawa.ca) | |
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 | |
23 ;;; Commentary: | |
24 | |
25 ;; GNU Emacs is already, in a sense, object oriented -- each object | |
26 ;; (buffer) belongs to a class (major mode), and that class defines | |
27 ;; the relationship between messages (input events) and methods | |
28 ;; (commands) by means of a keymap. | |
29 ;; | |
30 ;; The only thing missing is a good scheme of inheritance. It is | |
31 ;; possible to simulate a single level of inheritance with generous | |
32 ;; use of hooks and a bit of work -- sgml-mode, for example, also runs | |
33 ;; the hooks for text-mode, and keymaps can inherit from other keymaps | |
34 ;; -- but generally, each major mode ends up reinventing the wheel. | |
35 ;; Ideally, someone should redesign all of Emacs's major modes to | |
36 ;; follow a more conventional object-oriented system: when defining a | |
37 ;; new major mode, the user should need only to name the existing mode | |
38 ;; it is most similar to, then list the (few) differences. | |
39 ;; | |
40 ;; In the mean time, this package offers most of the advantages of | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
41 ;; full inheritance with the existing major modes. The macro |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
42 ;; `define-mode-clone' allows the user to make a clone of an existing |
5765 | 43 ;; major mode, with its own keymap. The new mode will inherit the key |
44 ;; bindings of its parent, and will, in fact, run its parent first | |
45 ;; every time it is called. For example, the commands | |
46 ;; | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
47 ;; (define-mode-clone hypertext-mode text-mode "Hypertext" |
5765 | 48 ;; "Major mode for hypertext.\n\n\\{hypertext-mode-map}" |
49 ;; (setq case-fold-search nil)) | |
50 ;; | |
51 ;; (define-key hypertext-mode-map [down-mouse-3] 'do-hyper-link) | |
52 ;; | |
53 ;; will create a function `hypertext-mode' with its own (sparse) | |
54 ;; keymap `hypertext-mode-map.' The command M-x hypertext-mode will | |
55 ;; perform the following actions: | |
56 ;; | |
57 ;; - run the command (text-mode) to get its default setup | |
58 ;; - replace the current keymap with 'hypertext-mode-map,' which will | |
59 ;; inherit from 'text-mode-map'. | |
60 ;; - replace the current syntax table with | |
61 ;; 'hypertext-mode-syntax-table', which will borrow its defaults | |
62 ;; from the current text-mode-syntax-table. | |
63 ;; - if 'hypertext-mode-abbrev-table' exists, it will become the | |
64 ;; current abbrev table. | |
65 ;; - change the mode line to read "Hypertext" | |
66 ;; - assign the value 'hypertext-mode' to the 'major-mode' variable | |
67 ;; - run the body of commands provided in the macro -- in this case, | |
68 ;; set the local variable `case-fold-search' to nil. | |
69 ;; - **run the command (hypertext-mode-setup), which is empty by | |
70 ;; default, but may be redefined by the user to contain special | |
71 ;; commands (ie. setting local variables like 'outline-regexp') | |
72 ;; **NOTE: do not use this option -- it will soon be obsolete. | |
73 ;; - run anything assigned to 'hypertext-mode-hooks' (obsolete, but | |
74 ;; supported for the sake of compatibility). | |
75 ;; | |
76 ;; The advantages of this system are threefold. First, text mode is | |
77 ;; untouched -- if you had added the new keystroke to `text-mode-map,' | |
78 ;; possibly using hooks, you would have added it to all text buffers | |
79 ;; -- here, it appears only in hypertext buffers, where it makes | |
80 ;; sense. Second, it is possible to build even further, and clone the | |
81 ;; clone. The commands | |
82 ;; | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
83 ;; (define-mode-clone html-mode hypertext-mode "HTML") |
5765 | 84 ;; [various key definitions] |
85 ;; | |
86 ;; will add a new major mode for HTML with very little fuss. | |
87 ;; | |
88 ;; Note also the function `clone-class,' which returns the non-clone | |
89 ;; major mode which a clone is based on (ie. NOT necessarily the | |
90 ;; immediate parent). | |
91 ;; | |
92 ;; (clone-class 'text-mode) ==> text-mode | |
93 ;; (clone-class 'hypertext-mode) ==> text-mode | |
94 ;; (clone-class 'html-mode) ==> text-mode | |
95 | |
96 ;;; Code: | |
97 | |
98 ;; PUBLIC: define a new major mode which inherits from an existing one. | |
99 | |
100 ;;;###autoload | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
101 (defmacro define-mode-clone (child parent name &optional docstring &rest body) |
5765 | 102 "Create a new mode which is similar to an old one. |
103 | |
104 The arguments to this command are as follow: | |
105 | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
106 PARENT: the name of the command for the parent mode (ie. text-mode). |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
107 CHILD: the name of the command for the clone mode. |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
108 NAME: a string which will appear in the status line (ie. \"Hypertext\") |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
109 DOCSTRING: an optional documentation string--if you do not supply one, |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
110 the function will attempt to invent something useful. |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
111 BODY: forms to execute just before running the |
5765 | 112 hooks for the new mode. |
113 | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
114 The following simple command would clone LaTeX mode into |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
115 LaTeX-Thesis mode: |
5765 | 116 |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
117 (define-mode-clone LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\") |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
118 |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
119 You could then make new key bindings for `LaTeX-thesis-mode-map' |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
120 without changing regular LaTeX mode. In this example, BODY is empty, |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
121 and DOCSTRING is generated by default. |
5765 | 122 |
123 On a more complicated level, the following command would clone | |
124 sgml-mode and change the variable `case-fold-search' to nil: | |
125 | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
126 (define-mode-clone article-mode sgml-mode \"Article\" |
5765 | 127 \"Major mode for editing technical articles.\" |
128 (setq case-fold-search nil)) | |
129 | |
130 Note that if the documentation string had been left out, it would have | |
131 been generated automatically, with a reference to the keymap." | |
132 | |
133 ; Some trickiness, since what | |
134 ; appears to be the docstring | |
135 ; may really be the first | |
136 ; element of the body. | |
137 (if (and docstring (not (stringp docstring))) | |
138 (progn (setq body (cons docstring body)) | |
139 (setq docstring nil))) | |
140 (setq docstring (or docstring (clone-make-docstring parent child))) | |
141 | |
142 (` (progn | |
143 (clone-init-mode-variables (quote (, child))) | |
144 (defun (, child) () | |
145 (, docstring) | |
146 (interactive) | |
147 ; Run the parent. | |
148 ((, parent)) | |
149 ; Identify special modes. | |
150 (if (get (quote (, parent)) 'special) | |
151 (put (quote (, child)) 'special t)) | |
152 ; Identify the child mode. | |
153 (setq major-mode (quote (, child))) | |
154 (setq mode-name (, name)) | |
155 ; Set up maps and tables. | |
156 (clone-set-keymap (quote (, child))) | |
157 (clone-set-syntax-table (quote (, child))) | |
158 (clone-set-abbrev-table (quote (, child))) | |
159 ; Splice in the body (if any). | |
160 (,@ body) | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
161 ;;; ; Run the setup function, if |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
162 ;;; ; any -- this will soon be |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
163 ;;; ; obsolete. |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
164 ;;; (clone-run-setup-function (quote (, child))) |
5765 | 165 ; Run the hooks, if any. |
166 (clone-run-hooks (quote (, child))))))) | |
167 | |
168 | |
169 ;; PUBLIC: find the ultimate class of a clone mode. | |
170 | |
171 (defun clone-class (mode) | |
172 "Find the class of a major mode. | |
173 A mode's class is the first ancestor which is NOT a clone. | |
174 Use the `clone-parent' property of the symbol to trace backwards." | |
175 (while (get mode 'clone-parent) | |
176 (setq mode (get mode 'clone-parent))) | |
177 mode) | |
178 | |
179 | |
180 ;; Inline functions to construct various names from a mode name. | |
181 | |
182 (defsubst clone-setup-function-name (mode) | |
183 "Construct a setup-function name based on a mode name." | |
184 (intern (concat (symbol-name mode) "-setup"))) | |
185 | |
186 (defsubst clone-hooks-name (mode) | |
187 "Construct a hooks name based on a mode name." | |
188 (intern (concat (symbol-name mode) "-hooks"))) | |
189 | |
190 (defsubst clone-map-name (mode) | |
191 "Construct a map name based on a mode name." | |
192 (intern (concat (symbol-name mode) "-map"))) | |
193 | |
194 (defsubst clone-syntax-table-name (mode) | |
195 "Construct a syntax-table name based on a mode name." | |
196 (intern (concat (symbol-name mode) "-syntax-table"))) | |
197 | |
198 (defsubst clone-abbrev-table-name (mode) | |
199 "Construct an abbrev-table name based on a mode name." | |
200 (intern (concat (symbol-name mode) "-abbrev-table"))) | |
201 | |
202 | |
203 ;; Utility functions for defining a clone mode. | |
204 | |
205 (defun clone-init-mode-variables (mode) | |
206 "Initialise variables for a new mode. | |
207 Right now, just set up a blank keymap and an empty syntax table." | |
208 | |
209 (eval (` (defvar (, (clone-map-name mode)) | |
210 (make-sparse-keymap) | |
211 (, (format "Keymap for %s." mode))))) | |
212 (put (clone-map-name mode) 'clone-merged nil) | |
213 | |
214 (eval (` (defvar (, (clone-syntax-table-name mode)) | |
215 (make-vector 256 nil) | |
216 (, (format "Syntax table for %s." mode))))) | |
217 (put (clone-syntax-table-name mode) 'clone-merged nil) | |
218 | |
219 (eval (` (defvar (, (clone-abbrev-table-name mode)) | |
220 nil | |
221 (, (format "Abbrev table for %s." mode))))) | |
222 (define-abbrev-table (clone-abbrev-table-name mode) ())) | |
223 | |
224 (defun clone-make-docstring (parent child) | |
225 "Construct a docstring for a new mode if none is provided." | |
226 | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
227 (format "This major mode is a clone of `%s', created by `define-mode-clone'. |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
228 It inherits all of the parent's attributes, but has its own keymap, |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
229 abbrev table and syntax table: |
5765 | 230 |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
231 `%s-map' and `%s-syntax-table' |
5765 | 232 |
233 which more-or-less shadow | |
234 | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
235 `%s-map' and `%s-syntax-table' |
5765 | 236 |
237 \\{%s-map}" parent child child parent parent child)) | |
238 | |
239 | |
240 ;; Utility functions for running a clone mode. | |
241 | |
242 (defun clone-set-keymap (mode) | |
243 "Set the keymap of the new mode, maybe merging with the parent." | |
244 (let* ((map-name (clone-map-name mode)) | |
245 (new-map (eval map-name)) | |
246 (old-map (current-local-map))) | |
247 (if (get map-name 'clone-merged) | |
248 (use-local-map new-map) | |
249 (put map-name 'clone-merged t) | |
250 (use-local-map (set map-name (clone-merge-keymaps old-map new-map)))))) | |
251 | |
252 (defun clone-set-syntax-table (mode) | |
253 "Set the syntax table of the new mode, maybe merging with the parent." | |
254 (let* ((table-name (clone-syntax-table-name mode)) | |
255 (old-table (syntax-table)) | |
256 (new-table (eval table-name))) | |
257 (if (get table-name 'clone-merged) | |
258 t | |
259 (clone-merge-syntax-tables old-table new-table)) | |
260 (set-syntax-table new-table) | |
261 (put table-name 'clone-merged t))) | |
262 | |
263 (defun clone-set-abbrev-table (mode) | |
264 "Set the abbrev table if it exists." | |
265 (let* ((table-name (clone-abbrev-table-name mode)) | |
266 (table (and (boundp table-name) (eval table-name)))) | |
267 (if table | |
268 (setq local-abbrev-table table)))) | |
269 | |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
270 ;;;(defun clone-run-setup-function (mode) |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
271 ;;; "Run the setup function if it exists." |
5765 | 272 |
5766
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
273 ;;; (let ((fname (clone-setup-function-name mode))) |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
274 ;;; (if (fboundp fname) |
27a2ad893b22
(define-mode-clone): Renamed from mode-clone.
Richard M. Stallman <rms@gnu.org>
parents:
5765
diff
changeset
|
275 ;;; (funcall fname)))) |
5765 | 276 |
277 (defun clone-run-hooks (mode) | |
278 "Run the hooks if they exist." | |
279 | |
280 (let ((hooks-name (clone-hooks-name mode))) | |
281 (if (boundp hooks-name) | |
282 (run-hooks hooks-name)))) | |
283 | |
284 ;; Functions to merge maps and tables. | |
285 | |
286 (defun clone-merge-keymaps (old new) | |
287 "Merge a new keymap into an old one. | |
288 The old keymap is set to be the cdr of the new one, so that there will | |
289 be automatic inheritance." | |
290 (append new old)) | |
291 | |
292 (defun clone-merge-syntax-tables (old new) | |
293 "Merge a new syntax table into an old one. | |
294 Where the new table already has an entry, nothing is copied from the old one." | |
295 (let ((idx 0) | |
296 (end (min (length new) (length old)))) | |
297 (while (< idx end) | |
298 (if (not (aref new idx)) | |
299 (aset new idx (aref old idx))) | |
300 (setq idx (1+ idx))))) | |
301 | |
302 (provide 'mode-clone) | |
303 | |
304 ;;; mode-clone.el ends here |