]> code.delx.au - gnu-emacs/blob - lisp/facemenu.el
Merge from trunk
[gnu-emacs] / lisp / facemenu.el
1 ;;; facemenu.el --- create a face menu for interactively adding fonts to text
2
3 ;; Copyright (C) 1994-1996, 2001-2011 Free Software Foundation, Inc.
4
5 ;; Author: Boris Goldowsky <boris@gnu.org>
6 ;; Keywords: faces
7 ;; Package: emacs
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; This file defines a menu of faces (bold, italic, etc) which allows you to
27 ;; set the face used for a region of the buffer. Some faces also have
28 ;; keybindings, which are shown in the menu.
29 ;;
30 ;; The menu also contains submenus for indentation and justification-changing
31 ;; commands.
32
33 ;;; Usage:
34 ;; Selecting a face from the menu or typing the keyboard equivalent will
35 ;; change the region to use that face. If you use transient-mark-mode and the
36 ;; region is not active, the face will be remembered and used for the next
37 ;; insertion. It will be forgotten if you move point or make other
38 ;; modifications before inserting or typing anything.
39 ;;
40 ;; Faces can be selected from the keyboard as well.
41 ;; The standard keybindings are M-o (or ESC o) + letter:
42 ;; M-o i = "set italic", M-o b = "set bold", etc.
43
44 ;;; Customization:
45 ;; An alternative set of keybindings that may be easier to type can be set up
46 ;; using "Alt" or "Hyper" keys. This requires that you either have or create
47 ;; an Alt or Hyper key on your keyboard. On my keyboard, there is a key
48 ;; labeled "Alt", but to make it act as an Alt key I have to put this command
49 ;; into my .xinitrc:
50 ;; xmodmap -e "add Mod3 = Alt_L"
51 ;; Or, I can make it into a Hyper key with this:
52 ;; xmodmap -e "keysym Alt_L = Hyper_L" -e "add Mod2 = Hyper_L"
53 ;; Check with local X-perts for how to do it on your system.
54 ;; Then you can define your keybindings with code like this in your .emacs:
55 ;; (setq facemenu-keybindings
56 ;; '((default . [?\H-d])
57 ;; (bold . [?\H-b])
58 ;; (italic . [?\H-i])
59 ;; (bold-italic . [?\H-l])
60 ;; (underline . [?\H-u])))
61 ;; (facemenu-update)
62 ;; (setq facemenu-keymap global-map)
63 ;; (define-key global-map [?\H-c] 'facemenu-set-foreground) ; set fg color
64 ;; (define-key global-map [?\H-C] 'facemenu-set-background) ; set bg color
65 ;;
66 ;; The order of the faces that appear in the menu and their keybindings can be
67 ;; controlled by setting the variables `facemenu-keybindings' and
68 ;; `facemenu-new-faces-at-end'. List faces that you want to use in documents
69 ;; in `facemenu-listed-faces'.
70
71 ;;; Known Problems:
72 ;; Bold and Italic do not combine to create bold-italic if you select them
73 ;; both, although most other combinations (eg bold + underline + some color)
74 ;; do the intuitive thing.
75 ;;
76 ;; There is at present no way to display what the faces look like in
77 ;; the menu itself.
78 ;;
79 ;; `list-faces-display' shows the faces in a different order than
80 ;; this menu, which could be confusing. I do /not/ sort the list
81 ;; alphabetically, because I like the default order: it puts the most
82 ;; basic, common fonts first.
83 ;;
84 ;; Please send me any other problems, comments or ideas.
85
86 ;;; Code:
87
88 (eval-when-compile
89 (require 'help)
90 (require 'button))
91
92 ;; Global bindings:
93 (define-key global-map [C-down-mouse-2] 'facemenu-menu)
94 (define-key global-map "\M-o" 'facemenu-keymap)
95
96 (defgroup facemenu nil
97 "Create a face menu for interactively adding fonts to text."
98 :group 'faces
99 :prefix "facemenu-")
100
101 (defcustom facemenu-keybindings
102 (mapcar 'purecopy
103 '((default . "d")
104 (bold . "b")
105 (italic . "i")
106 (bold-italic . "l") ; {bold} intersect {italic} = {l}
107 (underline . "u")))
108 "Alist of interesting faces and keybindings.
109 Each element is itself a list: the car is the name of the face,
110 the next element is the key to use as a keyboard equivalent of the menu item;
111 the binding is made in `facemenu-keymap'.
112
113 The faces specifically mentioned in this list are put at the top of
114 the menu, in the order specified. All other faces which are defined
115 in `facemenu-listed-faces' are listed after them, but get no
116 keyboard equivalents.
117
118 If you change this variable after loading facemenu.el, you will need to call
119 `facemenu-update' to make it take effect."
120 :type '(repeat (cons face string))
121 :group 'facemenu)
122
123 (defcustom facemenu-new-faces-at-end t
124 "Where in the menu to insert newly-created faces.
125 This should be nil to put them at the top of the menu, or t to put them
126 just before \"Other\" at the end."
127 :type 'boolean
128 :group 'facemenu)
129
130 (defvar facemenu-unlisted-faces
131 `(modeline region secondary-selection highlight scratch-face
132 ,(purecopy "^font-lock-") ,(purecopy "^gnus-") ,(purecopy "^message-")
133 ,(purecopy "^ediff-") ,(purecopy "^term-") ,(purecopy "^vc-")
134 ,(purecopy "^widget-") ,(purecopy "^custom-") ,(purecopy "^vm-"))
135 "*List of faces that are of no interest to the user.")
136 (make-obsolete-variable 'facemenu-unlisted-faces 'facemenu-listed-faces
137 "22.1,\n and has no effect on the Face menu")
138
139 (defcustom facemenu-listed-faces nil
140 "List of faces to include in the Face menu.
141 Each element should be a symbol, the name of a face.
142 The \"basic \" faces in `facemenu-keybindings' are automatically
143 added to the Face menu, and need not be in this list.
144
145 This value takes effect when you load facemenu.el. If the
146 list includes symbols which are not defined as faces, they
147 are ignored; however, subsequently defining or creating
148 those faces adds them to the menu then. You can call
149 `facemenu-update' to recalculate the menu contents, such as
150 if you change the value of this variable,
151
152 If this variable is t, all faces that you apply to text
153 using the face menu commands (even by name), and all faces
154 that you define or create, are added to the menu. You may
155 find it useful to set this variable to t temporarily while
156 you define some faces, so that they will be added. However,
157 if the value is no longer t and you call `facemenu-update',
158 it will remove any faces not explicitly in the list."
159 :type '(choice (const :tag "List all faces" t)
160 (const :tag "None" nil)
161 (repeat symbol))
162 :group 'facemenu
163 :version "22.1")
164
165 (defvar facemenu-face-menu
166 (let ((map (make-sparse-keymap "Face")))
167 (define-key map "o" (cons (purecopy "Other...") 'facemenu-set-face))
168 map)
169 "Menu keymap for faces.")
170 (defalias 'facemenu-face-menu facemenu-face-menu)
171 (put 'facemenu-face-menu 'menu-enable '(facemenu-enable-faces-p))
172
173 (defvar facemenu-foreground-menu
174 (let ((map (make-sparse-keymap "Foreground Color")))
175 (define-key map "o" (cons (purecopy "Other...") 'facemenu-set-foreground))
176 map)
177 "Menu keymap for foreground colors.")
178 (defalias 'facemenu-foreground-menu facemenu-foreground-menu)
179 (put 'facemenu-foreground-menu 'menu-enable '(facemenu-enable-faces-p))
180
181 (defvar facemenu-background-menu
182 (let ((map (make-sparse-keymap "Background Color")))
183 (define-key map "o" (cons (purecopy "Other...") 'facemenu-set-background))
184 map)
185 "Menu keymap for background colors.")
186 (defalias 'facemenu-background-menu facemenu-background-menu)
187 (put 'facemenu-background-menu 'menu-enable '(facemenu-enable-faces-p))
188
189 ;;; Condition for enabling menu items that set faces.
190 (defun facemenu-enable-faces-p ()
191 ;; Enable the facemenu if facemenu-add-face-function is defined
192 ;; (e.g. in Tex-mode and SGML mode), or if font-lock is off.
193 (or (not (and font-lock-mode font-lock-defaults))
194 facemenu-add-face-function))
195
196 (defvar facemenu-special-menu
197 (let ((map (make-sparse-keymap "Special")))
198 (define-key map [?s] (cons (purecopy "Remove Special")
199 'facemenu-remove-special))
200 (define-key map [?t] (cons (purecopy "Intangible")
201 'facemenu-set-intangible))
202 (define-key map [?v] (cons (purecopy "Invisible")
203 'facemenu-set-invisible))
204 (define-key map [?r] (cons (purecopy "Read-Only")
205 'facemenu-set-read-only))
206 map)
207 "Menu keymap for non-face text-properties.")
208 (defalias 'facemenu-special-menu facemenu-special-menu)
209
210 (defvar facemenu-justification-menu
211 (let ((map (make-sparse-keymap "Justification")))
212 (define-key map [?c] (cons (purecopy "Center") 'set-justification-center))
213 (define-key map [?b] (cons (purecopy "Full") 'set-justification-full))
214 (define-key map [?r] (cons (purecopy "Right") 'set-justification-right))
215 (define-key map [?l] (cons (purecopy "Left") 'set-justification-left))
216 (define-key map [?u] (cons (purecopy "Unfilled") 'set-justification-none))
217 map)
218 "Submenu for text justification commands.")
219 (defalias 'facemenu-justification-menu facemenu-justification-menu)
220
221 (defvar facemenu-indentation-menu
222 (let ((map (make-sparse-keymap "Indentation")))
223 (define-key map [decrease-right-margin]
224 (cons (purecopy "Indent Right Less") 'decrease-right-margin))
225 (define-key map [increase-right-margin]
226 (cons (purecopy "Indent Right More") 'increase-right-margin))
227 (define-key map [decrease-left-margin]
228 (cons (purecopy "Indent Less") 'decrease-left-margin))
229 (define-key map [increase-left-margin]
230 (cons (purecopy "Indent More") 'increase-left-margin))
231 map)
232 "Submenu for indentation commands.")
233 (defalias 'facemenu-indentation-menu facemenu-indentation-menu)
234
235 ;; This is split up to avoid an overlong line in loaddefs.el.
236 (defvar facemenu-menu nil
237 "Facemenu top-level menu keymap.")
238 (setq facemenu-menu (make-sparse-keymap "Text Properties"))
239 (let ((map facemenu-menu))
240 (define-key map [dc] (cons (purecopy "Display Colors") 'list-colors-display))
241 (define-key map [df] (cons (purecopy "Display Faces") 'list-faces-display))
242 (define-key map [dp] (cons (purecopy "Describe Properties")
243 'describe-text-properties))
244 (define-key map [ra] (cons (purecopy "Remove Text Properties")
245 'facemenu-remove-all))
246 (define-key map [rm] (cons (purecopy "Remove Face Properties")
247 'facemenu-remove-face-props))
248 (define-key map [s1] (list (purecopy "--"))))
249 (let ((map facemenu-menu))
250 (define-key map [in] (cons (purecopy "Indentation")
251 'facemenu-indentation-menu))
252 (define-key map [ju] (cons (purecopy "Justification")
253 'facemenu-justification-menu))
254 (define-key map [s2] (list (purecopy "--")))
255 (define-key map [sp] (cons (purecopy "Special Properties")
256 'facemenu-special-menu))
257 (define-key map [bg] (cons (purecopy "Background Color")
258 'facemenu-background-menu))
259 (define-key map [fg] (cons (purecopy "Foreground Color")
260 'facemenu-foreground-menu))
261 (define-key map [fc] (cons (purecopy "Face")
262 'facemenu-face-menu)))
263 (defalias 'facemenu-menu facemenu-menu)
264
265 (defvar facemenu-keymap
266 (let ((map (make-sparse-keymap "Set face")))
267 (define-key map "o" (cons (purecopy "Other...") 'facemenu-set-face))
268 (define-key map "\M-o" 'font-lock-fontify-block)
269 map)
270 "Keymap for face-changing commands.
271 `Facemenu-update' fills in the keymap according to the bindings
272 requested in `facemenu-keybindings'.")
273 (defalias 'facemenu-keymap facemenu-keymap)
274
275
276 (defcustom facemenu-add-face-function nil
277 "Function called at beginning of text to change or nil.
278 This function is passed the FACE to set and END of text to change, and must
279 return a string which is inserted. It may set `facemenu-end-add-face'."
280 :type '(choice (const :tag "None" nil)
281 function)
282 :group 'facemenu)
283
284 (defcustom facemenu-end-add-face nil
285 "String to insert or function called at end of text to change or nil.
286 This function is passed the FACE to set, and must return a string which is
287 inserted."
288 :type '(choice (const :tag "None" nil)
289 string
290 function)
291 :group 'facemenu)
292
293 (defcustom facemenu-remove-face-function nil
294 "When non-nil, this is a function called to remove faces.
295 This function is passed the START and END of text to change.
296 May also be t meaning to use `facemenu-add-face-function'."
297 :type '(choice (const :tag "None" nil)
298 (const :tag "Use add-face" t)
299 function)
300 :group 'facemenu)
301
302 ;;; Internal Variables
303
304 (defvar facemenu-color-alist nil
305 "Alist of colors, used for completion.
306 If this is nil, then the value of (defined-colors) is used.")
307
308 (defun facemenu-update ()
309 "Add or update the \"Face\" menu in the menu bar.
310 You can call this to update things if you change any of the menu configuration
311 variables."
312 (interactive)
313
314 ;; Add each defined face to the menu.
315 (facemenu-iterate 'facemenu-add-new-face
316 (facemenu-complete-face-list facemenu-keybindings)))
317
318 (defun facemenu-set-face (face &optional start end)
319 "Apply FACE to the region or next character typed.
320
321 If the region is active (normally true except in Transient
322 Mark mode) and nonempty, and there is no prefix argument,
323 this command applies FACE to the region. Otherwise, it applies FACE
324 to the faces to use for the next character
325 inserted. (Moving point or switching buffers before typing
326 a character to insert cancels the specification.)
327
328 If FACE is `default', to \"apply\" it means clearing
329 the list of faces to be used. For any other value of FACE,
330 to \"apply\" it means putting FACE at the front of the list
331 of faces to be used, and removing any faces further
332 along in the list that would be completely overridden by
333 preceding faces (including FACE).
334
335 This command can also add FACE to the menu of faces,
336 if `facemenu-listed-faces' says to do that."
337 (interactive (list (progn
338 (barf-if-buffer-read-only)
339 (read-face-name "Use face"))
340 (if (and mark-active (not current-prefix-arg))
341 (region-beginning))
342 (if (and mark-active (not current-prefix-arg))
343 (region-end))))
344 (facemenu-add-new-face face)
345 (facemenu-add-face face start end))
346
347 (defun facemenu-set-foreground (color &optional start end)
348 "Set the foreground COLOR of the region or next character typed.
349 This command reads the color in the minibuffer.
350
351 If the region is active (normally true except in Transient Mark mode)
352 and there is no prefix argument, this command sets the region to the
353 requested face.
354
355 Otherwise, this command specifies the face for the next character
356 inserted. Moving point or switching buffers before
357 typing a character to insert cancels the specification."
358 (interactive (list (progn
359 (barf-if-buffer-read-only)
360 (read-color "Foreground color: "))
361 (if (and mark-active (not current-prefix-arg))
362 (region-beginning))
363 (if (and mark-active (not current-prefix-arg))
364 (region-end))))
365 (facemenu-set-face-from-menu
366 (facemenu-add-new-color color 'facemenu-foreground-menu)
367 start end))
368
369 (defun facemenu-set-background (color &optional start end)
370 "Set the background COLOR of the region or next character typed.
371 This command reads the color in the minibuffer.
372
373 If the region is active (normally true except in Transient Mark mode)
374 and there is no prefix argument, this command sets the region to the
375 requested face.
376
377 Otherwise, this command specifies the face for the next character
378 inserted. Moving point or switching buffers before
379 typing a character to insert cancels the specification."
380 (interactive (list (progn
381 (barf-if-buffer-read-only)
382 (read-color "Background color: "))
383 (if (and mark-active (not current-prefix-arg))
384 (region-beginning))
385 (if (and mark-active (not current-prefix-arg))
386 (region-end))))
387 (facemenu-set-face-from-menu
388 (facemenu-add-new-color color 'facemenu-background-menu)
389 start end))
390
391 (defun facemenu-set-face-from-menu (face start end)
392 "Set the FACE of the region or next character typed.
393 This function is designed to be called from a menu; FACE is determined
394 using the event type of the menu entry. If FACE is a symbol whose
395 name starts with \"fg:\" or \"bg:\", then this functions sets the
396 foreground or background to the color specified by the rest of the
397 symbol's name. Any other symbol is considered the name of a face.
398
399 If the region is active (normally true except in Transient Mark mode)
400 and there is no prefix argument, this command sets the region to the
401 requested face.
402
403 Otherwise, this command specifies the face for the next character
404 inserted. Moving point or switching buffers before typing a character
405 to insert cancels the specification."
406 (interactive (list last-command-event
407 (if (and mark-active (not current-prefix-arg))
408 (region-beginning))
409 (if (and mark-active (not current-prefix-arg))
410 (region-end))))
411 (barf-if-buffer-read-only)
412 (facemenu-add-face
413 (let ((fn (symbol-name face)))
414 (if (string-match "\\`\\([fb]\\)g:\\(.+\\)" fn)
415 (list (list (if (string= (match-string 1 fn) "f")
416 :foreground
417 :background)
418 (match-string 2 fn)))
419 face))
420 start end))
421
422 (defun facemenu-set-invisible (start end)
423 "Make the region invisible.
424 This sets the `invisible' text property; it can be undone with
425 `facemenu-remove-special'."
426 (interactive "r")
427 (add-text-properties start end '(invisible t)))
428
429 (defun facemenu-set-intangible (start end)
430 "Make the region intangible: disallow moving into it.
431 This sets the `intangible' text property; it can be undone with
432 `facemenu-remove-special'."
433 (interactive "r")
434 (add-text-properties start end '(intangible t)))
435
436 (defun facemenu-set-read-only (start end)
437 "Make the region unmodifiable.
438 This sets the `read-only' text property; it can be undone with
439 `facemenu-remove-special'."
440 (interactive "r")
441 (add-text-properties start end '(read-only t)))
442
443 (defun facemenu-remove-face-props (start end)
444 "Remove `face' and `mouse-face' text properties."
445 (interactive "*r") ; error if buffer is read-only despite the next line.
446 (let ((inhibit-read-only t))
447 (remove-text-properties
448 start end '(face nil mouse-face nil))))
449
450 (defun facemenu-remove-all (start end)
451 "Remove all text properties from the region."
452 (interactive "*r") ; error if buffer is read-only despite the next line.
453 (let ((inhibit-read-only t))
454 (set-text-properties start end nil)))
455
456 (defun facemenu-remove-special (start end)
457 "Remove all the \"special\" text properties from the region.
458 These special properties include `invisible', `intangible' and `read-only'."
459 (interactive "*r") ; error if buffer is read-only despite the next line.
460 (let ((inhibit-read-only t))
461 (remove-text-properties
462 start end '(invisible nil intangible nil read-only nil))))
463 \f
464 (defalias 'facemenu-read-color 'read-color)
465
466 (defun color-rgb-to-hsv (r g b)
467 "For R, G, B color components return a list of hue, saturation, value.
468 R, G, B input values should be in [0..65535] range.
469 Output values for hue are integers in [0..360] range.
470 Output values for saturation and value are integers in [0..100] range."
471 (let* ((r (/ r 65535.0))
472 (g (/ g 65535.0))
473 (b (/ b 65535.0))
474 (max (max r g b))
475 (min (min r g b))
476 (h (cond ((= max min) 0)
477 ((= max r) (mod (+ (* 60 (/ (- g b) (- max min))) 360) 360))
478 ((= max g) (+ (* 60 (/ (- b r) (- max min))) 120))
479 ((= max b) (+ (* 60 (/ (- r g) (- max min))) 240))))
480 (s (cond ((= max 0) 0)
481 (t (- 1 (/ min max)))))
482 (v max))
483 (list (round h) (round s 0.01) (round v 0.01))))
484
485 (defcustom list-colors-sort nil
486 "Color sort order for `list-colors-display'.
487 `nil' means default implementation-dependent order (defined in `x-colors').
488 `name' sorts by color name.
489 `rgb' sorts by red, green, blue components.
490 `(rgb-dist . COLOR)' sorts by the RGB distance to the specified color.
491 `hsv' sorts by hue, saturation, value.
492 `(hsv-dist . COLOR)' sorts by the HSV distance to the specified color
493 and excludes grayscale colors."
494 :type '(choice (const :tag "Unsorted" nil)
495 (const :tag "Color Name" name)
496 (const :tag "Red-Green-Blue" rgb)
497 (cons :tag "Distance on RGB cube"
498 (const :tag "Distance from Color" rgb-dist)
499 (color :tag "Source Color Name"))
500 (const :tag "Hue-Saturation-Value" hsv)
501 (cons :tag "Distance on HSV cylinder"
502 (const :tag "Distance from Color" hsv-dist)
503 (color :tag "Source Color Name")))
504 :group 'facemenu
505 :version "24.1")
506
507 (defun list-colors-sort-key (color)
508 "Return a list of keys for sorting colors depending on `list-colors-sort'.
509 COLOR is the name of the color. When return value is nil,
510 filter out the color from the output."
511 (cond
512 ((null list-colors-sort) color)
513 ((eq list-colors-sort 'name)
514 (downcase color))
515 ((eq list-colors-sort 'rgb)
516 (color-values color))
517 ((eq (car-safe list-colors-sort) 'rgb-dist)
518 (color-distance color (cdr list-colors-sort)))
519 ((eq list-colors-sort 'hsv)
520 (apply 'color-rgb-to-hsv (color-values color)))
521 ((eq (car-safe list-colors-sort) 'hsv-dist)
522 (let* ((c-rgb (color-values color))
523 (c-hsv (apply 'color-rgb-to-hsv c-rgb))
524 (o-hsv (apply 'color-rgb-to-hsv
525 (color-values (cdr list-colors-sort)))))
526 (unless (and (eq (nth 0 c-rgb) (nth 1 c-rgb)) ; exclude grayscale
527 (eq (nth 1 c-rgb) (nth 2 c-rgb)))
528 ;; 3D Euclidean distance (sqrt is not needed for sorting)
529 (+ (expt (- 180 (abs (- 180 (abs (- (nth 0 c-hsv) ; wrap hue
530 (nth 0 o-hsv)))))) 2)
531 (expt (- (nth 1 c-hsv) (nth 1 o-hsv)) 2)
532 (expt (- (nth 2 c-hsv) (nth 2 o-hsv)) 2)))))))
533
534 (defun list-colors-display (&optional list buffer-name callback)
535 "Display names of defined colors, and show what they look like.
536 If the optional argument LIST is non-nil, it should be a list of
537 colors to display. Otherwise, this command computes a list of
538 colors that the current display can handle.
539
540 If the optional argument BUFFER-NAME is nil, it defaults to
541 *Colors*.
542
543 If the optional argument CALLBACK is non-nil, it should be a
544 function to call each time the user types RET or clicks on a
545 color. The function should accept a single argument, the color
546 name.
547
548 You can change the color sort order by customizing `list-colors-sort'."
549 (interactive)
550 (when (and (null list) (> (display-color-cells) 0))
551 (setq list (list-colors-duplicates (defined-colors)))
552 (when list-colors-sort
553 ;; Schwartzian transform with `(color key1 key2 key3 ...)'.
554 (setq list (mapcar
555 'car
556 (sort (delq nil (mapcar
557 (lambda (c)
558 (let ((key (list-colors-sort-key
559 (car c))))
560 (when key
561 (cons c (if (consp key) key
562 (list key))))))
563 list))
564 (lambda (a b)
565 (let* ((a-keys (cdr a))
566 (b-keys (cdr b))
567 (a-key (car a-keys))
568 (b-key (car b-keys)))
569 ;; Skip common keys at the beginning of key lists.
570 (while (and a-key b-key (equal a-key b-key))
571 (setq a-keys (cdr a-keys) a-key (car a-keys)
572 b-keys (cdr b-keys) b-key (car b-keys)))
573 (cond
574 ((and (numberp a-key) (numberp b-key))
575 (< a-key b-key))
576 ((and (stringp a-key) (stringp b-key))
577 (string< a-key b-key)))))))))
578 (when (memq (display-visual-class) '(gray-scale pseudo-color direct-color))
579 ;; Don't show more than what the display can handle.
580 (let ((lc (nthcdr (1- (display-color-cells)) list)))
581 (if lc
582 (setcdr lc nil)))))
583 (let ((buf (get-buffer-create "*Colors*")))
584 (with-current-buffer buf
585 (erase-buffer)
586 (setq truncate-lines t)
587 ;; Display buffer before generating content to allow
588 ;; `list-colors-print' to get the right window-width.
589 (pop-to-buffer buf)
590 (list-colors-print list callback)
591 (set-buffer-modified-p nil)))
592 (if callback
593 (message "Click on a color to select it.")))
594
595 (defun list-colors-print (list &optional callback)
596 (let ((callback-fn
597 (if callback
598 `(lambda (button)
599 (funcall ,callback (button-get button 'color-name))))))
600 (dolist (color list)
601 (if (consp color)
602 (if (cdr color)
603 (setq color (sort color (lambda (a b)
604 (string< (downcase a)
605 (downcase b))))))
606 (setq color (list color)))
607 (let* ((opoint (point))
608 (color-values (color-values (car color)))
609 (light-p (>= (apply 'max color-values)
610 (* (car (color-values "white")) .5)))
611 (max-len (max (- (window-width) 33) 20)))
612 (insert (car color))
613 (indent-to 22)
614 (put-text-property opoint (point) 'face `(:background ,(car color)))
615 (put-text-property
616 (prog1 (point)
617 (insert " ")
618 (if (cdr color)
619 ;; Insert as many color names as possible, fitting max-len.
620 (let ((names (list (car color)))
621 (others (cdr color))
622 (len (length (car color)))
623 newlen)
624 (while (and others
625 (< (setq newlen (+ len 2 (length (car others))))
626 max-len))
627 (setq len newlen)
628 (push (pop others) names))
629 (insert (mapconcat 'identity (nreverse names) ", ")))
630 (insert (car color))))
631 (point)
632 'face (list :foreground (car color)))
633 (indent-to (max (- (window-width) 8) 44))
634 (insert (propertize
635 (apply 'format "#%02x%02x%02x"
636 (mapcar (lambda (c) (lsh c -8))
637 color-values))
638 'mouse-face 'highlight
639 'help-echo
640 (let ((hsv (apply 'color-rgb-to-hsv
641 (color-values (car color)))))
642 (format "H:%d S:%d V:%d"
643 (nth 0 hsv) (nth 1 hsv) (nth 2 hsv)))))
644 (when callback
645 (make-text-button
646 opoint (point)
647 'follow-link t
648 'mouse-face (list :background (car color)
649 :foreground (if light-p "black" "white"))
650 'color-name (car color)
651 'action callback-fn)))
652 (insert "\n"))
653 (goto-char (point-min))))
654
655
656 (defun list-colors-duplicates (&optional list)
657 "Return a list of colors with grouped duplicate colors.
658 If a color has no duplicates, then the element of the returned list
659 has the form '(COLOR-NAME). The element of the returned list with
660 duplicate colors has the form '(COLOR-NAME DUPLICATE-COLOR-NAME ...).
661 This function uses the predicate `facemenu-color-equal' to compare
662 color names. If the optional argument LIST is non-nil, it should
663 be a list of colors to display. Otherwise, this function uses
664 a list of colors that the current display can handle."
665 (let* ((list (mapcar 'list (or list (defined-colors))))
666 (l list))
667 (while (cdr l)
668 (if (and (facemenu-color-equal (car (car l)) (car (car (cdr l))))
669 (not (if (fboundp 'w32-default-color-map)
670 (not (assoc (car (car l)) (w32-default-color-map))))))
671 (progn
672 (setcdr (car l) (cons (car (car (cdr l))) (cdr (car l))))
673 (setcdr l (cdr (cdr l))))
674 (setq l (cdr l))))
675 list))
676
677 (defun facemenu-color-equal (a b)
678 "Return t if colors A and B are the same color.
679 A and B should be strings naming colors.
680 This function queries the display system to find out what the color
681 names mean. It returns nil if the colors differ or if it can't
682 determine the correct answer."
683 (cond ((equal a b) t)
684 ((equal (color-values a) (color-values b)))))
685
686
687 (defvar facemenu-self-insert-data nil)
688
689 (defun facemenu-post-self-insert-function ()
690 (when (and (car facemenu-self-insert-data)
691 (eq last-command (cdr facemenu-self-insert-data)))
692 (put-text-property (1- (point)) (point)
693 'face (car facemenu-self-insert-data))
694 (setq facemenu-self-insert-data nil))
695 (remove-hook 'post-self-insert-hook 'facemenu-post-self-insert-function))
696
697 (defun facemenu-set-self-insert-face (face)
698 "Arrange for the next self-inserted char to have face `face'."
699 (setq facemenu-self-insert-data (cons face this-command))
700 (add-hook 'post-self-insert-hook 'facemenu-post-self-insert-function))
701
702 (defun facemenu-add-face (face &optional start end)
703 "Add FACE to text between START and END.
704 If START is nil or START to END is empty, add FACE to next typed character
705 instead. For each section of that region that has a different face property,
706 FACE will be consed onto it, and other faces that are completely hidden by
707 that will be removed from the list.
708 If `facemenu-add-face-function' and maybe `facemenu-end-add-face' are non-nil,
709 they are used to set the face information.
710
711 As a special case, if FACE is `default', then the region is left with NO face
712 text property. Otherwise, selecting the default face would not have any
713 effect. See `facemenu-remove-face-function'."
714 (interactive "*xFace: \nr")
715 (cond
716 ((and (eq face 'default)
717 (not (eq facemenu-remove-face-function t)))
718 (if facemenu-remove-face-function
719 (funcall facemenu-remove-face-function start end)
720 (if (and start (< start end))
721 (remove-text-properties start end '(face default))
722 (facemenu-set-self-insert-face 'default))))
723 (facemenu-add-face-function
724 (save-excursion
725 (if end (goto-char end))
726 (save-excursion
727 (if start (goto-char start))
728 (insert-before-markers
729 (funcall facemenu-add-face-function face end)))
730 (if facemenu-end-add-face
731 (insert (if (stringp facemenu-end-add-face)
732 facemenu-end-add-face
733 (funcall facemenu-end-add-face face))))))
734 ((and start (< start end))
735 (let ((part-start start) part-end)
736 (while (not (= part-start end))
737 (setq part-end (next-single-property-change part-start 'face
738 nil end))
739 (let ((prev (get-text-property part-start 'face)))
740 (put-text-property part-start part-end 'face
741 (if (null prev)
742 face
743 (facemenu-active-faces
744 (cons face
745 (if (listp prev)
746 prev
747 (list prev)))
748 ;; Specify the selected frame
749 ;; because nil would mean to use
750 ;; the new-frame default settings,
751 ;; and those are usually nil.
752 (selected-frame)))))
753 (setq part-start part-end))))
754 (t
755 (facemenu-set-self-insert-face
756 (if (eq last-command (cdr facemenu-self-insert-data))
757 (cons face (if (listp (car facemenu-self-insert-data))
758 (car facemenu-self-insert-data)
759 (list (car facemenu-self-insert-data))))
760 face))))
761 (unless (facemenu-enable-faces-p)
762 (message "Font-lock mode will override any faces you set in this buffer")))
763
764 (defun facemenu-active-faces (face-list &optional frame)
765 "Return from FACE-LIST those faces that would be used for display.
766 This means each face attribute is not specified in a face earlier in FACE-LIST
767 and such a face is therefore active when used to display text.
768 If the optional argument FRAME is given, use the faces in that frame; otherwise
769 use the selected frame. If t, then the global, non-frame faces are used."
770 (let* ((mask-atts (copy-sequence
771 (if (consp (car face-list))
772 (face-attributes-as-vector (car face-list))
773 (or (internal-lisp-face-p (car face-list) frame)
774 (check-face (car face-list))))))
775 (active-list (list (car face-list)))
776 (face-list (cdr face-list))
777 (mask-len (length mask-atts)))
778 (while face-list
779 (if (let ((face-atts
780 (if (consp (car face-list))
781 (face-attributes-as-vector (car face-list))
782 (or (internal-lisp-face-p (car face-list) frame)
783 (check-face (car face-list)))))
784 (i mask-len)
785 (useful nil))
786 (while (>= (setq i (1- i)) 0)
787 (and (not (memq (aref face-atts i) '(nil unspecified)))
788 (memq (aref mask-atts i) '(nil unspecified))
789 (aset mask-atts i (setq useful t))))
790 useful)
791 (setq active-list (cons (car face-list) active-list)))
792 (setq face-list (cdr face-list)))
793 (nreverse active-list)))
794
795 (defun facemenu-add-new-face (face)
796 "Add FACE (a face) to the Face menu if `facemenu-listed-faces' says so.
797 This is called whenever you create a new face, and at other times."
798 (let* (name
799 symbol
800 menu docstring
801 (key (cdr (assoc face facemenu-keybindings)))
802 function menu-val)
803 (if (symbolp face)
804 (setq name (symbol-name face)
805 symbol face)
806 (setq name face
807 symbol (intern name)))
808 (setq menu 'facemenu-face-menu)
809 (setq docstring
810 (purecopy (format "Select face `%s' for subsequent insertion.
811 If the mark is active and there is no prefix argument,
812 apply face `%s' to the region instead.
813 This command was defined by `facemenu-add-new-face'."
814 name name)))
815 (cond ((facemenu-iterate ; check if equivalent face is already in the menu
816 (lambda (m) (and (listp m)
817 (symbolp (car m))
818 ;; Avoid error in face-equal
819 ;; when a non-face is erroneously present.
820 (facep (car m))
821 (face-equal (car m) symbol)))
822 (cdr (symbol-function menu))))
823 ;; Faces with a keyboard equivalent. These go at the front.
824 (key
825 (setq function (intern (concat "facemenu-set-" name)))
826 (fset function
827 `(lambda ()
828 ,docstring
829 (interactive)
830 (facemenu-set-face
831 (quote ,symbol)
832 (if (and mark-active (not current-prefix-arg))
833 (region-beginning))
834 (if (and mark-active (not current-prefix-arg))
835 (region-end)))))
836 (define-key 'facemenu-keymap key (cons name function))
837 (define-key menu key (cons name function)))
838 ;; Faces with no keyboard equivalent. Figure out where to put it:
839 ((or (eq t facemenu-listed-faces)
840 (memq symbol facemenu-listed-faces))
841 (setq key (vector symbol)
842 function 'facemenu-set-face-from-menu
843 menu-val (symbol-function menu))
844 (if (and facemenu-new-faces-at-end
845 (> (length menu-val) 3))
846 (define-key-after menu-val key (cons name function)
847 (car (nth (- (length menu-val) 3) menu-val)))
848 (define-key menu key (cons name function))))))
849 nil) ; Return nil for facemenu-iterate
850
851 (defun facemenu-add-new-color (color menu)
852 "Add COLOR (a color name string) to the appropriate Face menu.
853 MENU should be `facemenu-foreground-menu' or `facemenu-background-menu'.
854 Return the event type (a symbol) of the added menu entry.
855
856 This is called whenever you use a new color."
857 (let (symbol docstring)
858 (unless (color-defined-p color)
859 (error "Color `%s' undefined" color))
860 (cond ((eq menu 'facemenu-foreground-menu)
861 (setq docstring
862 (format "Select foreground color %s for subsequent insertion."
863 color)
864 symbol (intern (concat "fg:" color))))
865 ((eq menu 'facemenu-background-menu)
866 (setq docstring
867 (format "Select background color %s for subsequent insertion."
868 color)
869 symbol (intern (concat "bg:" color))))
870 (t (error "MENU should be `facemenu-foreground-menu' or `facemenu-background-menu'")))
871 (unless (facemenu-iterate ; Check if color is already in the menu.
872 (lambda (m) (and (listp m)
873 (eq (car m) symbol)))
874 (cdr (symbol-function menu)))
875 ;; Color is not in the menu. Figure out where to put it.
876 (let ((key (vector symbol))
877 (function 'facemenu-set-face-from-menu)
878 (menu-val (symbol-function menu)))
879 (if (and facemenu-new-faces-at-end
880 (> (length menu-val) 3))
881 (define-key-after menu-val key (cons color function)
882 (car (nth (- (length menu-val) 3) menu-val)))
883 (define-key menu key (cons color function)))))
884 symbol))
885
886 (defun facemenu-complete-face-list (&optional oldlist)
887 "Return list of all faces that look different.
888 Starts with given ALIST of faces, and adds elements only if they display
889 differently from any face already on the list.
890 The faces on ALIST will end up at the end of the returned list, in reverse
891 order."
892 (let ((list (nreverse (mapcar 'car oldlist))))
893 (facemenu-iterate
894 (lambda (new-face)
895 (if (not (memq new-face list))
896 (setq list (cons new-face list)))
897 nil)
898 (nreverse (face-list)))
899 list))
900
901 (defun facemenu-iterate (func list)
902 "Apply FUNC to each element of LIST until one returns non-nil.
903 Returns the non-nil value it found, or nil if all were nil."
904 (while (and list (not (funcall func (car list))))
905 (setq list (cdr list)))
906 (car list))
907
908 (facemenu-update)
909
910 (provide 'facemenu)
911
912 ;;; facemenu.el ends here