(line-move-1): If we did not move as far as desired, ensure that
[bpt/emacs.git] / lisp / face-remap.el
CommitLineData
9d3d42fb
MB
1;;; face-remap.el --- Functions for managing `face-remapping-alist'
2;;
3;; Copyright (C) 2008 Free Software Foundation, Inc.
4;;
5;; Author: Miles Bader <miles@gnu.org>
6;; Keywords: faces face display user commands
7;;
8;; This file is part of GNU Emacs.
9;;
10;; GNU Emacs is free software: you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
14;;
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19;;
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22;;
23
24;;; Commentary:
25
26;;
27;; This file defines some simple operations that can be used for
28;; maintaining the `face-remapping-alist' in a cooperative way. This is
29;; especially important for the `default' face.
30;;
31;; Each face-remapping definition in `face-remapping-alist' added by
32;; this code uses the form:
33;;
34;; (face RELATIVE_SPECS_1 RELATIVE_SPECS_2 ... BASE_SPECS)
35;;
36;; The "specs" values are a lists of face names or face attribute-value
37;; pairs, and are merged together, with earlier values taking precedence.
38;;
39;; The RELATIVE_SPECS_* values are added by `add-relative-face-remapping'
40;; (and removed by `remove-relative-face-remapping', and are intended for
41;; face "modifications" (such as increasing the size). Typical users of
42;; relative specs would be minor modes.
43;;
44;; BASE_SPECS is the lowest-priority value, and by default is just the
45;; face name, which causes the global definition of that face to be used.
46;;
47;; A non-default value of BASE_SPECS may also be set using
48;; `set-base-face-remapping'. Because this _overwrites_ the default
49;; value inheriting from the global face definition, it is up to the
50;; caller of set-base-face-remapping to add such inheritance if it is
51;; desired. A typical use of set-base-face-remapping would be a major
52;; mode setting face remappings, e.g., of the default face.
53;;
54;; All modifications cause face-remapping-alist to be made buffer-local.
55;;
56
57
58;;; Code:
59
60\f
61;; ----------------------------------------------------------------
62;; Utility functions
63
64;;;### autoload
65(defun add-relative-face-remapping (face &rest specs)
66 "Add a face remapping entry of FACE to SPECS in the current buffer.
67
68Return a cookie which can be used to delete the remapping with
69`remove-relative-face-remapping'.
70
71SPECS can be any value suitable for the `face' text property,
72including a face name, a list of face names, or a face-attribute
73property list. The attributes given by SPECS will be merged with
74any other currently active face remappings of FACE, and with the
75global definition of FACE, with the most recently added relative
76remapping taking precedence.
77
78The base (lowest priority) remapping may be set to a specific
79value, instead of the default of the global face definition,
80using `set-base-face-remapping'."
81 (make-local-variable 'face-remapping-alist)
82 (let ((entry (assq face face-remapping-alist)))
83 (when (null entry)
84 (setq entry (list face face)) ; explicitly merge with global def
85 (push entry face-remapping-alist))
86 (setcdr entry (cons specs (cdr entry)))
87 (cons face specs)))
88
89(defun remove-relative-face-remapping (cookie)
90 "Remove a face remapping previously added by `add-relative-face-remapping'.
91COOKIE should be the return value from that function."
92 (let ((remapping (assq (car cookie) face-remapping-alist)))
93 (when remapping
94 (let ((updated-entries (remq (cdr cookie) (cdr remapping))))
95 (unless (eq updated-entries (cdr remapping))
96 (setcdr remapping updated-entries)
97 (when (or (null updated-entries)
98 (and (eq (car-safe updated-entries) (car cookie))
99 (null (cdr updated-entries))))
100 (setq face-remapping-alist
101 (remq remapping face-remapping-alist)))
102 (cdr cookie))))))
103
104;;;### autoload
105(defun set-default-base-face-remapping (face)
106 "Set the base remapping of FACE to inherit from FACE's global definition."
107 (let ((entry (assq face face-remapping-alist)))
108 (when entry
109 ;; If there's nothing except a base remapping, we simply remove
110 ;; the entire remapping entry, as setting the base to the default
111 ;; would be the same as the global definition. Otherwise, we
112 ;; modify the base remapping.
113 (if (null (cddr entry)) ; nothing except base remapping
114 (setq face-remapping-alist ; so remove entire entry
115 (remq entry face-remapping-alist))
116 (setcar (last entry) face))))) ; otherwise, just inherit global def
117
118;;;### autoload
119(defun set-base-face-remapping (face &rest specs)
120 "Set the base remapping of FACE in the current buffer to SPECS.
121If SPECS is empty, the default base remapping is restored, which
122inherits from the global definition of FACE; note that this is
123different from SPECS containing a single value `nil', which does
124not inherit from the global definition of FACE."
125 (if (or (null specs)
126 (and (eq (car specs) face) (null (cdr specs)))) ; default
127 ;; Set entry back to default
128 (set-default-base-face-remapping face)
129 ;; Set the base remapping
130 (make-local-variable 'face-remapping-alist)
131 (let ((entry (assq face face-remapping-alist)))
132 (if entry
133 (setcar (last entry) specs) ; overwrite existing base entry
134 (push (list face specs) face-remapping-alist)))))
135
136\f
137;; ----------------------------------------------------------------
138;; text-scale-mode
139
140(defcustom text-scale-mode-step 1.2
141 "Scale factor used by `text-scale-mode'.
142Each positive or negative step scales the default face height by this amount."
143 :group 'display
144 :type 'number)
145
146;; current remapping cookie for text-scale-mode
147(defvar text-scale-mode-remapping nil)
148(make-variable-buffer-local 'text-scale-mode-remapping)
149
150;; Lighter displayed for text-scale-mode in mode-line minor-mode list
151(defvar text-scale-mode-lighter "+0")
152(make-variable-buffer-local 'text-scale-mode-lighter)
153
154;; Number of steps that text-scale-mode will increase/decrease text height
155(defvar text-scale-mode-amount 0)
156(make-variable-buffer-local 'text-scale-mode-amount)
157
158(define-minor-mode text-scale-mode
159 "Minor mode for displaying buffer text in a larger/smaller font than usual.
160
161The amount of scaling is determined by the variable
162`text-scale-mode-amount': one step scales the global default
163face size by the value of the variable `text-scale-mode-step' (a
164negative amount shrinks the text).
165
166The `increase-buffer-face-height' and
167`decrease-buffer-face-height' functions may be used to
168interactively modify the variable `text-scale-mode-amount' (they
169also enable or disable `text-scale-mode' as necessary."
170 :lighter (" " text-scale-mode-lighter)
171 (when text-scale-mode-remapping
172 (remove-relative-face-remapping text-scale-mode-remapping))
173 (setq text-scale-mode-lighter
174 (format (if (>= text-scale-mode-amount 0) "+%d" "%d")
175 text-scale-mode-amount))
176 (setq text-scale-mode-remapping
177 (and text-scale-mode
178 (add-relative-face-remapping 'default
179 :height
180 (expt text-scale-mode-step
181 text-scale-mode-amount))))
182 (force-window-update (current-buffer)))
183
184;;;###autoload (global-set-key [(control =)] 'increase-buffer-face-height)
185;;;###autoload (global-set-key [(control +)] 'increase-buffer-face-height)
186;;;###autoload
187(defun increase-buffer-face-height (&optional inc)
188 "Increase the height of the default face in the current buffer by INC steps.
189If the new height is other than the default, `text-scale-mode' is enabled.
190
191Each step scales the height of the default face by the variable
192`text-scale-mode-step' (a negative number of steps decreases the
193height by the same amount). As a special case, an argument of 0
194will remove any scaling currently active."
195 (interactive
196 (list
197 (cond ((eq current-prefix-arg '-) -1)
198 ((numberp current-prefix-arg) current-prefix-arg)
199 ((consp current-prefix-arg) -1)
200 (t 1))))
201 (setq text-scale-mode-amount (if (= inc 0) 0 (+ text-scale-mode-amount inc)))
202 (text-scale-mode (if (zerop text-scale-mode-amount) -1 1)))
203
204;;;###autoload (global-set-key [(control -)] 'decrease-buffer-face-height)
205;;;###autoload
206(defun decrease-buffer-face-height (&optional dec)
207 "Decrease the height of the default face in the current buffer by DEC steps.
208See `increase-buffer-face-height' for more details."
209 (interactive
210 (list
211 (cond ((eq current-prefix-arg '-) -1)
212 ((numberp current-prefix-arg) current-prefix-arg)
213 ((consp current-prefix-arg) -1)
214 (t 1))))
215 (increase-buffer-face-height (- dec)))
216
217\f
218;; ----------------------------------------------------------------
219;; variable-pitch-mode
220
221;; suggested key binding: (global-set-key "\C-cv" 'variable-pitch-mode)
222
223;; current remapping cookie for variable-pitch-mode
224(defvar variable-pitch-mode-remapping nil)
225(make-variable-buffer-local 'variable-pitch-mode-remapping)
226
227(define-minor-mode variable-pitch-mode
228 "Variable-pitch default-face mode. When active, causes the
229buffer text to be displayed using the `variable-pitch' face."
230 :lighter " VarPitch"
231 (when variable-pitch-mode-remapping
232 (remove-relative-face-remapping variable-pitch-mode-remapping))
233 (setq variable-pitch-mode-remapping
234 (and variable-pitch-mode
235 (add-relative-face-remapping 'default 'variable-pitch)))
236 (force-window-update (current-buffer)))
237
238
239(provide 'face-remap)
240
241;; arch-tag: 5c5f034b-8d58-4967-82bd-d61fd364e686
242;;; face-remap.el ends here