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