Mercurial > hg > xemacs-beta
comparison lisp/x11/x-faces.el @ 0:376386a54a3c r19-14
Import from CVS: tag r19-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:45:50 +0200 |
parents | |
children | 441bb1e64a06 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:376386a54a3c |
---|---|
1 ;;; x-faces.el --- X-specific face frobnication, aka black magic. | |
2 | |
3 ;;; Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. | |
4 ;;; Copyright (C) 1995, 1996 Ben Wing. | |
5 | |
6 ;; Author: Jamie Zawinski <jwz@lucid.com> | |
7 ;; Modified by: Chuck Thompson <cthomp@cs.uiuc.edu> | |
8 ;; Modified by: Ben Wing <wing@spg.amdahl.com> | |
9 | |
10 ;; This file is part of XEmacs. | |
11 | |
12 ;; XEmacs is free software; you can redistribute it and/or modify it | |
13 ;; under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; XEmacs is distributed in the hope that it will be useful, but | |
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
20 ;; General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with XEmacs; see the file COPYING. If not, write to the Free | |
24 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
25 | |
26 ;; This file does the magic to parse X font names, and make sure that the | |
27 ;; default and modeline attributes of new frames are specified enough. | |
28 ;; | |
29 ;; The resource-manager syntax for faces is | |
30 ;; | |
31 ;; Emacs.bold.attributeFont: font-name | |
32 ;; Emacs.bold.attributeForeground: fg | |
33 ;; Emacs.bold.attributeBackground: bg | |
34 ;; Emacs.bold.attributeBackgroundPixmap: file | |
35 ;; Emacs.bold.attributeUnderline: true/false | |
36 ;; Emacs.bold.attributeStrikethru: true/false | |
37 ;; | |
38 ;; You can specify the properties of a face on a per-frame basis. For | |
39 ;; example, to have the "isearch" face use a red foreground on frames | |
40 ;; named "emacs" (the default) but use a blue foreground on frames that | |
41 ;; you create named "debugger", you could do | |
42 ;; | |
43 ;; Emacs*emacs.isearch.attributeForeground: red | |
44 ;; Emacs*debugger.isearch.attributeForeground: blue | |
45 ;; | |
46 ;; Generally things that make faces won't set any of the face attributes if | |
47 ;; you have already given them values via the resource database. You can | |
48 ;; also change this stuff from your .emacs file, by using the functions | |
49 ;; set-face-foreground, set-face-font, etc. See the code in this file, and | |
50 ;; in faces.el. | |
51 | |
52 (defconst x-font-regexp nil) | |
53 (defconst x-font-regexp-head nil) | |
54 (defconst x-font-regexp-head-2 nil) | |
55 (defconst x-font-regexp-weight nil) | |
56 (defconst x-font-regexp-slant nil) | |
57 (defconst x-font-regexp-pixel nil) | |
58 (defconst x-font-regexp-point nil) | |
59 (defconst x-font-regexp-foundry-and-family nil) | |
60 (defconst x-font-regexp-registry-and-encoding nil) | |
61 (defconst x-font-regexp-spacing nil) | |
62 | |
63 ;;; Regexps matching font names in "Host Portable Character Representation." | |
64 ;;; | |
65 (let ((- "[-?]") | |
66 (foundry "[^-]*") | |
67 (family "[^-]*") | |
68 (weight "\\(bold\\|demibold\\|medium\\|black\\)") ; 1 | |
69 ; (weight\? "\\(\\*\\|bold\\|demibold\\|medium\\|\\)") ; 1 | |
70 (weight\? "\\([^-]*\\)") ; 1 | |
71 (slant "\\([ior]\\)") ; 2 | |
72 ; (slant\? "\\([ior?*]?\\)") ; 2 | |
73 (slant\? "\\([^-]?\\)") ; 2 | |
74 ; (swidth "\\(\\*\\|normal\\|semicondensed\\|\\)") ; 3 | |
75 (swidth "\\([^-]*\\)") ; 3 | |
76 ; (adstyle "\\(\\*\\|sans\\|\\)") ; 4 | |
77 (adstyle "\\([^-]*\\)") ; 4 | |
78 (pixelsize "\\(\\*\\|[0-9]+\\)") ; 5 | |
79 (pointsize "\\(\\*\\|0\\|[0-9][0-9]+\\)") ; 6 | |
80 ; (resx "\\(\\*\\|[0-9][0-9]+\\)") ; 7 | |
81 ; (resy "\\(\\*\\|[0-9][0-9]+\\)") ; 8 | |
82 (resx "\\([*0]\\|[0-9][0-9]+\\)") ; 7 | |
83 (resy "\\([*0]\\|[0-9][0-9]+\\)") ; 8 | |
84 (spacing "[cmp?*]") | |
85 (avgwidth "\\(\\*\\|[0-9]+\\)") ; 9 | |
86 (registry "[^-]*") ; some fonts have omitted registries | |
87 ; (encoding ".+") ; note that encoding may contain "-"... | |
88 (encoding "[^-]+") ; false! | |
89 ) | |
90 (setq x-font-regexp | |
91 (purecopy | |
92 (concat "\\`\\*?[-?*]" | |
93 foundry - family - weight\? - slant\? - swidth - adstyle - | |
94 pixelsize - pointsize - resx - resy - spacing - avgwidth - | |
95 registry - encoding "\\'" | |
96 ))) | |
97 (setq x-font-regexp-head | |
98 (purecopy | |
99 (concat "\\`[-?*]" foundry - family - weight\? - slant\? | |
100 "\\([-*?]\\|\\'\\)"))) | |
101 (setq x-font-regexp-head-2 | |
102 (purecopy | |
103 (concat "\\`[-?*]" foundry - family - weight\? - slant\? | |
104 - swidth - adstyle - pixelsize - pointsize | |
105 "\\([-*?]\\|\\'\\)"))) | |
106 (setq x-font-regexp-slant (purecopy (concat - slant -))) | |
107 (setq x-font-regexp-weight (purecopy (concat - weight -))) | |
108 ;; if we can't match any of the more specific regexps (unfortunate) then | |
109 ;; look for digits; assume 2+ digits is 10ths of points, and 1-2 digits | |
110 ;; is pixels. Bogus as hell. | |
111 (setq x-font-regexp-pixel (purecopy "[-?*]\\([0-9][0-9]?\\)[-?*]")) | |
112 (setq x-font-regexp-point (purecopy "[-?*]\\([0-9][0-9]+\\)[-?*]")) | |
113 ;; the following two are used by x-font-menu.el. | |
114 (setq x-font-regexp-foundry-and-family | |
115 (purecopy (concat "\\`[-?*]" foundry - "\\(" family "\\)" -))) | |
116 (setq x-font-regexp-registry-and-encoding | |
117 (purecopy (concat - "\\(" registry "\\)" - "\\(" encoding "\\)\\'"))) | |
118 (setq x-font-regexp-spacing | |
119 (purecopy (concat - "\\(" spacing "\\)" - avgwidth | |
120 - registry - encoding "\\'"))) | |
121 ) | |
122 | |
123 ;; A "loser font" is something like "8x13" -> "8x13bold". | |
124 ;; These are supported only through extreme generosity. | |
125 (defconst x-loser-font-regexp (purecopy "\\`[0-9]+x[0-9]+\\'")) | |
126 | |
127 (defun x-frob-font-weight (font which) | |
128 (if (font-instance-p font) (setq font (font-instance-name font))) | |
129 (cond ((null font) nil) | |
130 ((or (string-match x-font-regexp font) | |
131 (string-match x-font-regexp-head font) | |
132 (string-match x-font-regexp-weight font)) | |
133 (concat (substring font 0 (match-beginning 1)) which | |
134 (substring font (match-end 1)))) | |
135 ((string-match x-loser-font-regexp font) | |
136 (concat font which)) | |
137 (t nil))) | |
138 | |
139 (defun x-frob-font-slant (font which) | |
140 (if (font-instance-p font) (setq font (font-instance-name font))) | |
141 (cond ((null font) nil) | |
142 ((or (string-match x-font-regexp font) | |
143 (string-match x-font-regexp-head font)) | |
144 (concat (substring font 0 (match-beginning 2)) which | |
145 (substring font (match-end 2)))) | |
146 ((string-match x-font-regexp-slant font) | |
147 (concat (substring font 0 (match-beginning 1)) which | |
148 (substring font (match-end 1)))) | |
149 ((string-match x-loser-font-regexp font) | |
150 (concat font which)) | |
151 (t nil))) | |
152 | |
153 (defun try-font-name (name &optional device) | |
154 ;; yes, name really should be here twice. | |
155 (and name (make-font-instance name device t) name)) | |
156 | |
157 (defun x-make-font-bold (font &optional device) | |
158 "Given an X font specification, this attempts to make a `bold' font. | |
159 If it fails, it returns nil." | |
160 ;; Certain Type1 fonts know "bold" as "black"... | |
161 (or (try-font-name (x-frob-font-weight font "bold") device) | |
162 (try-font-name (x-frob-font-weight font "black") device) | |
163 (try-font-name (x-frob-font-weight font "demibold") device))) | |
164 | |
165 (defun x-make-font-unbold (font &optional device) | |
166 "Given an X font specification, this attempts to make a non-bold font. | |
167 If it fails, it returns nil." | |
168 (try-font-name (x-frob-font-weight font "medium") device)) | |
169 | |
170 (defun x-make-font-italic (font &optional device) | |
171 "Given an X font specification, this attempts to make an `italic' font. | |
172 If it fails, it returns nil." | |
173 (or (try-font-name (x-frob-font-slant font "i") device) | |
174 (try-font-name (x-frob-font-slant font "o") device))) | |
175 | |
176 (defun x-make-font-unitalic (font &optional device) | |
177 "Given an X font specification, this attempts to make a non-italic font. | |
178 If it fails, it returns nil." | |
179 (try-font-name (x-frob-font-slant font "r") device)) | |
180 | |
181 (defun x-make-font-bold-italic (font &optional device) | |
182 "Given an X font specification, this attempts to make a `bold-italic' font. | |
183 If it fails, it returns nil." | |
184 ;; This is haired up to avoid loading the "intermediate" fonts. | |
185 (or (try-font-name | |
186 (x-frob-font-slant (x-frob-font-weight font "bold") "i") device) | |
187 (try-font-name | |
188 (x-frob-font-slant (x-frob-font-weight font "bold") "o") device) | |
189 (try-font-name | |
190 (x-frob-font-slant (x-frob-font-weight font "black") "i") device) | |
191 (try-font-name | |
192 (x-frob-font-slant (x-frob-font-weight font "black") "o") device) | |
193 (try-font-name | |
194 (x-frob-font-slant (x-frob-font-weight font "demibold") "i") device) | |
195 (try-font-name | |
196 (x-frob-font-slant (x-frob-font-weight font "demibold") "o") device))) | |
197 | |
198 (defun x-font-size (font) | |
199 "Return the nominal size of the given font. | |
200 This is done by parsing its name, so it's likely to lose. | |
201 X fonts can be specified (by the user) in either pixels or 10ths of points, | |
202 and this returns the first one it finds, so you have to decide which units | |
203 the returned value is measured in yourself..." | |
204 (if (font-instance-p font) (setq font (font-instance-name font))) | |
205 (cond ((or (string-match x-font-regexp font) | |
206 (string-match x-font-regexp-head-2 font)) | |
207 (string-to-int (substring font (match-beginning 6) (match-end 6)))) | |
208 ((or (string-match x-font-regexp-pixel font) | |
209 (string-match x-font-regexp-point font)) | |
210 (string-to-int (substring font (match-beginning 1) (match-end 1)))) | |
211 (t nil))) | |
212 | |
213 ;; Given a font name, this function returns a list describing all fonts | |
214 ;; of all sizes that otherwise match the given font spec. Each element | |
215 ;; in the list is a list of three items: the pixel size of the font, | |
216 ;; the point size (in 1/10ths of a point) of the font, and the fully- | |
217 ;; qualified font name. The first two values may be zero; this | |
218 ;; refers to a scalable font. | |
219 | |
220 (defun x-available-font-sizes (font device) | |
221 (if (font-instance-p font) (setq font (font-instance-name font))) | |
222 (cond ((string-match x-font-regexp font) | |
223 ;; turn pixelsize, pointsize, and avgwidth into wildcards | |
224 (setq font | |
225 (concat (substring font 0 (match-beginning 5)) "*" | |
226 (substring font (match-end 5) (match-beginning 6)) "*" | |
227 (substring font (match-end 6) (match-beginning 9)) "*" | |
228 (substring font (match-end 9) (match-end 0))))) | |
229 ((string-match x-font-regexp-head-2 font) | |
230 ;; turn pixelsize and pointsize into wildcards | |
231 (setq font | |
232 (concat (substring font 0 (match-beginning 5)) "*" | |
233 (substring font (match-end 5) (match-beginning 6)) "*" | |
234 (substring font (match-end 6) (match-end 0))))) | |
235 ((string-match "[-?*]\\([0-9]+\\)[-?*]" font) | |
236 ;; Turn the first integer we match into a wildcard. | |
237 ;; This is pretty dubious... | |
238 (setq font | |
239 (concat (substring font 0 (match-beginning 1)) "*" | |
240 (substring font (match-end 1) (match-end 0)))))) | |
241 (sort | |
242 (delq nil | |
243 (mapcar (function | |
244 (lambda (name) | |
245 (and (string-match x-font-regexp name) | |
246 (list | |
247 (string-to-int (substring name (match-beginning 5) | |
248 (match-end 5))) | |
249 (string-to-int (substring name (match-beginning 6) | |
250 (match-end 6))) | |
251 name)))) | |
252 (list-fonts font device))) | |
253 (function (lambda (x y) (if (= (nth 1 x) (nth 1 y)) | |
254 (< (nth 0 x) (nth 0 y)) | |
255 (< (nth 1 x) (nth 1 y))))))) | |
256 | |
257 ;; Given a font name, this attempts to construct a valid font name for | |
258 ;; DEVICE whose size is the next smaller (if UP-P is nil) or larger | |
259 ;; (if UP-P is t) size and whose other characteristics are the same | |
260 ;; as the given font. | |
261 | |
262 (defun x-frob-font-size (font up-p device) | |
263 (if (stringp font) (setq font (make-font-instance font device))) | |
264 (if (font-instance-p font) (setq font (font-instance-truename font))) | |
265 (let ((available (and font | |
266 (x-available-font-sizes font device)))) | |
267 (cond | |
268 ((null available) nil) | |
269 ((or (= 0 (nth 0 (car available))) | |
270 (= 0 (nth 1 (car available)))) | |
271 ;; R5 scalable fonts: change size by 1 point. | |
272 ;; If they're scalable the first font will have pixel or point = 0. | |
273 ;; Sometimes one is 0 and the other isn't (if it's a bitmap font that | |
274 ;; can be scaled), sometimes both are (if it's a true outline font). | |
275 (let ((name (nth 2 (car available))) | |
276 old-size) | |
277 (or (string-match x-font-regexp font) (error "can't parse %S" font)) | |
278 (setq old-size (string-to-int | |
279 (substring font (match-beginning 6) (match-end 6)))) | |
280 (or (> old-size 0) (error "font truename has 0 pointsize?")) | |
281 (or (string-match x-font-regexp name) (error "can't parse %S" name)) | |
282 ;; turn pixelsize into a wildcard, and make pointsize be +/- 10, | |
283 ;; which is +/- 1 point. All other fields stay the same as they | |
284 ;; were in the "template" font returned by x-available-font-sizes. | |
285 ;; | |
286 ;; #### But this might return the same font: for example, if the | |
287 ;; truename of "-*-courier-medium-r-normal--*-230-75-75-m-0-*" | |
288 ;; is "...-240-..." (instead of 230) then this loses, because | |
289 ;; the 230 that was passed in as an arg got turned into 240 | |
290 ;; by the call to font-instance-truename; then we decrement that | |
291 ;; by 10 and return the result which is the same. I think the | |
292 ;; way to fix this is to make this be a loop that keeps trying | |
293 ;; progressively larger pointsize deltas until it finds one | |
294 ;; whose truename differs. Have to be careful to avoid infinite | |
295 ;; loops at the upper end... | |
296 ;; | |
297 (concat (substring name 0 (match-beginning 5)) "*" | |
298 (substring name (match-end 5) (match-beginning 6)) | |
299 (int-to-string (+ old-size (if up-p 10 -10))) | |
300 (substring name (match-end 6) (match-end 0))))) | |
301 (t | |
302 ;; non-scalable fonts: take the next available size. | |
303 (let ((rest available) | |
304 (last nil) | |
305 result) | |
306 (setq font (downcase font)) | |
307 (while rest | |
308 (cond ((and (not up-p) (equal font (downcase (nth 2 (car rest))))) | |
309 (setq result last | |
310 rest nil)) | |
311 ((and up-p (equal font (and last (downcase (nth 2 last))))) | |
312 (setq result (car rest) | |
313 rest nil))) | |
314 (setq last (car rest)) | |
315 (setq rest (cdr rest))) | |
316 (nth 2 result)))))) | |
317 | |
318 (defun x-find-smaller-font (font &optional device) | |
319 "Loads a new, slightly smaller version of the given font (or font name). | |
320 Returns the font if it succeeds, nil otherwise. | |
321 If scalable fonts are available, this returns a font which is 1 point smaller. | |
322 Otherwise, it returns the next smaller version of this font that is defined." | |
323 (x-frob-font-size font nil device)) | |
324 | |
325 (defun x-find-larger-font (font &optional device) | |
326 "Loads a new, slightly larger version of the given font (or font name). | |
327 Returns the font if it succeeds, nil otherwise. | |
328 If scalable fonts are available, this returns a font which is 1 point larger. | |
329 Otherwise, it returns the next larger version of this font that is defined." | |
330 (x-frob-font-size font t device)) | |
331 | |
332 (defalias 'x-make-face-bold 'make-face-bold) | |
333 (defalias 'x-make-face-italic 'make-face-italic) | |
334 (defalias 'x-make-face-bold-italic 'make-face-bold-italic) | |
335 (defalias 'x-make-face-unbold 'make-face-unbold) | |
336 (defalias 'x-make-face-unitalic 'make-face-unitalic) | |
337 | |
338 (make-obsolete 'x-make-face-bold 'make-face-bold) | |
339 (make-obsolete 'x-make-face-italic 'make-face-italic) | |
340 (make-obsolete 'x-make-face-bold-italic 'make-face-bold-italic) | |
341 (make-obsolete 'x-make-face-unbold 'make-face-unbold) | |
342 (make-obsolete 'x-make-face-unitalic 'make-face-unitalic) | |
343 | |
344 | |
345 ;; Define some logical color names to be used when reading the pixmap files. | |
346 (if (featurep 'xpm) | |
347 (setq xpm-color-symbols | |
348 (list | |
349 (purecopy '("foreground" (face-foreground 'default))) | |
350 (purecopy '("background" (face-background 'default))) | |
351 (purecopy '("backgroundToolBarColor" | |
352 (x-get-resource "backgroundToolBarColor" | |
353 "BackgroundToolBarColor" 'string))) | |
354 ))) | |
355 | |
356 ;;; internal routines | |
357 | |
358 ;;; x-init-face-from-resources is responsible for initializing a | |
359 ;;; newly-created face from the resource database. | |
360 ;;; | |
361 ;;; When a new frame is created, it is called from `x-init-frame-faces' | |
362 ;;; called from `init-frame-faces' called from init_frame_faces() | |
363 ;;; from Fmake_frame(). In this case it is called once for each existing | |
364 ;;; face, with the newly-created frame as the argument. It then initializes | |
365 ;;; the newly-created faces on that frame. | |
366 ;;; | |
367 ;;; It's also called from `init-device-faces' and | |
368 ;;; `init-global-faces'. | |
369 ;;; | |
370 ;;; This had better not signal an error. The frame is in an intermediate | |
371 ;;; state where signalling an error or entering the debugger would likely | |
372 ;;; result in a crash. | |
373 | |
374 (defun x-init-face-from-resources (face locale) | |
375 ;; | |
376 ;; These are things like "attributeForeground" instead of simply | |
377 ;; "foreground" because people tend to do things like "*foreground", | |
378 ;; which would cause all faces to be fully qualified, making faces | |
379 ;; inherit attributes in a non-useful way. So we've made them slightly | |
380 ;; less obvious to specify in order to make them work correctly in | |
381 ;; more random environments. | |
382 ;; | |
383 ;; I think these should be called "face.faceForeground" instead of | |
384 ;; "face.attributeForeground", but they're the way they are for | |
385 ;; hysterical reasons. (jwz) | |
386 | |
387 (let* ((face-sym (face-name face)) | |
388 (name (symbol-name face-sym)) | |
389 (fn (x-get-resource-and-maybe-bogosity-check | |
390 (concat name ".attributeFont") | |
391 "Face.AttributeFont" | |
392 'string locale)) | |
393 (fg (x-get-resource-and-maybe-bogosity-check | |
394 (concat name ".attributeForeground") | |
395 "Face.AttributeForeground" | |
396 'string locale)) | |
397 (bg (x-get-resource-and-maybe-bogosity-check | |
398 (concat name ".attributeBackground") | |
399 "Face.AttributeBackground" | |
400 'string locale)) | |
401 (bgp (x-get-resource-and-maybe-bogosity-check | |
402 (concat name ".attributeBackgroundPixmap") | |
403 "Face.AttributeBackgroundPixmap" | |
404 'string locale)) | |
405 (ulp (x-get-resource-and-maybe-bogosity-check | |
406 (concat name ".attributeUnderline") | |
407 "Face.AttributeUnderline" | |
408 'boolean locale)) | |
409 (stp (x-get-resource-and-maybe-bogosity-check | |
410 (concat name ".attributeStrikethru") | |
411 "Face.AttributeStrikethru" | |
412 'boolean locale)) | |
413 ;; we still resource for these TTY-only resources so that | |
414 ;; you can specify resources for TTY frames/devices. This is | |
415 ;; useful when you start up your XEmacs on an X display and later | |
416 ;; open some TTY frames. | |
417 (hp (x-get-resource-and-maybe-bogosity-check | |
418 (concat name ".attributeHighlight") | |
419 "Face.AttributeHighlight" | |
420 'boolean locale)) | |
421 (dp (x-get-resource-and-maybe-bogosity-check | |
422 (concat name ".attributeDim") | |
423 "Face.AttributeDim" | |
424 'boolean locale)) | |
425 (bp (x-get-resource-and-maybe-bogosity-check | |
426 (concat name ".attributeBlinking") | |
427 "Face.AttributeBlinking" | |
428 'boolean locale)) | |
429 (rp (x-get-resource-and-maybe-bogosity-check | |
430 (concat name ".attributeReverse") | |
431 "Face.AttributeReverse" | |
432 'boolean locale)) | |
433 ) | |
434 | |
435 ;; | |
436 ;; If this is the default face, then any unspecified properties should | |
437 ;; be defaulted from the global properties. Can't do this for | |
438 ;; frames or devices because then, common resource specs like | |
439 ;; "*Foreground: black" will have unwanted effects. | |
440 ;; | |
441 (if (and (eq (face-name face) 'default) | |
442 (or (null locale) (eq locale 'global))) | |
443 (progn | |
444 (or fn (setq fn (x-get-resource | |
445 "font" "Font" 'string locale))) | |
446 (or fg (setq fg (x-get-resource | |
447 "foreground" "Foreground" 'string locale))) | |
448 (or bg (setq bg (x-get-resource | |
449 "background" "Background" 'string locale))))) | |
450 ;; | |
451 ;; "*cursorColor: foo" is equivalent to setting the background of the | |
452 ;; text-cursor face. | |
453 ;; | |
454 (if (and (eq (face-name face) 'text-cursor) | |
455 (or (null locale) (eq locale 'global))) | |
456 (setq bg (or (x-get-resource | |
457 "cursorColor" "CursorColor" 'string locale) bg))) | |
458 ;; #### should issue warnings? I think this should be | |
459 ;; done when the instancing actually happens, but I'm not | |
460 ;; sure how it should actually be dealt with. | |
461 (if fn | |
462 (set-face-font face fn locale nil 'append)) | |
463 ;; Kludge-o-rooni. Set the foreground and background resources for | |
464 ;; X devices only -- otherwise things tend to get all messed up | |
465 ;; if you start up an X frame and then later create a TTY frame. | |
466 (if fg | |
467 (set-face-foreground face fg locale 'x 'append)) | |
468 (if bg | |
469 (set-face-background face bg locale 'x 'append)) | |
470 (if bgp | |
471 (set-face-background-pixmap face bgp locale nil 'append)) | |
472 (if ulp | |
473 (set-face-underline-p face ulp locale nil 'append)) | |
474 (if stp | |
475 (set-face-strikethru-p face stp locale nil 'append)) | |
476 (if hp | |
477 (set-face-highlight-p face hp locale nil 'append)) | |
478 (if dp | |
479 (set-face-dim-p face dp locale nil 'append)) | |
480 (if bp | |
481 (set-face-blinking-p face bp locale nil 'append)) | |
482 (if rp | |
483 (set-face-reverse-p face rp locale nil 'append)) | |
484 )) | |
485 | |
486 ;;; x-init-global-faces is responsible for ensuring that the | |
487 ;;; default face has some reasonable fallbacks if nothing else is | |
488 ;;; specified. | |
489 ;;; | |
490 (defun x-init-global-faces () | |
491 (or (face-font 'default 'global) | |
492 (set-face-font 'default | |
493 "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*") | |
494 'global) | |
495 (or (face-foreground 'default 'global) | |
496 (set-face-foreground 'default "black" 'global 'x)) | |
497 (or (face-background 'default 'global) | |
498 (set-face-background 'default "white" 'global 'x))) | |
499 | |
500 ;;; x-init-device-faces is responsible for initializing default | |
501 ;;; values for faces on a newly created device. | |
502 ;;; | |
503 (defun x-init-device-faces (device) | |
504 ;; | |
505 ;; If the "default" face didn't have a font specified, try to pick one. | |
506 ;; | |
507 (or | |
508 (face-font-instance 'default device) | |
509 ;; | |
510 ;; No font specified in the resource database; try to cope. | |
511 ;; | |
512 ;; At first I wanted to do this by just putting a font-spec in the | |
513 ;; fallback resources passed to XtAppInitialize(), but that fails | |
514 ;; if there is an Emacs app-defaults file which doesn't specify a | |
515 ;; font: apparently the fallback resources are not consulted when | |
516 ;; there is an app-defaults file, which seems pretty bogus to me. | |
517 ;; | |
518 ;; We should also probably try "*xtDefaultFont", but I think that it | |
519 ;; might be legal to specify that as "xtDefaultFont:", that is, at | |
520 ;; top level, instead of "*xtDefaultFont:", that is, applicable to | |
521 ;; every application. `x-get-resource' can't handle that right now. | |
522 ;; Anyway, xtDefaultFont is probably variable-width. | |
523 ;; | |
524 ;; Some who have LucidaTypewriter think it's a better font than Courier, | |
525 ;; but it has the bug that there are no italic and bold italic versions. | |
526 ;; We could hair this code up to try and mix-and-match fonts to get a | |
527 ;; full complement, but really, why bother. It's just a default. | |
528 ;; | |
529 (let (new-x-font) | |
530 (setq new-x-font (or | |
531 ;; | |
532 ;; We default to looking for iso8859 fonts. Using a wildcard for the | |
533 ;; encoding would be bad, because that can cause English speakers to get | |
534 ;; Kanji fonts by default. It is safe to assume that people using a | |
535 ;; language other than English have both set $LANG, and have specified | |
536 ;; their `font' and `fontList' resources. In any event, it's better to | |
537 ;; err on the side of the English speaker in this case because they are | |
538 ;; much less likely to have encountered this problem, and are thus less | |
539 ;; likely to know what to do about it. | |
540 | |
541 ;; Try for Courier. Almost everyone has that. (Does anyone not?) | |
542 (make-font-instance | |
543 "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*" device t) | |
544 (make-font-instance | |
545 "-*-courier-*-r-*-*-*-120-*-*-*-*-iso8859-*" device t) | |
546 ;; Next try for any "medium" charcell or monospaced iso8859 font. | |
547 (make-font-instance "-*-*-medium-r-*-*-*-120-*-*-m-*-iso8859-*" device t) | |
548 (make-font-instance "-*-*-medium-r-*-*-*-120-*-*-c-*-iso8859-*" device t) | |
549 ;; Next try for any charcell or monospaced iso8859 font. | |
550 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-m-*-iso8859-*" device t) | |
551 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-c-*-iso8859-*" device t) | |
552 ;; Ok, let's at least try to stay in 8859... | |
553 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-*-*-iso8859-*" device t) | |
554 ;; Boy, we sure are losing now. Try the above, but in any encoding. | |
555 (make-font-instance "-*-*-medium-r-*-*-*-120-*-*-m-*-*-*" device t) | |
556 (make-font-instance "-*-*-medium-r-*-*-*-120-*-*-c-*-*-*" device t) | |
557 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-m-*-*-*" device t) | |
558 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-c-*-*-*" device t) | |
559 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-*-*-*-*" device t) | |
560 ;; Hello? Please? | |
561 (make-font-instance "-*-*-*-*-*-*-*-120-*-*-*-*-*-*" device t) | |
562 (make-font-instance "*" device t) | |
563 ;; if we get to here we're screwed, and faces.c will fatal()... | |
564 )) | |
565 (if (not (face-font 'default 'global)) | |
566 (set-face-font 'default new-x-font) | |
567 (set-face-font 'default new-x-font device)))) | |
568 ;; | |
569 ;; If the "default" face didn't have both colors specified, then pick | |
570 ;; some, taking into account whether one of the colors was specified. | |
571 ;; | |
572 (let ((fg (face-foreground-instance 'default device)) | |
573 (bg (face-background-instance 'default device))) | |
574 (if (not (and fg bg)) | |
575 (if (or (and fg (equal (downcase (color-instance-name fg)) "white")) | |
576 (and bg (equal (downcase (color-instance-name bg)) "black"))) | |
577 (progn | |
578 (or fg (set-face-foreground 'default "white" device)) | |
579 (or bg (set-face-background 'default "black" device))) | |
580 (or fg (set-face-foreground 'default "black" device)) | |
581 (or bg (set-face-background 'default "white" device))))) | |
582 | |
583 ;; Don't look at reverseVideo now or initialize the modeline. This | |
584 ;; is done on a per-frame basis at the appropriate time. | |
585 | |
586 ;; | |
587 ;; Now let's try to pick some reasonable defaults for a few other faces. | |
588 ;; This kind of stuff should normally go on the create-frame-hook, but | |
589 ;; this way we won't be in danger of the user screwing things up by not | |
590 ;; adding hooks in a safe way. | |
591 ;; | |
592 (x-init-pointer-shape device) ; from x-mouse.el | |
593 ) | |
594 | |
595 ;;; This is called from `init-frame-faces', which is called from | |
596 ;;; init_frame_faces() which is called from Fmake_frame(), to perform | |
597 ;;; any device-specific initialization. | |
598 ;;; | |
599 (defun x-init-frame-faces (frame) | |
600 ;; | |
601 ;; The faces already got initialized (by init-frame-faces) from | |
602 ;; the resource database or global, non-frame faces. The default, | |
603 ;; bold, bold-italic, and italic faces (plus various other random faces) | |
604 ;; got set up then. But modeline didn't so that reverseVideo can be | |
605 ;; frame-specific. | |
606 ;; | |
607 | |
608 ;; | |
609 ;; If reverseVideo was specified, swap the foreground and background | |
610 ;; of the default and modeline faces. | |
611 ;; | |
612 (cond ((car (x-get-resource "reverseVideo" "ReverseVideo" 'boolean frame)) | |
613 ;; First make sure the modeline has fg and bg, inherited from the | |
614 ;; current default face - for the case where only one is specified, | |
615 ;; so that invert-face doesn't do something weird. | |
616 (or (face-foreground 'modeline frame) | |
617 (set-face-foreground 'modeline | |
618 (face-foreground-instance 'default frame) | |
619 frame)) | |
620 (or (face-background 'modeline frame) | |
621 (set-face-background 'modeline | |
622 (face-background-instance 'default frame) | |
623 frame)) | |
624 ;; Now invert both of them. If they end up looking the same, | |
625 ;; make-frame-initial-faces will invert the modeline again later. | |
626 (invert-face 'default frame) | |
627 (invert-face 'modeline frame) | |
628 ))) |