annotate lisp/gnus/custom.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children ac2d302a0011
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; custom.el --- User friendly customization support.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1995, 1996 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author: Per Abrahamsen <abraham@iesd.auc.dk>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Keywords: help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Version: 0.5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;; WARNING: This package is still under construction and not all of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;; the features below are implemented.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; This package provides a framework for adding user friendly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;; customization support to Emacs. Having to do customization by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; editing a text file in some arcane syntax is user hostile in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;; extreme, and to most users emacs lisp definitely count as arcane.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; The intent is that authors of emacs lisp packages declare the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;; variables intended for user customization with `custom-declare'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;; Custom can then automatically generate a customization buffer with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;; `custom-buffer-create' where the user can edit the package
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; variables in a simple and intuitive way, as well as a menu with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;; `custom-menu-create' where he can set the more commonly used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;; variables interactively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;; It is also possible to use custom for modifying the properties of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;; other objects than the package itself, by specifying extra optional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;; arguments to `custom-buffer-create'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ;; Custom is inspired by OPEN LOOK property windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;;; Todo:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;; - Toggle documentation in three states `none', `one-line', `full'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ;; - Function to generate an XEmacs menu from a CUSTOM.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 ;; - Write TeXinfo documentation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ;; - Make it possible to hide sections by clicking at the level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ;; - Declare AUC TeX variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ;; - Declare (ding) Gnus variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ;; - Declare Emacs variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;; - Implement remaining types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ;; - XEmacs port.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ;; - Allow `URL', `info', and internal hypertext buttons.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ;; - Support meta-variables and goal directed customization.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ;; - Make it easy to declare custom types independently.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 ;; - Make it possible to declare default value and type for a single
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ;; variable, storing the data in a symbol property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 ;; - Syntactic sugar for CUSTOM declarations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ;; - Use W3 for variable documentation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (eval-when-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (require 'cl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 ;;; Compatibility:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (defun custom-xmas-add-text-properties (start end props &optional object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (add-text-properties start end props object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (put-text-property start end 'start-open t object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (put-text-property start end 'end-open t object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (defun custom-xmas-put-text-property (start end prop value &optional object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (put-text-property start end prop value object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (put-text-property start end 'start-open t object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (put-text-property start end 'end-open t object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (defun custom-xmas-extent-start-open ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (map-extents (lambda (extent arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (set-extent-property extent 'start-open t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 nil (point) (min (1+ (point)) (point-max))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (if (string-match "XEmacs\\|Lucid" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (fset 'custom-add-text-properties 'custom-xmas-add-text-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (fset 'custom-put-text-property 'custom-xmas-put-text-property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (fset 'custom-extent-start-open 'custom-xmas-extent-start-open)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (fset 'custom-set-text-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (if (fboundp 'set-text-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 'set-text-properties))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (fset 'custom-buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (if (fboundp 'buffer-substring-no-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 'buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 'custom-xmas-buffer-substring-no-properties)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (fset 'custom-add-text-properties 'add-text-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (fset 'custom-put-text-property 'put-text-property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (fset 'custom-extent-start-open 'ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (fset 'custom-set-text-properties 'set-text-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (fset 'custom-buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 'buffer-substring-no-properties))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (defun custom-xmas-buffer-substring-no-properties (beg end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 "Return the text from BEG to END, without text properties, as a string."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (let ((string (buffer-substring beg end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (custom-set-text-properties 0 (length string) nil string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (or (fboundp 'add-to-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 ;; Introduced in Emacs 19.29.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (defun add-to-list (list-var element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 "Add to the value of LIST-VAR the element ELEMENT if it isn't there yet.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 If you want to use `add-to-list' on a variable that is not defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 until a certain package is loaded, you should put the call to `add-to-list'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 into a hook function that will be run only after loading the package.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 `eval-after-load' provides one way to do this. In some cases
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 other hooks, such as major mode hooks, can do the job."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (or (member element (symbol-value list-var))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (set list-var (cons element (symbol-value list-var))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (or (fboundp 'plist-get)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 ;; Introduced in Emacs 19.29.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (defun plist-get (plist prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 "Extract a value from a property list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 PLIST is a property list, which is a list of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 \(PROP1 VALUE1 PROP2 VALUE2...). This function returns the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 corresponding to the given PROP, or nil if PROP is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 one of the properties on the list."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (let (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (while plist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (if (eq (car plist) prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (setq result (car (cdr plist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 plist nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (set plist (cdr (cdr plist)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 result)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (or (fboundp 'plist-put)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 ;; Introduced in Emacs 19.29.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (defun plist-put (plist prop val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 "Change value in PLIST of PROP to VAL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 PLIST is a property list, which is a list of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 \(PROP1 VALUE1 PROP2 VALUE2 ...). PROP is a symbol and VAL is any object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 If PROP is already a property on the list, its value is set to VAL,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 otherwise the new PROP VAL pair is added. The new plist is returned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 use `(setq x (plist-put x prop val))' to be sure to use the new value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 The PLIST is modified by side effects."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (if (null plist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (list prop val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (let ((current plist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (while current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (cond ((eq (car current) prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (setcar (cdr current) val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (setq current nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 ((null (cdr (cdr current)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (setcdr (cdr current) (list prop val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (setq current nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (setq current (cdr (cdr current)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 plist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (or (fboundp 'match-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 ;; Introduced in Emacs 19.29.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (defun match-string (num &optional string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 "Return string of text matched by last search.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 NUM specifies which parenthesized expression in the last regexp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 Zero means the entire text matched by the whole regexp or whole string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 STRING should be given if the last search was by `string-match' on STRING."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (if (match-beginning num)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (if string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (substring string (match-beginning num) (match-end num))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (buffer-substring (match-beginning num) (match-end num))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (or (fboundp 'facep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 ;; Introduced in Emacs 19.29.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (defun facep (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 "Return t if X is a face name or an internal face vector."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (and (or (and (fboundp 'internal-facep) (internal-facep x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (symbolp x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (assq x (and (boundp 'global-face-data) global-face-data))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 ;; XEmacs and Emacs 19.29 facep does different things.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (if (fboundp 'find-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (fset 'custom-facep 'find-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (fset 'custom-facep 'facep))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (if (custom-facep 'underline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 ;; No underline face in XEmacs 19.12.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (and (fboundp 'make-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (funcall (intern "make-face") 'underline))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 ;; Must avoid calling set-face-underline-p directly, because it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 ;; is a defsubst in emacs19, and will make the .elc files non
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 ;; portable!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (or (and (fboundp 'face-differs-from-default-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (face-differs-from-default-p 'underline))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (and (fboundp 'set-face-underline-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (funcall 'set-face-underline-p 'underline t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (defun custom-xmas-set-text-properties (start end props &optional buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (if (null buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (if props
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (while props
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (custom-put-text-property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 start end (car props) (nth 1 props) buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (setq props (nthcdr 2 props)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (remove-text-properties start end ()))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (or (fboundp 'event-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 ;; Missing in Emacs 19.29.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (defun event-point (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 "Return the character position of the given mouse-motion, button-press,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 or button-release event. If the event did not occur over a window, or did
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 not occur over text, then this returns nil. Otherwise, it returns an index
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 into the buffer visible in the event's window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (posn-point (event-start event))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (eval-when-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (defvar x-colors nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (defvar custom-button-face nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (defvar custom-field-uninitialized-face nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (defvar custom-field-invalid-face nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (defvar custom-field-modified-face nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (defvar custom-field-face nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (defvar custom-mouse-face nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (defvar custom-field-active-face nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 ;; We can't easily check for a working intangible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (defconst intangible (if (and (boundp 'emacs-minor-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (or (> emacs-major-version 19)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (and (> emacs-major-version 18)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (> emacs-minor-version 28))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (setq intangible 'intangible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (setq intangible 'intangible-if-it-had-been-working))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 "The symbol making text intangible.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (defconst rear-nonsticky (if (string-match "XEmacs" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 'end-open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 'rear-nonsticky)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 "The symbol making text properties non-sticky in the rear end.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (defconst front-sticky (if (string-match "XEmacs" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 'front-closed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 'front-sticky)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 "The symbol making text properties sticky in the front.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 (defconst mouse-face (if (string-match "XEmacs" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 'highlight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 'mouse-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 "Symbol used for highlighting text under mouse.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 ;; Put it in the Help menu, if possible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (if (string-match "XEmacs" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (if (featurep 'menubar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 ;; XEmacs (disabled because it doesn't work)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (and current-menubar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (add-menu-item '("Help") "Customize..." 'customize t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 ;; Emacs 19.28 and earlier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (global-set-key [ menu-bar help customize ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 '("Customize..." . customize))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 ;; Emacs 19.29 and later
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (global-set-key [ menu-bar help-menu customize ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 '("Customize..." . customize)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 ;; XEmacs popup-menu stolen from w3.el.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (defun custom-x-really-popup-menu (pos title menudesc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 "My hacked up function to do a blocking popup menu..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (let ((echo-keystrokes 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 event menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (while menudesc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (setq menu (cons (vector (car (car menudesc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (list (car (car menudesc))) t) menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 menudesc (cdr menudesc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (setq menu (cons title menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (popup-menu menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (catch 'popup-done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (while t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (setq event (next-command-event event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (cond ((and (misc-user-event-p event) (stringp (car-safe (event-object event))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (throw 'popup-done (event-object event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 ((and (misc-user-event-p event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 (or (eq (event-object event) 'abort)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (eq (event-object event) 'menu-no-selection-hook)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 ((not (popup-menu-up-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 (throw 'popup-done nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 ((button-release-event-p event);; don't beep twice
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (beep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (message "please make a choice from the menu.")))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 ;;; Categories:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 ;; XEmacs use inheritable extents for the same purpose as Emacs uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 ;; the category text property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (if (string-match "XEmacs" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 ;; XEmacs categories.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (defun custom-category-create (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (set name (make-extent nil nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 "Create a text property category named NAME.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (defun custom-category-put (name property value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 "In CATEGORY set PROPERTY to VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (set-extent-property (symbol-value name) property value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (defun custom-category-get (name property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 "In CATEGORY get PROPERTY."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (extent-property (symbol-value name) property))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (defun custom-category-set (from to category)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 "Make text between FROM and TWO have category CATEGORY."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (let ((extent (make-extent from to)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (set-extent-parent extent (symbol-value category)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 ;; Emacs categories.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (defun custom-category-create (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 "Create a text property category named NAME."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (set name name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (defun custom-category-put (name property value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 "In CATEGORY set PROPERTY to VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (put name property value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 (defun custom-category-get (name property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 "In CATEGORY get PROPERTY."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (get name property))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (defun custom-category-set (from to category)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 "Make text between FROM and TWO have category CATEGORY."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (custom-put-text-property from to 'category category)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 ;;; External Data:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 ;; The following functions and variables defines the interface for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 ;; connecting a CUSTOM with an external entity, by default an emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 ;; lisp variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (defvar custom-external 'default-value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 "Function returning the external value of NAME.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (defvar custom-external-set 'set-default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 "Function setting the external value of NAME to VALUE.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (defun custom-external (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 "Get the external value associated with NAME."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (funcall custom-external name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (defun custom-external-set (name value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 "Set the external value associated with NAME to VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (funcall custom-external-set name value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 (defvar custom-name-fields nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 "Alist of custom names and their associated editing field.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (make-variable-buffer-local 'custom-name-fields)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (defun custom-name-enter (name field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 "Associate NAME with FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (if (null name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (custom-assert 'field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 (setq custom-name-fields (cons (cons name field) custom-name-fields))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (defun custom-name-field (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 "The editing field associated with NAME."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (cdr (assq name custom-name-fields)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (defun custom-name-value (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 "The value currently displayed for NAME in the customization buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (let* ((field (custom-name-field name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (custom (custom-field-custom field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (custom-field-parse field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (funcall (custom-property custom 'export) custom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (car (custom-field-extract custom field)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (defvar custom-save 'custom-save
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 "Function that will save current customization buffer.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 ;;; Custom Functions:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 ;; The following functions are part of the public interface to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 ;; CUSTOM datastructure. Each CUSTOM describes a group of variables,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 ;; a single variable, or a component of a structured variable. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 ;; CUSTOM instances are part of two hierarchies, the first is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 ;; `part-of' hierarchy in which each CUSTOM is a component of another
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 ;; CUSTOM, except for the top level CUSTOM which is contained in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 ;; `custom-data'. The second hierarchy is a `is-a' type hierarchy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 ;; where each CUSTOM is a leaf in the hierarchy defined by the `type'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 ;; property and `custom-type-properties'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (defvar custom-file "~/.custom.el"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 "Name of file with customization information.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (defconst custom-data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 '((tag . "Emacs")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (doc . "The extensible self-documenting text editor.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (type . group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 (data "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 ((header . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (compact . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (type . group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (doc . "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 Press [Save] to save any changes permanently after you are done editing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 You can load customization information from other files by editing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 `File' field and pressing the [Load] button. When you press [Save] the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 customization information of all files you have loaded, plus any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 changes you might have made manually, will be stored in the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 specified by the `File' field.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (data ((tag . "Load")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (type . button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 (query . custom-load))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 ((tag . "Save")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (type . button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 (query . custom-save))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 ((name . custom-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (default . "~/.custom.el")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (doc . "Name of file with customization information.\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (tag . "File")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (type . file))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 "The global customization information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 A custom association list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (defun custom-declare (path custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 "Declare variables for customization.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 PATH is a list of tags leading to the place in the customization
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 hierarchy the new entry should be added. CUSTOM is the entry to add."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 (custom-initialize custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (let ((current (custom-travel-path custom-data path)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 (or (member custom (custom-data current))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (nconc (custom-data current) (list custom)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 (put 'custom-declare 'lisp-indent-hook 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (defconst custom-type-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 '((repeat (type . default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 ;; See `custom-match'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (import . custom-repeat-import)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (eval . custom-repeat-eval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (quote . custom-repeat-quote)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (accept . custom-repeat-accept)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 (extract . custom-repeat-extract)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (validate . custom-repeat-validate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 (insert . custom-repeat-insert)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (match . custom-repeat-match)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 (query . custom-repeat-query)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 (prefix . "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (del-tag . "[DEL]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (add-tag . "[INS]"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (pair (type . group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 ;; A cons-cell.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (accept . custom-pair-accept)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 (eval . custom-pair-eval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (import . custom-pair-import)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 (quote . custom-pair-quote)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (valid . (lambda (c d) (consp d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (extract . custom-pair-extract))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (list (type . group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 ;; A lisp list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (quote . custom-list-quote)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 (valid . (lambda (c d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (listp d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (extract . custom-list-extract))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (group (type . default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 ;; See `custom-match'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (face-tag . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 (eval . custom-group-eval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (import . custom-group-import)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (initialize . custom-group-initialize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (apply . custom-group-apply)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (reset . custom-group-reset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (factory-reset . custom-group-factory-reset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (extract . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (validate . custom-group-validate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 (query . custom-toggle-hide)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (accept . custom-group-accept)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 (insert . custom-group-insert)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 (find . custom-group-find))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (toggle (type . choice)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 ;; Booleans.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (data ((type . const)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (tag . "On ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (default . t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 ((type . const)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (tag . "Off")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (default . nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (triggle (type . choice)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 ;; On/Off/Default.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (data ((type . const)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (tag . "On ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (default . t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 ((type . const)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (tag . "Off")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (default . nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 ((type . const)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 (tag . "Def")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 (default . custom:asis))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (choice (type . default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 ;; See `custom-match'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (query . custom-choice-query)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 (accept . custom-choice-accept)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 (extract . custom-choice-extract)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 (validate . custom-choice-validate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (insert . custom-choice-insert)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 (none (tag . "Unknown")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (default . __uninitialized__)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 (type . const)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 (const (type . default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 ;; A `const' only matches a single lisp value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (extract . (lambda (c f) (list (custom-default c))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (validate . (lambda (c f) nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (valid . custom-const-valid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (update . custom-const-update)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (insert . custom-const-insert))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 (face-doc (type . doc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 ;; A variable containing a face.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (doc . "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 You can customize the look of Emacs by deciding which faces should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 used when. If you push one of the face buttons below, you will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 given a choice between a number of standard faces. The name of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 selected face is shown right after the face button, and it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 displayed its own face so you can see how it looks. If you know of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 another standard face not listed and want to use it, you can select
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 `Other' and write the name in the editing field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 If none of the standard faces suits you, you can select `Customize' to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 create your own face. This will make six fields appear under the face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 button. The `Fg' and `Bg' fields are the foreground and background
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 colors for the face, respectively. You should type the name of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 color in the field. You can use any X11 color name. A list of X11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 color names may be available in the file `/usr/lib/X11/rgb.txt' on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 your system. The special color name `default' means that the face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 will not change the color of the text. The `Stipple' field is weird,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 so just ignore it. The three remaining fields are toggles, which will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 make the text `bold', `italic', or `underline' respectively. For some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 fonts `bold' or `italic' will not make any visible change."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (face (type . choice)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (eval . custom-face-eval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 (import . custom-face-import)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (data ((tag . "None")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (default . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 ((tag . "Default")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 (default . default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 (face . custom-const-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 ((tag . "Bold")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (default . bold)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (face . custom-const-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 ((tag . "Bold-italic")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (default . bold-italic)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (face . custom-const-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 ((tag . "Italic")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 (default . italic)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (face . custom-const-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 ((tag . "Underline")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 (default . underline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 (face . custom-const-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 ((tag . "Highlight")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 (default . highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (face . custom-const-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 ((tag . "Modeline")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 (default . modeline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (face . custom-const-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 ((tag . "Region")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 (default . region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 (face . custom-const-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 ((tag . "Secondary Selection")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (default . secondary-selection)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 (face . custom-const-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 ((tag . "Customized")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 (compact . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (face-tag . custom-face-hack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 (eval . custom-face-eval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 (data ((hidden . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (tag . "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (doc . "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 Select the properties you want this face to have.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 (default . custom-face-lookup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (type . const))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 ((tag . "Fg")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (hidden . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 (default . "default")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (width . 20)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 (type . string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 ((tag . "Bg")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 (default . "default")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 (width . 20)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 (type . string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 ((tag . "Stipple")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 (default . "default")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 (width . 20)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 (type . string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 ((tag . "Bold")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (default . custom:asis)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (type . triggle))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 ((tag . "Italic")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (default . custom:asis)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (type . triggle))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 ((tag . "Underline")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (hidden . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (default . custom:asis)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 (type . triggle)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (default . (custom-face-lookup "default" "default" "default"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 nil nil nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (type . list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 ((prompt . "Other")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (face . custom-field-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 (default . __uninitialized__)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 (type . symbol))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 (file (type . string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 ;; A string containing a file or directory name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (directory . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (default-file . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (query . custom-file-query))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (sexp (type . default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 ;; Any lisp expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (width . 40)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 (default . (__uninitialized__ . "Uninitialized"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 (read . custom-sexp-read)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 (write . custom-sexp-write))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 (symbol (type . sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 ;; A lisp symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 (width . 40)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (valid . (lambda (c d) (symbolp d))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 (integer (type . sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 ;; A lisp integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 (width . 10)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (valid . (lambda (c d) (integerp d))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (string (type . default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 ;; A lisp string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (width . 40)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (valid . (lambda (c d) (stringp d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (read . custom-string-read)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 (write . custom-string-write))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (button (type . default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 ;; Push me.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (accept . ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (extract . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (validate . ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (insert . custom-button-insert))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (doc (type . default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 ;; A documentation only entry with no value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 (header . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (reset . ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (extract . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 (validate . ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 (insert . custom-documentation-insert))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 (default (width . 20)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 (valid . (lambda (c v) t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 (insert . custom-default-insert)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 (update . custom-default-update)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 (query . custom-default-query)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 (tag . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 (prompt . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 (doc . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 (header . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 (padding . ? )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 (quote . custom-default-quote)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 (eval . (lambda (c v) nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 (export . custom-default-export)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 (import . (lambda (c v) (list v)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (synchronize . ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (initialize . custom-default-initialize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (extract . custom-default-extract)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (validate . custom-default-validate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (apply . custom-default-apply)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (reset . custom-default-reset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 (factory-reset . custom-default-factory-reset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 (accept . custom-default-accept)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 (match . custom-default-match)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 (name . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 (compact . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 (hidden . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 (face . custom-default-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 (data . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 (calculate . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 (default . __uninitialized__)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 "Alist of default properties for type symbols.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 The format is `((SYMBOL (PROPERTY . VALUE)... )... )'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (defconst custom-local-type-properties nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 "Local type properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 Entries in this list take precedence over `custom-type-properties'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (make-variable-buffer-local 'custom-local-type-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 (defconst custom-nil '__uninitialized__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 "Special value representing an uninitialized field.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (defconst custom-invalid '__invalid__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 "Special value representing an invalid field.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (defconst custom:asis 'custom:asis)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 ;; Bad, ugly, and horrible kludge.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 (defun custom-property (custom property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 "Extract from CUSTOM property PROPERTY."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (let ((entry (assq property custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 (while (null entry)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 ;; Look in superclass.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 (let ((type (custom-type custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (setq custom (cdr (or (assq type custom-local-type-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 (assq type custom-type-properties)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 entry (assq property custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 (custom-assert 'custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (cdr entry)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (defun custom-super (custom property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 "Extract from CUSTOM property PROPERTY. Start with CUSTOM's superclass."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 (let ((entry nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (while (null entry)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 ;; Look in superclass.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 (let ((type (custom-type custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 (setq custom (cdr (or (assq type custom-local-type-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 (assq type custom-type-properties)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 entry (assq property custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 (custom-assert 'custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 (cdr entry)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (defun custom-property-set (custom property value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 "Set CUSTOM PROPERTY to VALUE by side effect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 CUSTOM must have at least one property already."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 (let ((entry (assq property custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 (if entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 (setcdr entry value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 (setcdr custom (cons (cons property value) (cdr custom))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 (defun custom-type (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 "Extract `type' from CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 (cdr (assq 'type custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 (defun custom-name (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 "Extract `name' from CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 (custom-property custom 'name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (defun custom-tag (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 "Extract `tag' from CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 (custom-property custom 'tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 (defun custom-face-tag (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 "Extract `face-tag' from CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (custom-property custom 'face-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (defun custom-prompt (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 "Extract `prompt' from CUSTOM.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 If none exist, default to `tag' or, failing that, `type'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 (or (custom-property custom 'prompt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 (custom-property custom 'tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (capitalize (symbol-name (custom-type custom)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 (defun custom-default (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 "Extract `default' from CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 (let ((value (custom-property custom 'calculate)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 (if value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 (eval value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 (custom-property custom 'default))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 (defun custom-data (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 "Extract the `data' from CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 (custom-property custom 'data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 (defun custom-documentation (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 "Extract `doc' from CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 (custom-property custom 'doc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 (defun custom-width (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 "Extract `width' from CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 (custom-property custom 'width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 (defun custom-compact (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 "Extract `compact' from CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (custom-property custom 'compact))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 (defun custom-padding (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 "Extract `padding' from CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 (custom-property custom 'padding))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 (defun custom-valid (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 "Non-nil if CUSTOM may validly be set to VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 (and (not (and (listp value) (eq custom-invalid (car value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 (funcall (custom-property custom 'valid) custom value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 (defun custom-import (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 "Import CUSTOM VALUE from external variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 This function change VALUE into a form that makes it easier to edit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 internally. What the internal form is exactly depends on CUSTOM.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 The internal form is returned."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 (if (eq custom-nil value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 (list custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 (funcall (custom-property custom 'import) custom value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 (defun custom-eval (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 "Return non-nil if CUSTOM's VALUE needs to be evaluated."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 (funcall (custom-property custom 'eval) custom value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 (defun custom-quote (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 "Quote CUSTOM's VALUE if necessary."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 (funcall (custom-property custom 'quote) custom value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (defun custom-write (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 "Convert CUSTOM VALUE to a string."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 (cond ((eq value custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 ((and (listp value) (eq (car value) custom-invalid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 (cdr value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 (funcall (custom-property custom 'write) custom value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 (defun custom-read (custom string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 "Convert CUSTOM field content STRING into lisp."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 (condition-case nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 (funcall (custom-property custom 'read) custom string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 (error (cons custom-invalid string))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 (defun custom-match (custom values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 "Match CUSTOM with a list of VALUES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 Return a cons-cell where the car is the sublist of VALUES matching CUSTOM,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 and the cdr is the remaining VALUES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 A CUSTOM is actually a regular expression over the alphabet of lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 types. Most CUSTOM types are just doing a literal match, e.g. the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 `symbol' type matches any lisp symbol. The exceptions are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 group: which corresponds to a `(' and `)' group in a regular expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 choice: which corresponds to a group of `|' in a regular expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 repeat: which corresponds to a `*' in a regular expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 optional: which corresponds to a `?', and isn't implemented yet."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 (if (memq values (list custom-nil nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 ;; Nothing matches the uninitialized or empty list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 (cons custom-nil nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 (funcall (custom-property custom 'match) custom values)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 (defun custom-initialize (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 "Initialize `doc' and `default' attributes of CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (funcall (custom-property custom 'initialize) custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (defun custom-find (custom tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 "Find child in CUSTOM with `tag' TAG."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 (funcall (custom-property custom 'find) custom tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 (defun custom-travel-path (custom path)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 "Find decedent of CUSTOM by looking through PATH."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (if (null path)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 custom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 (custom-travel-path (custom-find custom (car path)) (cdr path))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (defun custom-field-extract (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 "Extract CUSTOM's value in FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (if (stringp custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 (funcall (custom-property (custom-field-custom field) 'extract)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 custom field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 (defun custom-field-validate (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 "Validate CUSTOM's value in FIELD.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 Return nil if valid, otherwise return a cons-cell where the car is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 position of the error, and the cdr is a text describing the error."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (if (stringp custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 (funcall (custom-property custom 'validate) custom field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 ;;; Field Functions:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 ;; This section defines the public functions for manipulating the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 ;; FIELD datatype. The FIELD instance hold information about a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 ;; specific editing field in the customization buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 ;; Each FIELD can be seen as an instantiation of a CUSTOM.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 (defvar custom-field-last nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 ;; Last field containing point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 (make-variable-buffer-local 'custom-field-last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 (defvar custom-modified-list nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 ;; List of modified fields.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 (make-variable-buffer-local 'custom-modified-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 (defun custom-field-create (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 "Create a field structure of type CUSTOM containing VALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 A field structure is an array [ CUSTOM VALUE ORIGINAL START END ], where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 CUSTOM defines the type of the field,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 VALUE is the current value of the field,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 ORIGINAL is the original value when created, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 START and END are markers to the start and end of the field."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 (vector custom value custom-nil nil nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (defun custom-field-custom (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 "Return the `custom' attribute of FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 (aref field 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 (defun custom-field-value (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 "Return the `value' attribute of FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 (aref field 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 (defun custom-field-original (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 "Return the `original' attribute of FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 (aref field 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (defun custom-field-start (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 "Return the `start' attribute of FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 (aref field 3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 (defun custom-field-end (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 "Return the `end' attribute of FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (aref field 4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 (defun custom-field-value-set (field value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 "Set the `value' attribute of FIELD to VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 (aset field 1 value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 (defun custom-field-original-set (field original)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 "Set the `original' attribute of FIELD to ORIGINAL."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 (aset field 2 original))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 (defun custom-field-move (field start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 "Set the `start'and `end' attributes of FIELD to START and END."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 (set-marker (or (aref field 3) (aset field 3 (make-marker))) start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 (set-marker (or (aref field 4) (aset field 4 (make-marker))) end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 (defun custom-field-query (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 "Query user for content of current field."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (funcall (custom-property (custom-field-custom field) 'query) field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 (defun custom-field-accept (field value &optional original)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 "Store a new value into field FIELD, taking it from VALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 If optional ORIGINAL is non-nil, consider VALUE for the original value."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 (let ((inhibit-point-motion-hooks t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 (funcall (custom-property (custom-field-custom field) 'accept)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 field value original)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 (defun custom-field-face (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 "The face used for highlighting FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 (let ((custom (custom-field-custom field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 (if (stringp custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 (let ((face (funcall (custom-property custom 'face) field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 (if (custom-facep face) face nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 (defun custom-field-update (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 "Update the screen appearance of FIELD to correspond with the field's value."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 (let ((custom (custom-field-custom field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 (if (stringp custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 (funcall (custom-property custom 'update) field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 ;;; Types:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 ;; The following functions defines type specific actions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 (defun custom-repeat-eval (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 "Non-nil if CUSTOM's VALUE needs to be evaluated."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 (if (eq value custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 (let ((child (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 (found nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 (mapcar (lambda (v) (if (custom-eval child v) (setq found t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 (defun custom-repeat-quote (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 "A list of CUSTOM's VALUEs quoted."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 (let ((child (custom-data custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 (apply 'append (mapcar (lambda (v) (custom-quote child v))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 (defun custom-repeat-import (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 "Modify CUSTOM's VALUE to match internal expectations."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 (let ((child (custom-data custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 (apply 'append (mapcar (lambda (v) (custom-import child v))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 (defun custom-repeat-accept (field value &optional original)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 "Store a new value into field FIELD, taking it from VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 (let ((values (copy-sequence (custom-field-value field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 (all (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 (start (custom-field-start field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 current new)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 (if original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 (custom-field-original-set field value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 (while (consp value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 (setq new (car value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 value (cdr value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 (if values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 ;; Change existing field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 (setq current (car values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 values (cdr values))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 ;; Insert new field if series has grown.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 (setq current (custom-repeat-insert-entry field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 (setq all (custom-insert-before all nil current))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 (custom-field-value-set field all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 (custom-field-accept current new original))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 (while (consp values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 ;; Delete old field if series has scrunk.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 (setq current (car values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 values (cdr values))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 (let ((pos (custom-field-start current))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 (while (not data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 (setq pos (previous-single-property-change pos 'custom-data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 (custom-assert 'pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 (setq data (get-text-property pos 'custom-data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 (or (and (arrayp data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 (> (length data) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 (eq current (aref data 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 (setq data nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 (custom-repeat-delete data)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 (defun custom-repeat-insert (custom level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 "Insert field for CUSTOM at nesting LEVEL in customization buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 (let* ((field (custom-field-create custom nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 (add-tag (custom-property custom 'add-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 (start (make-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 (data (vector field nil start nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 (custom-text-insert "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 (let ((pos (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 (custom-text-insert (custom-property custom 'prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 (custom-tag-insert add-tag 'custom-repeat-add data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 (set-marker start pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 (custom-field-move field start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 (custom-documentation-insert custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 (defun custom-repeat-insert-entry (repeat)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 "Insert entry at point in the REPEAT field."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 (let* ((inhibit-point-motion-hooks t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 (inhibit-read-only t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 (before-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 (after-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 (custom (custom-field-custom repeat))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 (add-tag (custom-property custom 'add-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 (del-tag (custom-property custom 'del-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 (start (make-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 (end (make-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 (data (vector repeat nil start end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 (custom-extent-start-open)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 (insert-before-markers "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 (backward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 (set-marker start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 (custom-text-insert " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 (aset data 1 (setq field (custom-insert (custom-data custom) nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 (custom-text-insert " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 (set-marker end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 (custom-text-insert (custom-property custom 'prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 (custom-tag-insert add-tag 'custom-repeat-add data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 (custom-text-insert " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 (custom-tag-insert del-tag 'custom-repeat-delete data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 (defun custom-repeat-add (data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 "Add list entry."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 (let ((parent (aref data 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 (field (aref data 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 (at (aref data 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 new)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 (goto-char at)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 (setq new (custom-repeat-insert-entry parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 (custom-field-value-set parent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 (custom-insert-before (custom-field-value parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 field new))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 (defun custom-repeat-delete (data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 "Delete list entry."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 (let ((inhibit-point-motion-hooks t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 (inhibit-read-only t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 (before-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 (after-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 (parent (aref data 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 (field (aref data 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 (delete-region (aref data 2) (1+ (aref data 3)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 (custom-field-untouch (aref data 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 (custom-field-value-set parent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 (delq field (custom-field-value parent)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 (defun custom-repeat-match (custom values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 "Match CUSTOM with VALUES."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 (let* ((child (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 (match (custom-match child values))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 matches)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 (while (not (eq (car match) custom-nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 (setq matches (cons (car match) matches)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 values (cdr match)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 match (custom-match child values)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 (cons (nreverse matches) values)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 (defun custom-repeat-extract (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 "Extract list of children's values."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 (let ((values (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 (data (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 (if (eq values custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 (while values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 (setq result (append result (custom-field-extract data (car values)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 values (cdr values))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 (defun custom-repeat-validate (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 "Validate children."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 (let ((values (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 (data (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 (if (eq values custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 (setq result (cons (custom-field-start field) "Uninitialized list")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 (while (and values (not result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 (setq result (custom-field-validate data (car values))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 values (cdr values)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 (defun custom-pair-accept (field value &optional original)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 "Store a new value into field FIELD, taking it from VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 (custom-group-accept field (list (car value) (cdr value)) original))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 (defun custom-pair-eval (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 "Non-nil if CUSTOM's VALUE needs to be evaluated."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 (custom-group-eval custom (list (car value) (cdr value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 (defun custom-pair-import (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 "Modify CUSTOM's VALUE to match internal expectations."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 (let ((result (car (custom-group-import custom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 (list (car value) (cdr value))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 (custom-assert '(eq (length result) 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 (list (cons (nth 0 result) (nth 1 result)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 (defun custom-pair-quote (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 "Quote CUSTOM's VALUE if necessary."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 (if (custom-eval custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 (let ((v (car (custom-group-quote custom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 (list (car value) (cdr value))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 (list (list 'cons (nth 0 v) (nth 1 v))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 (custom-default-quote custom value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 (defun custom-pair-extract (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 "Extract cons of children's values."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 (let ((values (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 (data (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 (custom-assert '(eq (length values) (length data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 (while values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 (setq result (append result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 (custom-field-extract (car data) (car values)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 data (cdr data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 values (cdr values)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 (custom-assert '(null data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 (list (cons (nth 0 result) (nth 1 result)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 (defun custom-list-quote (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 "Quote CUSTOM's VALUE if necessary."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 (if (custom-eval custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 (let ((v (car (custom-group-quote custom value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 (list (cons 'list v)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 (custom-default-quote custom value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 (defun custom-list-extract (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 "Extract list of children's values."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 (let ((values (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 (data (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 (custom-assert '(eq (length values) (length data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 (while values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 (setq result (append result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 (custom-field-extract (car data) (car values)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 data (cdr data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 values (cdr values)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 (custom-assert '(null data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 (list result)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 (defun custom-group-validate (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 "Validate children."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 (let ((values (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (data (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 (if (eq values custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 (setq result (cons (custom-field-start field) "Uninitialized list"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 (custom-assert '(eq (length values) (length data))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 (while (and values (not result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 (setq result (custom-field-validate (car data) (car values))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 data (cdr data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 values (cdr values)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 (defun custom-group-eval (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 "Non-nil if CUSTOM's VALUE needs to be evaluated."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 (let ((found nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 (mapcar (lambda (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 (or (stringp c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 (let ((match (custom-match c value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 (if (custom-eval c (car match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 (setq found t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 (setq value (cdr match)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 found))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 (defun custom-group-quote (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 "A list of CUSTOM's VALUE members, quoted."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 (list (apply 'append
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 (mapcar (lambda (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 (if (stringp c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 (let ((match (custom-match c value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 (prog1 (custom-quote c (car match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 (setq value (cdr match))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 (custom-data custom)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 (defun custom-group-import (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 "Modify CUSTOM's VALUE to match internal expectations."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 (list (apply 'append
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 (mapcar (lambda (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 (if (stringp c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 (let ((match (custom-match c value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 (prog1 (custom-import c (car match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 (setq value (cdr match))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 (custom-data custom)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 (defun custom-group-initialize (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 "Initialize `doc' and `default' entries in CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 (if (custom-name custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 (custom-default-initialize custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 (mapcar 'custom-initialize (custom-data custom))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 (defun custom-group-apply (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 "Reset `value' in FIELD to `original'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 (let ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 (values (custom-field-value field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 (if (custom-name custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 (custom-default-apply field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 (mapcar 'custom-field-apply values))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 (defun custom-group-reset (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 "Reset `value' in FIELD to `original'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 (let ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 (values (custom-field-value field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 (if (custom-name custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 (custom-default-reset field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 (mapcar 'custom-field-reset values))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 (defun custom-group-factory-reset (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 "Reset `value' in FIELD to `default'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 (let ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 (values (custom-field-value field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 (if (custom-name custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 (custom-default-factory-reset field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 (mapcar 'custom-field-factory-reset values))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 (defun custom-group-find (custom tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 "Find child in CUSTOM with `tag' TAG."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 (let ((data (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 (result nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 (while (not result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 (custom-assert 'data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 (if (equal (custom-tag (car data)) tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 (setq result (car data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 (setq data (cdr data))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 (defun custom-group-accept (field value &optional original)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 "Store a new value into field FIELD, taking it from VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 (let* ((values (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 (custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 (from (custom-field-start field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 (face-tag (custom-face-tag custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 current)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 (if face-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 (custom-put-text-property from (+ from (length (custom-tag custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 'face (funcall face-tag field value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 (if original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 (custom-field-original-set field value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 (while values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 (setq current (car values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 values (cdr values))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 (if current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 (let* ((custom (custom-field-custom current))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 (match (custom-match custom value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 (setq value (cdr match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 (custom-field-accept current (car match) original))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 (defun custom-group-insert (custom level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 "Insert field for CUSTOM at nesting LEVEL in customization buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 (let* ((field (custom-field-create custom nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 fields hidden
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 (from (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 (compact (custom-compact custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 (tag (custom-tag custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 (face-tag (custom-face-tag custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 (cond (face-tag (custom-text-insert tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 (tag (custom-tag-insert tag field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 (or compact (custom-documentation-insert custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 (or compact (custom-text-insert "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 (let ((data (custom-data custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 (while data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 (setq fields (cons (custom-insert (car data) (if level (1+ level)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 fields))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 (setq hidden (or (stringp (car data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 (custom-property (car data) 'hidden)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 (setq data (cdr data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 (if data (custom-text-insert (cond (hidden "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 (compact " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 (t "\n"))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 (if compact (custom-documentation-insert custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 (custom-field-value-set field (nreverse fields))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 (custom-field-move field from (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 (defun custom-choice-insert (custom level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 "Insert field for CUSTOM at nesting LEVEL in customization buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 (let* ((field (custom-field-create custom nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 (from (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 (custom-text-insert "lars er en nisse")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 (custom-field-move field from (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 (custom-documentation-insert custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 (custom-field-reset field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 (defun custom-choice-accept (field value &optional original)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 "Store a new value into field FIELD, taking it from VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 (let ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 (start (custom-field-start field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 (end (custom-field-end field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 (inhibit-read-only t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 (before-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 (after-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 from)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 (cond (original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 (setq custom-modified-list (delq field custom-modified-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 (custom-field-original-set field value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 ((equal value (custom-field-original field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 (setq custom-modified-list (delq field custom-modified-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 (add-to-list 'custom-modified-list field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 (custom-field-untouch (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 (delete-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 (setq from (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 (insert-before-markers " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 (backward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 (custom-category-set (point) (1+ (point)) 'custom-hidden-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 (custom-tag-insert (custom-tag custom) field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 (custom-text-insert ": ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 (let ((data (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 found begin)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 (while (and data (not found))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 (if (not (custom-valid (car data) value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 (setq data (cdr data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 (setq found (custom-insert (car data) nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 (setq data nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 (if found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 (setq begin (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 found (custom-insert (custom-property custom 'none) nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 (custom-add-text-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 begin (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 (list rear-nonsticky t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 'face custom-field-uninitialized-face)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 (or original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 (custom-field-original-set found (custom-field-original field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 (custom-field-accept found value original)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 (custom-field-value-set field found)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 (custom-field-move field from end))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 (defun custom-choice-extract (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 "Extract child's value."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 (let ((value (custom-field-value field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 (custom-field-extract (custom-field-custom value) value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 (defun custom-choice-validate (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 "Validate child's value."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 (let ((value (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 (custom (custom-field-custom field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 (if (or (eq value custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 (eq (custom-field-custom value) (custom-property custom 'none)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 (cons (custom-field-start field) "Make a choice")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 (custom-field-validate (custom-field-custom value) value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 (defun custom-choice-query (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 "Choose a child."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 (let* ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 (old (custom-field-custom (custom-field-value field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 (default (custom-prompt old))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 (tag (custom-prompt custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 (data (custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 current alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 (if (eq (length data) 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 (custom-field-accept field (custom-default (if (eq (nth 0 data) old)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 (nth 1 data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 (nth 0 data))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 (while data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 (setq current (car data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 data (cdr data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 (setq alist (cons (cons (custom-prompt current) current) alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 (let ((answer (cond ((and (fboundp 'button-press-event-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 (fboundp 'popup-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 (button-press-event-p last-input-event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 (cdr (assoc (car (custom-x-really-popup-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 last-input-event tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 (reverse alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 ((listp last-input-event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 (x-popup-menu last-input-event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 (list tag (cons "" (reverse alist)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 (let ((choice (completing-read (concat tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 " (default "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 "): ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 alist nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 (if (or (null choice) (string-equal choice ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 (setq choice default))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 (cdr (assoc choice alist)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 (if answer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 (custom-field-accept field (custom-default answer)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 (defun custom-file-query (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 "Prompt for a file name"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 (let* ((value (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 (custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 (valid (custom-valid custom value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 (directory (custom-property custom 'directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 (default (and (not valid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 (custom-property custom 'default-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 (tag (custom-tag custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 (prompt (if default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 (concat tag " (" default "): ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 (concat tag ": "))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 (custom-field-accept field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 (if (custom-valid custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 (read-file-name prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 (if (file-name-absolute-p value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 default nil value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 (read-file-name prompt directory default)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 (defun custom-face-eval (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 "Return non-nil if CUSTOM's VALUE needs to be evaluated."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 (not (symbolp value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 (defun custom-face-import (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 "Modify CUSTOM's VALUE to match internal expectations."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 (let ((name (or (and (facep value) (symbol-name (face-name value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 (symbol-name value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 (list (if (string-match "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 custom-face-\\(.*\\)-\\(.*\\)-\\(.*\\)-\\(.*\\)-\\(.*\\)-\\(.*\\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 (list 'custom-face-lookup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 (match-string 1 name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 (match-string 2 name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 (match-string 3 name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 (intern (match-string 4 name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 (intern (match-string 5 name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 (intern (match-string 6 name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 (defun custom-face-lookup (&optional fg bg stipple bold italic underline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 "Lookup or create a face with specified attributes."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 (let ((name (intern (format "custom-face-%s-%s-%s-%S-%S-%S"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 (or fg "default")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 (or bg "default")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 (or stipple "default")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 bold italic underline))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 (if (and (custom-facep name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 (fboundp 'make-face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 (copy-face 'default name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 (when (and fg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 (not (string-equal fg "default")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 (set-face-foreground name fg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 (error nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 (when (and bg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 (not (string-equal bg "default")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 (set-face-background name bg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 (error nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 (when (and stipple
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 (not (string-equal stipple "default"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 (not (eq stipple 'custom:asis))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 (fboundp 'set-face-stipple))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 (set-face-stipple name stipple))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 (when (and bold
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 (not (eq bold 'custom:asis)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 (make-face-bold name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 (error nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 (when (and italic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 (not (eq italic 'custom:asis)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 (make-face-italic name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 (error nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 (when (and underline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 (not (eq underline 'custom:asis)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 (set-face-underline-p name t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 (error nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 (defun custom-face-hack (field value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 "Face that should be used for highlighting FIELD containing VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 (let* ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 (form (funcall (custom-property custom 'export) custom value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 (face (apply (car form) (cdr form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 (if (custom-facep face) face nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 (defun custom-const-insert (custom level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 "Insert field for CUSTOM at nesting LEVEL in customization buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 (let* ((field (custom-field-create custom custom-nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 (face (custom-field-face field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 (from (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 (custom-text-insert (custom-tag custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 (custom-add-text-properties from (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 (list 'face face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 rear-nonsticky t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 (custom-documentation-insert custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 (custom-field-move field from (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 (defun custom-const-update (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 "Update face of FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 (let ((from (custom-field-start field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 (custom (custom-field-custom field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 (custom-put-text-property from (+ from (length (custom-tag custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 'face (custom-field-face field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 (defun custom-const-valid (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 "Non-nil if CUSTOM can validly have the value VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 (equal (custom-default custom) value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 (defun custom-const-face (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 "Face used for a FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 (custom-default (custom-field-custom field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 (defun custom-sexp-read (custom string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 "Read from CUSTOM an STRING."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 (save-match-data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 (set-buffer (get-buffer-create " *Custom Scratch*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 (insert string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 (prog1 (read (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 (or (looking-at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 (concat (regexp-quote (char-to-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 (custom-padding custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 "*\\'"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 (error "Junk at end of expression"))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 (autoload 'pp-to-string "pp")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 (defun custom-sexp-write (custom sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 "Write CUSTOM SEXP as string."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 (let ((string (prin1-to-string sexp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 (if (<= (length string) (custom-width custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 (setq string (pp-to-string sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 (string-match "[ \t\n]*\\'" string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 (concat "\n" (substring string 0 (match-beginning 0))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 (defun custom-string-read (custom string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 "Read string by ignoring trailing padding characters."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 (let ((last (length string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 (padding (custom-padding custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 (while (and (> last 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 (eq (aref string (1- last)) padding))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 (setq last (1- last)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 (substring string 0 last)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 (defun custom-string-write (custom string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 "Write raw string."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 (defun custom-button-insert (custom level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 "Insert field for CUSTOM at nesting LEVEL in customization buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 (custom-tag-insert (concat "[" (custom-tag custom) "]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 (custom-property custom 'query))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 (custom-documentation-insert custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 (defun custom-default-export (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 ;; Convert CUSTOM's VALUE to external representation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 ;; See `custom-import'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 (if (custom-eval custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 (eval (car (custom-quote custom value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 (defun custom-default-quote (custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 "Quote CUSTOM's VALUE if necessary."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 (list (if (and (not (custom-eval custom value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 (or (and (symbolp value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 (not (eq t value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 (and (listp value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 (not (memq (car value) '(quote function lambda))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 (list 'quote value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 (defun custom-default-initialize (custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 "Initialize `doc' and `default' entries in CUSTOM."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 (let ((name (custom-name custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 (if (null name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 (let ((default (custom-default custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 (doc (custom-documentation custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 (vdoc (documentation-property name 'variable-documentation t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 (if doc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 (or vdoc (put name 'variable-documentation doc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 (if vdoc (custom-property-set custom 'doc vdoc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 (if (eq default custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 (if (boundp name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 (custom-property-set custom 'default (symbol-value name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 (or (boundp name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 (set name default)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 (defun custom-default-insert (custom level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 "Insert field for CUSTOM at nesting LEVEL in customization buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 (let ((field (custom-field-create custom custom-nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 (tag (custom-tag custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 (if (null tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 (custom-tag-insert tag field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 (custom-text-insert ": "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 (custom-field-insert field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 (custom-documentation-insert custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 (defun custom-default-accept (field value &optional original)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 "Store a new value into field FIELD, taking it from VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 (if original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 (custom-field-original-set field value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 (custom-field-value-set field value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 (custom-field-update field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 (defun custom-default-apply (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 "Apply any changes in FIELD since the last apply."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 (let* ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 (name (custom-name custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 (if (null name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 (error "This field cannot be applied alone"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 (custom-external-set name (custom-name-value name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 (custom-field-reset field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 (defun custom-default-reset (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 "Reset content of editing FIELD to `original'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 (custom-field-accept field (custom-field-original field) t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 (defun custom-default-factory-reset (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 "Reset content of editing FIELD to `default'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 (let* ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 (default (car (custom-import custom (custom-default custom)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 (or (eq default custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 (custom-field-accept field default nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 (defun custom-default-query (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 "Prompt for a FIELD"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 (let* ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 (value (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 (initial (custom-write custom value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 (prompt (concat (custom-prompt custom) ": ")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 (custom-field-accept field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 (custom-read custom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 (if (custom-valid custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 (read-string prompt (cons initial 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 (read-string prompt))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 (defun custom-default-match (custom values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 "Match CUSTOM with VALUES."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 (defun custom-default-extract (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 "Extract CUSTOM's content in FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 (list (custom-field-value field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 (defun custom-default-validate (custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 "Validate FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 (let ((value (custom-field-value field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 (start (custom-field-start field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 (cond ((eq value custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 (cons start "Uninitialized field"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 ((and (consp value) (eq (car value) custom-invalid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 (cons start "Unparsable field content"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 ((custom-valid custom value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 (cons start "Wrong type of field content")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 (defun custom-default-face (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 "Face used for a FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 (let ((value (custom-field-value field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 (cond ((eq value custom-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 custom-field-uninitialized-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 ((not (custom-valid (custom-field-custom field) value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 custom-field-invalid-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 ((not (equal (custom-field-original field) value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 custom-field-modified-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 custom-field-face))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 (defun custom-default-update (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 "Update the content of FIELD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 (let ((inhibit-point-motion-hooks t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 (before-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 (after-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 (start (custom-field-start field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 (end (custom-field-end field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 (pos (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 ;; Keep track of how many modified fields we have.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 (cond ((equal (custom-field-value field) (custom-field-original field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 (setq custom-modified-list (delq field custom-modified-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 ((memq field custom-modified-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 (setq custom-modified-list (cons field custom-modified-list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 ;; Update the field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 (insert-before-markers " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 (delete-region start (1- end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 (custom-field-insert field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 (delete-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 (goto-char pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 (and (<= start pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 (<= pos end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 (custom-field-enter field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 ;;; Create Buffer:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 ;; Public functions to create a customization buffer and to insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 ;; various forms of text, fields, and buttons in it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 (defun customize ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 "Customize GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 Create a *Customize* buffer with editable customization information
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 about GNU Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 (custom-buffer-create "*Customize*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 (custom-reset-all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 (defun custom-buffer-create (name &optional custom types set get save)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 "Create a customization buffer named NAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 If the optional argument CUSTOM is non-nil, use that as the custom declaration.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 If the optional argument TYPES is non-nil, use that as the local types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 If the optional argument SET is non-nil, use that to set external data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 If the optional argument GET is non-nil, use that to get external data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 If the optional argument SAVE is non-nil, use that for saving changes."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 (switch-to-buffer name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 (buffer-disable-undo (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 (custom-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 (setq custom-local-type-properties types)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 (if (null custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 (make-local-variable 'custom-data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 (setq custom-data custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 (if (null set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 (make-local-variable 'custom-external-set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 (setq custom-external-set set))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 (if (null get)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 (make-local-variable 'custom-external)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 (setq custom-external get))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 (if (null save)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 (make-local-variable 'custom-save)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 (setq custom-save save))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 (let ((inhibit-point-motion-hooks t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 (before-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 (after-change-functions nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 (insert "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 (custom-text-insert "This is a customization buffer.\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 (custom-help-insert "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 (custom-help-button 'custom-forward-field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 (custom-help-button 'custom-backward-field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 (custom-help-button 'custom-enter-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 (custom-help-button 'custom-field-factory-reset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 (custom-help-button 'custom-field-reset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 (custom-help-button 'custom-field-apply)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 (custom-help-button 'custom-save-and-exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 (custom-help-button 'custom-toggle-documentation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 (custom-help-insert "\nClick mouse-2 on any button to activate it.\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 (custom-text-insert "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 (custom-insert custom-data 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 (goto-char (point-min))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 (defun custom-insert (custom level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 "Insert custom declaration CUSTOM in current buffer at level LEVEL."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 (if (stringp custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 (custom-text-insert custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 (and level (null (custom-property custom 'header))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 (setq level nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 (and level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 (> level 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 (custom-text-insert (concat "\n" (make-string level ?*) " ")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 (let ((field (funcall (custom-property custom 'insert) custom level)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 (custom-name-enter (custom-name custom) field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 (defun custom-text-insert (text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 "Insert TEXT in current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 (insert text))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 (defun custom-tag-insert (tag field &optional data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 "Insert TAG for FIELD in current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 (let ((from (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 (insert tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 (custom-category-set from (point) 'custom-button-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 (custom-put-text-property from (point) 'custom-tag field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 (if data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 (custom-add-text-properties from (point) (list 'custom-data data)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 (defun custom-documentation-insert (custom &rest ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 "Insert documentation from CUSTOM in current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 (let ((doc (custom-documentation custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 (if (null doc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 (custom-help-insert "\n" doc))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 (defun custom-help-insert (&rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 "Insert ARGS as documentation text."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 (let ((from (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 (apply 'insert args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 (custom-category-set from (point) 'custom-documentation-properties)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 (defun custom-help-button (command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 "Describe how to execute COMMAND."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 (let ((from (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 (insert "`" (key-description (where-is-internal command nil t)) "'")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 (custom-set-text-properties from (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 (list 'face custom-button-face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 mouse-face custom-mouse-face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 'custom-jump t ;Make TAB jump over it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 'custom-tag command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 'start-open t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 'end-open t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 (custom-category-set from (point) 'custom-documentation-properties))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 (custom-help-insert ": " (custom-first-line (documentation command)) "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 ;;; Mode:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 ;; The Customization major mode and interactive commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 (defvar custom-mode-map nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 "Keymap for Custom Mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 (if custom-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 (setq custom-mode-map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 (define-key custom-mode-map (if (string-match "XEmacs" emacs-version) [button2] [mouse-2]) 'custom-push-button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 (define-key custom-mode-map "\t" 'custom-forward-field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 (define-key custom-mode-map "\M-\t" 'custom-backward-field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 (define-key custom-mode-map "\r" 'custom-enter-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 (define-key custom-mode-map "\C-k" 'custom-kill-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 (define-key custom-mode-map "\C-c\C-r" 'custom-field-reset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 (define-key custom-mode-map "\C-c\M-\C-r" 'custom-reset-all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 (define-key custom-mode-map "\C-c\C-z" 'custom-field-factory-reset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 (define-key custom-mode-map "\C-c\M-\C-z" 'custom-factory-reset-all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 (define-key custom-mode-map "\C-c\C-a" 'custom-field-apply)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 (define-key custom-mode-map "\C-c\M-\C-a" 'custom-apply-all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 (define-key custom-mode-map "\C-c\C-c" 'custom-save-and-exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 (define-key custom-mode-map "\C-c\C-d" 'custom-toggle-documentation))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 ;; C-c keymap ideas: C-a field-beginning, C-e field-end, C-f
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 ;; forward-field, C-b backward-field, C-n next-field, C-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 ;; previous-field, ? describe-field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 (defun custom-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 "Major mode for doing customizations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 \\{custom-mode-map}"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 (setq major-mode 'custom-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 mode-name "Custom")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 (use-local-map custom-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 (make-local-variable 'before-change-functions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 (setq before-change-functions '(custom-before-change))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 (make-local-variable 'after-change-functions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 (setq after-change-functions '(custom-after-change))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 (if (not (fboundp 'make-local-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 ;; Emacs 19.28 and earlier.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 (add-hook 'post-command-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 (if (eq major-mode 'custom-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 (custom-post-command))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 ;; Emacs 19.29.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 (make-local-hook 'post-command-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 (add-hook 'post-command-hook 'custom-post-command nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 (defun custom-forward-field (arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 "Move point to the next field or button.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 With optional ARG, move across that many fields."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 (while (> arg 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 (let ((next (if (get-text-property (point) 'custom-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 (next-single-property-change (point) 'custom-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 (setq next (or (next-single-property-change next 'custom-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 (next-single-property-change (point-min) 'custom-tag)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 (if next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 (goto-char next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 (error "No customization fields in this buffer.")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 (or (get-text-property (point) 'custom-jump)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 (setq arg (1- arg))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 (while (< arg 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 (let ((previous (if (get-text-property (1- (point)) 'custom-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 (previous-single-property-change (point) 'custom-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 (setq previous
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 (or (previous-single-property-change previous 'custom-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 (previous-single-property-change (point-max) 'custom-tag)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 (if previous
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 (goto-char previous)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 (error "No customization fields in this buffer.")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 (or (get-text-property (1- (point)) 'custom-jump)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 (setq arg (1+ arg)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 (defun custom-backward-field (arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 "Move point to the previous field or button.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 With optional ARG, move across that many fields."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 (custom-forward-field (- arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 (defun custom-toggle-documentation (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 "Toggle display of documentation text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 If the optional argument is non-nil, show text iff the argument is positive."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 (let ((hide (or (and (null arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 (null (custom-category-get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 'custom-documentation-properties 'invisible)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 (<= (prefix-numeric-value arg) 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 (custom-category-put 'custom-documentation-properties 'invisible hide)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 (custom-category-put 'custom-documentation-properties intangible hide))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 (redraw-display))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 (defun custom-enter-value (field data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 "Enter value for current customization field or push button."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 (interactive (list (get-text-property (point) 'custom-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 (get-text-property (point) 'custom-data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 (cond (data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 (funcall field data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 ((eq field 'custom-enter-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 (error "Don't be silly"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 ((and (symbolp field) (fboundp field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 (call-interactively field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 (field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 (custom-field-query field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 (message "Nothing to enter here"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 (defun custom-kill-line ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 "Kill to end of field or end of line, whichever is first."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 (let ((field (get-text-property (point) 'custom-field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 (newline (save-excursion (search-forward "\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 (next (next-single-property-change (point) 'custom-field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 (if (and field (> newline next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 (kill-region (point) next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 (call-interactively 'kill-line))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 (defun custom-push-button (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 "Activate button below mouse pointer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 (interactive "@e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 (let* ((pos (event-point event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 (field (get-text-property pos 'custom-field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 (tag (get-text-property pos 'custom-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 (data (get-text-property pos 'custom-data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 (cond (data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 (funcall tag data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 ((and (symbolp tag) (fboundp tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 (call-interactively tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 (field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 (call-interactively (lookup-key global-map (this-command-keys))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 (tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 (custom-enter-value tag data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 (error "Nothing to click on here.")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 (defun custom-reset-all ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 "Undo any changes since the last apply in all fields."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 (interactive (and custom-modified-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 (not (y-or-n-p "Discard all changes? "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 (error "Reset aborted")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 (let ((all custom-name-fields)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 current field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 (while all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 (setq current (car all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 field (cdr current)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 all (cdr all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 (custom-field-reset field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 (defun custom-field-reset (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 "Undo any changes in FIELD since the last apply."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 (interactive (list (or (get-text-property (point) 'custom-field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 (get-text-property (point) 'custom-tag))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 (if (arrayp field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 (let* ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 (name (custom-name custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 (if name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 (custom-field-original-set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 field (car (custom-import custom (custom-external name)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 (if (not (custom-valid custom (custom-field-original field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 (error "This field cannot be reset alone")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 (funcall (custom-property custom 'reset) field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 (funcall (custom-property custom 'synchronize) field))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 (defun custom-factory-reset-all ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 "Reset all field to their default values."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 (interactive (and custom-modified-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 (not (y-or-n-p "Discard all changes? "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 (error "Reset aborted")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 (let ((all custom-name-fields)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 (while all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 (setq field (cdr (car all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 all (cdr all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 (custom-field-factory-reset field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 (defun custom-field-factory-reset (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 "Reset FIELD to its default value."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 (interactive (list (or (get-text-property (point) 'custom-field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 (get-text-property (point) 'custom-tag))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 (if (arrayp field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 (funcall (custom-property (custom-field-custom field) 'factory-reset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 (defun custom-apply-all ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 "Apply any changes since the last reset in all fields."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 (interactive (if custom-modified-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 (error "No changes to apply.")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 (custom-field-parse custom-field-last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 (let ((all custom-name-fields)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 (while all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 (setq field (cdr (car all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 all (cdr all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 (let ((error (custom-field-validate (custom-field-custom field) field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 (if (null error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 (goto-char (car error))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 (error (cdr error))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 (let ((all custom-name-fields)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 (while all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 (setq field (cdr (car all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 all (cdr all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 (custom-field-apply field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 (defun custom-field-apply (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 "Apply any changes in FIELD since the last apply."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 (interactive (list (or (get-text-property (point) 'custom-field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 (get-text-property (point) 'custom-tag))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 (custom-field-parse custom-field-last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 (if (arrayp field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 (let* ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 (error (custom-field-validate custom field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 (if error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 (error (cdr error)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 (funcall (custom-property custom 'apply) field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 (defun custom-toggle-hide (&rest ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 "Hide or show entry."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 (error "This button is not yet implemented"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 (defun custom-save-and-exit ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 "Save and exit customization buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 (interactive "@")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 (funcall custom-save))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 (kill-buffer (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 (defun custom-save ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 "Save customization information."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 (custom-apply-all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 (let ((new custom-name-fields))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 (set-buffer (find-file-noselect custom-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 (let ((old (condition-case nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 (read (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 (end-of-file (append '(setq custom-dummy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 'custom-dummy) ())))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 (or (eq (car old) 'setq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 (error "Invalid customization file: %s" custom-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 (while new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 (let* ((field (cdr (car new)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 (custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 (value (custom-field-original field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 (default (car (custom-import custom (custom-default custom))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 (name (car (car new))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 (setq new (cdr new))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 (custom-assert '(eq name (custom-name custom)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 (if (equal default value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 (setcdr old (custom-plist-delq name (cdr old)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 (setcdr old (plist-put (cdr old) name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 (car (custom-quote custom value)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 (insert ";; " custom-file "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 --- Automatically generated customization information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 ;; Feel free to edit by hand, but the entire content should consist of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 ;; a single setq. Any other lisp expressions will confuse the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 ;; automatic configuration engine.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 \(setq ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 (setq old (cdr old))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 (while old
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 (prin1 (car old) (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 (setq old (cdr old))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 (insert " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 (pp (car old) (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 (setq old (cdr old))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 (if old (insert "\n ")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 (insert ")\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 (save-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 (kill-buffer (current-buffer))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 (defun custom-load ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 "Save customization information."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 (interactive (and custom-modified-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 (not (equal (list (custom-name-field 'custom-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 custom-modified-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 (not (y-or-n-p "Discard all changes? "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 (error "Load aborted")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 (load-file (custom-name-value 'custom-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 (custom-reset-all))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 ;;; Field Editing:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 ;; Various internal functions for implementing the direct editing of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 ;; fields in the customization buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 (defun custom-field-untouch (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 ;; Remove FIELD and its children from `custom-modified-list'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 (setq custom-modified-list (delq field custom-modified-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 (if (arrayp field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 (let ((value (custom-field-value field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 (cond ((null (custom-data (custom-field-custom field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 ((arrayp value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 (custom-field-untouch value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 ((listp value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 (mapcar 'custom-field-untouch value))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 (defun custom-field-insert (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 ;; Insert editing FIELD in current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 (let ((from (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 (custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 (value (custom-field-value field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 (insert (custom-write custom value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 (insert-char (custom-padding custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 (- (custom-width custom) (- (point) from)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 (custom-field-move field from (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 (custom-set-text-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 from (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 (list 'custom-field field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 'custom-tag field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 'face (custom-field-face field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 'start-open t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 'end-open t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 (defun custom-field-read (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 ;; Read the screen content of FIELD.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 (custom-read (custom-field-custom field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 (custom-buffer-substring-no-properties (custom-field-start field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 (custom-field-end field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 ;; Fields are shown in a special `active' face when point is inside
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 ;; it. You activate the field by moving point inside (entering) it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 ;; and deactivate the field by moving point outside (leaving) it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 (defun custom-field-leave (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 ;; Deactivate FIELD.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 (let ((before-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 (after-change-functions nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 (custom-put-text-property (custom-field-start field) (custom-field-end field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 'face (custom-field-face field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 (defun custom-field-enter (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 ;; Activate FIELD.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 (let* ((start (custom-field-start field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 (end (custom-field-end field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 (custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 (padding (custom-padding custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 (before-change-functions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 (after-change-functions nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 (or (eq this-command 'self-insert-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 (let ((pos end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 (while (and (< start pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 (eq (char-after (1- pos)) padding))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 (setq pos (1- pos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 (if (< pos (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 (goto-char pos))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 (custom-put-text-property start end 'face custom-field-active-face)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 (defun custom-field-resize (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 ;; Resize FIELD after change.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 (let* ((custom (custom-field-custom field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 (begin (custom-field-start field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 (end (custom-field-end field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 (pos (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 (padding (custom-padding custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 (width (custom-width custom))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 (size (- end begin)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 (cond ((< size width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 (if (fboundp 'insert-before-markers-and-inherit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 ;; Emacs 19.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 (insert-before-markers-and-inherit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 (make-string (- width size) padding))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 ;; XEmacs: BUG: Doesn't work!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 (insert-before-markers (make-string (- width size) padding)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 (goto-char pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 ((> size width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 (let ((start (if (and (< (+ begin width) pos) (<= pos end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 pos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 (+ begin width))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 (while (and (< start (point)) (= (preceding-char) padding))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 (backward-delete-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 (goto-char pos))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 (defvar custom-field-changed nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 ;; List of fields changed on the screen but whose VALUE attribute has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 ;; not yet been updated to reflect the new screen content.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 (make-variable-buffer-local 'custom-field-changed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 (defun custom-field-parse (field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 ;; Parse FIELD content iff changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 (if (memq field custom-field-changed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 (setq custom-field-changed (delq field custom-field-changed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 (custom-field-value-set field (custom-field-read field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 (custom-field-update field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 (defun custom-post-command ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 ;; Keep track of their active field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 (custom-assert '(eq major-mode 'custom-mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 (let ((field (custom-field-property (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 (if (eq field custom-field-last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 (if (memq field custom-field-changed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 (custom-field-resize field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 (custom-field-parse custom-field-last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 (if custom-field-last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 (custom-field-leave custom-field-last))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 (if field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 (custom-field-enter field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 (setq custom-field-last field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 (set-buffer-modified-p (or custom-modified-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 custom-field-changed))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 (defvar custom-field-was nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 ;; The custom data before the change.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 (make-variable-buffer-local 'custom-field-was)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 (defun custom-before-change (begin end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 ;; Check that we the modification is allowed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 (if (not (eq major-mode 'custom-mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 (message "Aargh! Why is custom-before-change called here?")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 (let ((from (custom-field-property begin))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 (to (custom-field-property end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 (cond ((or (null from) (null to))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 (error "You can only modify the fields"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 ((not (eq from to))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 (error "Changes must be limited to a single field."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 (setq custom-field-was from))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 (defun custom-after-change (begin end length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 ;; Keep track of field content.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 (if (not (eq major-mode 'custom-mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 (message "Aargh! Why is custom-after-change called here?")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 (let ((field custom-field-was))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 (custom-assert '(prog1 field (setq custom-field-was nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 ;; Prevent mixing fields properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 (custom-put-text-property begin end 'custom-field field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 ;; Update the field after modification.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 (if (eq (custom-field-property begin) field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 (let ((field-end (custom-field-end field)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 (if (> end field-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 (set-marker field-end end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 (add-to-list 'custom-field-changed field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 ;; We deleted the entire field, reinsert it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 (custom-assert '(eq begin end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 (goto-char begin)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 (custom-field-value-set field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 (custom-read (custom-field-custom field) ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 (custom-field-insert field))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 (defun custom-field-property (pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 ;; The `custom-field' text property valid for POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 (or (get-text-property pos 'custom-field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 (and (not (eq pos (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 (get-text-property (1- pos) 'custom-field))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 ;;; Generic Utilities:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 ;; Some utility functions that are not really specific to custom.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 (defun custom-assert (expr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 "Assert that EXPR evaluates to non-nil at this point"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 (or (eval expr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 (error "Assertion failed: %S" expr)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 (defun custom-first-line (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 "Return the part of STRING before the first newline."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 (let ((pos 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 (len (length string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 (while (and (< pos len) (not (eq (aref string pos) ?\n)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 (setq pos (1+ pos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 (if (eq pos len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 (substring string 0 pos))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 (defun custom-insert-before (list old new)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 "In LIST insert before OLD a NEW element."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 (cond ((null list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 (list new))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 ((null old)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 (nconc list (list new)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 ((eq old (car list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 (cons new list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 (let ((list list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 (while (not (eq old (car (cdr list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 (setq list (cdr list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 (custom-assert '(cdr list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 (setcdr list (cons new (cdr list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 (defun custom-strip-padding (string padding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 "Remove padding from STRING."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 (let ((regexp (concat (regexp-quote (char-to-string padding)) "+")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 (while (string-match regexp string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 (setq string (concat (substring string 0 (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 (substring string (match-end 0))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 (defun custom-plist-memq (prop plist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 "Return non-nil if PROP is a property of PLIST. Comparison done with EQ."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 (let (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 (while plist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 (if (eq (car plist) prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 (setq result plist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 plist nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 (setq plist (cdr (cdr plist)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 (defun custom-plist-delq (prop plist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 "Delete property PROP from property list PLIST."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 (while (eq (car plist) prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 (setq plist (cdr (cdr plist))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 (let ((list plist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 (next (cdr (cdr plist))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 (while next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 (if (eq (car next) prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 (setq next (cdr (cdr next)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 (setcdr (cdr list) next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 (setq list next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 next (cdr (cdr next))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 plist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 ;;; Meta Customization:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 (custom-declare '()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 '((tag . "Meta Customization")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 (doc . "Customization of the customization support.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 (type . group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 (data ((type . face-doc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 ((tag . "Button Face")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 (default . bold)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 (doc . "Face used for tags in customization buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 (name . custom-button-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 (synchronize . (lambda (f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 (custom-category-put 'custom-button-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 'face custom-button-face)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 (type . face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 ((tag . "Mouse Face")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 (default . highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 (doc . "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 Face used when mouse is above a button in customization buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 (name . custom-mouse-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 (synchronize . (lambda (f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 (custom-category-put 'custom-button-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 mouse-face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 custom-mouse-face)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 (type . face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 ((tag . "Field Face")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 (default . italic)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 (doc . "Face used for customization fields.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 (name . custom-field-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 (type . face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 ((tag . "Uninitialized Face")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 (default . modeline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 (doc . "Face used for uninitialized customization fields.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 (name . custom-field-uninitialized-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 (type . face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 ((tag . "Invalid Face")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 (default . highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 (doc . "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 Face used for customization fields containing invalid data.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 (name . custom-field-invalid-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 (type . face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 ((tag . "Modified Face")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 (default . bold-italic)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 (doc . "Face used for modified customization fields.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 (name . custom-field-modified-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 (type . face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 ((tag . "Active Face")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 (default . underline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 (doc . "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 Face used for customization fields while they are being edited.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 (name . custom-field-active-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 (type . face)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 ;; custom.el uses two categories.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 (custom-category-create 'custom-documentation-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 (custom-category-put 'custom-documentation-properties rear-nonsticky t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 (custom-category-create 'custom-button-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 (custom-category-put 'custom-button-properties 'face custom-button-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 (custom-category-put 'custom-button-properties mouse-face custom-mouse-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 (custom-category-put 'custom-button-properties rear-nonsticky t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 (custom-category-create 'custom-hidden-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 (custom-category-put 'custom-hidden-properties 'invisible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 (not (string-match "XEmacs" emacs-version)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 (custom-category-put 'custom-hidden-properties intangible t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 (if (file-readable-p custom-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 (load-file custom-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 (provide 'custom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 ;;; custom.el ends here