1 ;;; x-faces.el --- X-specific face frobnication, aka black magic.
3 ;; Copyright (C) 1992-4, 1997 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995, 1996 Ben Wing.
6 ;; Author: Jamie Zawinski <jwz@jwz.org>
7 ;; Maintainer: XEmacs Development Team
8 ;; Keywords: extensions, internal, dumped
10 ;; This file is part of XEmacs.
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)
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.
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
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
27 ;;; Synched up with: Not synched.
31 ;; This file is dumped with XEmacs (when X support is compiled in).
33 ;; Modified by: Chuck Thompson
34 ;; Modified by: Ben Wing
35 ;; Modified by: Martin Buchholz
37 ;; This file does the magic to parse X font names, and make sure that the
38 ;; default and modeline attributes of new frames are specified enough.
40 ;; The resource-manager syntax for faces is
42 ;; Emacs.bold.attributeFont: font-name
43 ;; Emacs.bold.attributeForeground: fg
44 ;; Emacs.bold.attributeBackground: bg
45 ;; Emacs.bold.attributeBackgroundPixmap: file
46 ;; Emacs.bold.attributeUnderline: true/false
47 ;; Emacs.bold.attributeStrikethru: true/false
49 ;; You can specify the properties of a face on a per-frame basis. For
50 ;; example, to have the "isearch" face use a red foreground on frames
51 ;; named "emacs" (the default) but use a blue foreground on frames that
52 ;; you create named "debugger", you could do
54 ;; Emacs*emacs.isearch.attributeForeground: red
55 ;; Emacs*debugger.isearch.attributeForeground: blue
57 ;; Generally things that make faces won't set any of the face attributes if
58 ;; you have already given them values via the resource database. You can
59 ;; also change this stuff from your .emacs file, by using the functions
60 ;; set-face-foreground, set-face-font, etc. See the code in this file, and
65 (defconst x-font-regexp nil)
66 (defconst x-font-regexp-head nil)
67 (defconst x-font-regexp-head-2 nil)
68 (defconst x-font-regexp-weight nil)
69 (defconst x-font-regexp-slant nil)
70 (defconst x-font-regexp-pixel nil)
71 (defconst x-font-regexp-point nil)
72 (defconst x-font-regexp-foundry-and-family nil)
73 (defconst x-font-regexp-registry-and-encoding nil)
74 (defconst x-font-regexp-spacing nil)
76 ;;; Regexps matching font names in "Host Portable Character Representation."
81 (weight "\\(bold\\|demibold\\|medium\\|black\\)") ; 1
82 ; (weight\? "\\(\\*\\|bold\\|demibold\\|medium\\|\\)") ; 1
83 (weight\? "\\([^-]*\\)") ; 1
84 (slant "\\([ior]\\)") ; 2
85 ; (slant\? "\\([ior?*]?\\)") ; 2
86 (slant\? "\\([^-]?\\)") ; 2
87 ; (swidth "\\(\\*\\|normal\\|semicondensed\\|\\)") ; 3
88 (swidth "\\([^-]*\\)") ; 3
89 ; (adstyle "\\(\\*\\|sans\\|\\)") ; 4
90 (adstyle "\\([^-]*\\)") ; 4
91 (pixelsize "\\(\\*\\|[0-9]+\\)") ; 5
92 (pointsize "\\(\\*\\|0\\|[0-9][0-9]+\\)") ; 6
93 ; (resx "\\(\\*\\|[0-9][0-9]+\\)") ; 7
94 ; (resy "\\(\\*\\|[0-9][0-9]+\\)") ; 8
95 (resx "\\([*0]\\|[0-9][0-9]+\\)") ; 7
96 (resy "\\([*0]\\|[0-9][0-9]+\\)") ; 8
98 (avgwidth "\\(\\*\\|[0-9]+\\)") ; 9
99 (registry "[^-]*") ; some fonts have omitted registries
100 ; (encoding ".+") ; note that encoding may contain "-"...
101 (encoding "[^-]+") ; false!
104 (concat "\\`\\*?[-?*]"
105 foundry - family - weight\? - slant\? - swidth - adstyle -
106 pixelsize - pointsize - resx - resy - spacing - avgwidth -
107 registry - encoding "\\'"
109 (setq x-font-regexp-head
110 (concat "\\`[-?*]" foundry - family - weight\? - slant\?
111 "\\([-*?]\\|\\'\\)"))
112 (setq x-font-regexp-head-2
113 (concat "\\`[-?*]" foundry - family - weight\? - slant\?
114 - swidth - adstyle - pixelsize - pointsize
115 "\\([-*?]\\|\\'\\)"))
116 (setq x-font-regexp-slant (concat - slant -))
117 (setq x-font-regexp-weight (concat - weight -))
118 ;; if we can't match any of the more specific regexps (unfortunate) then
119 ;; look for digits; assume 2+ digits is 10ths of points, and 1-2 digits
120 ;; is pixels. Bogus as hell.
121 (setq x-font-regexp-pixel "[-?*]\\([0-9][0-9]?\\)[-?*]")
122 (setq x-font-regexp-point "[-?*]\\([0-9][0-9]+\\)[-?*]")
123 ;; the following two are used by x-font-menu.el.
124 (setq x-font-regexp-foundry-and-family
125 (concat "\\`[-?*]" foundry - "\\(" family "\\)" -))
126 (setq x-font-regexp-registry-and-encoding
127 (concat - "\\(" registry "\\)" - "\\(" encoding "\\)\\'"))
128 (setq x-font-regexp-spacing
129 (concat - "\\(" spacing "\\)" - avgwidth
130 - registry - encoding "\\'"))
133 ;; A "loser font" is something like "8x13" -> "8x13bold".
134 ;; These are supported only through extreme generosity.
135 (defconst x-loser-font-regexp "\\`[0-9]+x[0-9]+\\'")
137 (defun x-frob-font-weight (font which)
138 (if (font-instance-p font) (setq font (font-instance-name font)))
139 (cond ((null font) nil)
140 ((or (string-match x-font-regexp font)
141 (string-match x-font-regexp-head font)
142 (string-match x-font-regexp-weight font))
143 (concat (substring font 0 (match-beginning 1)) which
144 (substring font (match-end 1))))
145 ((string-match x-loser-font-regexp font)
149 (defun x-frob-font-slant (font which)
150 (if (font-instance-p font) (setq font (font-instance-name font)))
151 (cond ((null font) nil)
152 ((or (string-match x-font-regexp font)
153 (string-match x-font-regexp-head font))
154 (concat (substring font 0 (match-beginning 2)) which
155 (substring font (match-end 2))))
156 ((string-match x-font-regexp-slant font)
157 (concat (substring font 0 (match-beginning 1)) which
158 (substring font (match-end 1))))
159 ((string-match x-loser-font-regexp font)
163 (defun x-make-font-bold (font &optional device)
164 "Given an X font specification, this attempts to make a `bold' font.
165 If it fails, it returns nil."
166 ;; Certain Type1 fonts know "bold" as "black"...
167 (or (try-font-name (x-frob-font-weight font "bold") device)
168 (try-font-name (x-frob-font-weight font "black") device)
169 (try-font-name (x-frob-font-weight font "demibold") device)))
171 (defun x-make-font-unbold (font &optional device)
172 "Given an X font specification, this attempts to make a non-bold font.
173 If it fails, it returns nil."
174 (try-font-name (x-frob-font-weight font "medium") device))
176 (defcustom try-oblique-before-italic-fonts nil
177 "*If nil, italic fonts are searched before oblique fonts.
178 If non-nil, oblique fonts are tried before italic fonts. This is mostly
179 applicable to adobe-courier fonts"
182 (define-obsolete-variable-alias '*try-oblique-before-italic-fonts*
183 'try-oblique-before-italic-fonts)
185 (defun x-make-font-italic (font &optional device)
186 "Given an X font specification, this attempts to make an `italic' font.
187 If it fails, it returns nil."
188 (if try-oblique-before-italic-fonts
189 (or (try-font-name (x-frob-font-slant font "o") device)
190 (try-font-name (x-frob-font-slant font "i") device))
191 (or (try-font-name (x-frob-font-slant font "i") device)
192 (try-font-name (x-frob-font-slant font "o") device))))
194 (defun x-make-font-unitalic (font &optional device)
195 "Given an X font specification, this attempts to make a non-italic font.
196 If it fails, it returns nil."
197 (try-font-name (x-frob-font-slant font "r") device))
199 (defun x-make-font-bold-italic (font &optional device)
200 "Given an X font specification, this attempts to make a `bold-italic' font.
201 If it fails, it returns nil."
202 ;; This is haired up to avoid loading the "intermediate" fonts.
203 (if try-oblique-before-italic-fonts
205 (x-frob-font-slant (x-frob-font-weight font "bold") "o") device)
207 (x-frob-font-slant (x-frob-font-weight font "bold") "i") device)
209 (x-frob-font-slant (x-frob-font-weight font "black") "o") device)
211 (x-frob-font-slant (x-frob-font-weight font "black") "i") device)
213 (x-frob-font-slant (x-frob-font-weight font "demibold") "o") device)
215 (x-frob-font-slant (x-frob-font-weight font "demibold") "i") device))
217 (x-frob-font-slant (x-frob-font-weight font "bold") "i") device)
219 (x-frob-font-slant (x-frob-font-weight font "bold") "o") device)
221 (x-frob-font-slant (x-frob-font-weight font "black") "i") device)
223 (x-frob-font-slant (x-frob-font-weight font "black") "o") device)
225 (x-frob-font-slant (x-frob-font-weight font "demibold") "i") device)
227 (x-frob-font-slant (x-frob-font-weight font "demibold") "o") device))))
229 (defun x-font-size (font)
230 "Return the nominal size of the given font.
231 This is done by parsing its name, so it's likely to lose.
232 X fonts can be specified (by the user) in either pixels or 10ths of points,
233 and this returns the first one it finds, so you have to decide which units
234 the returned value is measured in yourself..."
235 (if (font-instance-p font) (setq font (font-instance-name font)))
236 (cond ((or (string-match x-font-regexp font)
237 (string-match x-font-regexp-head-2 font))
238 (string-to-int (substring font (match-beginning 6) (match-end 6))))
239 ((or (string-match x-font-regexp-pixel font)
240 (string-match x-font-regexp-point font))
241 (string-to-int (substring font (match-beginning 1) (match-end 1))))
244 ;; Given a font name, this function returns a list describing all fonts
245 ;; of all sizes that otherwise match the given font spec. Each element
246 ;; in the list is a list of three items: the pixel size of the font,
247 ;; the point size (in 1/10ths of a point) of the font, and the fully-
248 ;; qualified font name. The first two values may be zero; this
249 ;; refers to a scalable font.
251 (defun x-available-font-sizes (font device)
252 (if (font-instance-p font) (setq font (font-instance-name font)))
253 (cond ((string-match x-font-regexp font)
254 ;; turn pixelsize, pointsize, and avgwidth into wildcards
256 (concat (substring font 0 (match-beginning 5)) "*"
257 (substring font (match-end 5) (match-beginning 6)) "*"
258 (substring font (match-end 6) (match-beginning 9)) "*"
259 (substring font (match-end 9) (match-end 0)))))
260 ((string-match x-font-regexp-head-2 font)
261 ;; turn pixelsize and pointsize into wildcards
263 (concat (substring font 0 (match-beginning 5)) "*"
264 (substring font (match-end 5) (match-beginning 6)) "*"
265 (substring font (match-end 6) (match-end 0)))))
266 ((string-match "[-?*]\\([0-9]+\\)[-?*]" font)
267 ;; Turn the first integer we match into a wildcard.
268 ;; This is pretty dubious...
270 (concat (substring font 0 (match-beginning 1)) "*"
271 (substring font (match-end 1) (match-end 0))))))
276 (and (string-match x-font-regexp name)
278 (string-to-int (substring name (match-beginning 5)
280 (string-to-int (substring name (match-beginning 6)
283 (list-fonts font device)))
284 (function (lambda (x y) (if (= (nth 1 x) (nth 1 y))
285 (< (nth 0 x) (nth 0 y))
286 (< (nth 1 x) (nth 1 y)))))))
288 ;; Given a font name, this attempts to construct a valid font name for
289 ;; DEVICE whose size is the next smaller (if UP-P is nil) or larger
290 ;; (if UP-P is t) size and whose other characteristics are the same
291 ;; as the given font.
293 (defun x-frob-font-size (font up-p device)
294 (if (stringp font) (setq font (make-font-instance font device)))
295 (if (font-instance-p font) (setq font (font-instance-truename font)))
296 (let ((available (and font
297 (x-available-font-sizes font device))))
299 ((null available) nil)
300 ((or (= 0 (nth 0 (car available)))
301 (= 0 (nth 1 (car available))))
302 ;; R5 scalable fonts: change size by 1 point.
303 ;; If they're scalable the first font will have pixel or point = 0.
304 ;; Sometimes one is 0 and the other isn't (if it's a bitmap font that
305 ;; can be scaled), sometimes both are (if it's a true outline font).
306 (let ((name (nth 2 (car available)))
308 (or (string-match x-font-regexp font) (error "can't parse %S" font))
309 (setq old-size (string-to-int
310 (substring font (match-beginning 6) (match-end 6))))
311 (or (> old-size 0) (error "font truename has 0 pointsize?"))
312 (or (string-match x-font-regexp name) (error "can't parse %S" name))
313 ;; turn pixelsize into a wildcard, and make pointsize be +/- 10,
314 ;; which is +/- 1 point. All other fields stay the same as they
315 ;; were in the "template" font returned by x-available-font-sizes.
317 ;; #### But this might return the same font: for example, if the
318 ;; truename of "-*-courier-medium-r-normal--*-230-75-75-m-0-*"
319 ;; is "...-240-..." (instead of 230) then this loses, because
320 ;; the 230 that was passed in as an arg got turned into 240
321 ;; by the call to font-instance-truename; then we decrement that
322 ;; by 10 and return the result which is the same. I think the
323 ;; way to fix this is to make this be a loop that keeps trying
324 ;; progressively larger pointsize deltas until it finds one
325 ;; whose truename differs. Have to be careful to avoid infinite
326 ;; loops at the upper end...
328 (concat (substring name 0 (match-beginning 5)) "*"
329 (substring name (match-end 5) (match-beginning 6))
330 (int-to-string (+ old-size (if up-p 10 -10)))
331 (substring name (match-end 6) (match-end 0)))))
333 ;; non-scalable fonts: take the next available size.
334 (let ((rest available)
337 (setq font (downcase font))
339 (cond ((and (not up-p) (equal font (downcase (nth 2 (car rest)))))
342 ((and up-p (equal font (and last (downcase (nth 2 last)))))
343 (setq result (car rest)
345 (setq last (car rest))
346 (setq rest (cdr rest)))
349 (defun x-find-smaller-font (font &optional device)
350 "Load a new, slightly smaller version of the given font (or font name).
351 Returns the font if it succeeds, nil otherwise.
352 If scalable fonts are available, this returns a font which is 1 point smaller.
353 Otherwise, it returns the next smaller version of this font that is defined."
354 (x-frob-font-size font nil device))
356 (defun x-find-larger-font (font &optional device)
357 "Load a new, slightly larger version of the given font (or font name).
358 Returns the font if it succeeds, nil otherwise.
359 If scalable fonts are available, this returns a font which is 1 point larger.
360 Otherwise, it returns the next larger version of this font that is defined."
361 (x-frob-font-size font t device))
363 (defalias 'x-make-face-bold 'make-face-bold)
364 (defalias 'x-make-face-italic 'make-face-italic)
365 (defalias 'x-make-face-bold-italic 'make-face-bold-italic)
366 (defalias 'x-make-face-unbold 'make-face-unbold)
367 (defalias 'x-make-face-unitalic 'make-face-unitalic)
369 (make-obsolete 'x-make-face-bold 'make-face-bold)
370 (make-obsolete 'x-make-face-italic 'make-face-italic)
371 (make-obsolete 'x-make-face-bold-italic 'make-face-bold-italic)
372 (make-obsolete 'x-make-face-unbold 'make-face-unbold)
373 (make-obsolete 'x-make-face-unitalic 'make-face-unitalic)
376 ;;; internal routines
378 ;;; x-init-face-from-resources is responsible for initializing a
379 ;;; newly-created face from the resource database.
381 ;;; When a new frame is created, it is called from `x-init-frame-faces'
382 ;;; called from `init-frame-faces' called from init_frame_faces()
383 ;;; from Fmake_frame(). In this case it is called once for each existing
384 ;;; face, with the newly-created frame as the argument. It then initializes
385 ;;; the newly-created faces on that frame.
387 ;;; It's also called from `init-device-faces' and
388 ;;; `init-global-faces'.
390 ;;; This had better not signal an error. The frame is in an intermediate
391 ;;; state where signalling an error or entering the debugger would likely
392 ;;; result in a crash.
394 (defun x-init-face-from-resources (face &optional locale set-anyway)
397 ;; These are things like "attributeForeground" instead of simply
398 ;; "foreground" because people tend to do things like "*foreground",
399 ;; which would cause all faces to be fully qualified, making faces
400 ;; inherit attributes in a non-useful way. So we've made them slightly
401 ;; less obvious to specify in order to make them work correctly in
402 ;; more random environments.
404 ;; I think these should be called "face.faceForeground" instead of
405 ;; "face.attributeForeground", but they're the way they are for
406 ;; hysterical reasons. (jwz)
408 (let* ((append (if set-anyway nil 'append))
409 ;; Some faces are initialized before XEmacs is dumped.
410 ;; In order for the X resources to be able to override
411 ;; those settings, such initialization always uses the
412 ;; `default' tag. We remove all specifier specs
413 ;; containing the `default' tag in the locale before
416 ;; The tag order matters here. The spec removal
417 ;; function uses the list cdrs. We want to remove (x
418 ;; default) and (default) specs, not (default x) and (x)
420 (x-tag-set '(x default))
421 (tty-tag-set '(tty default))
423 (face-sym (face-name face))
424 (name (symbol-name face-sym))
425 (fn (x-get-resource-and-maybe-bogosity-check
426 (concat name ".attributeFont")
429 (fg (x-get-resource-and-maybe-bogosity-check
430 (concat name ".attributeForeground")
431 "Face.AttributeForeground"
433 (bg (x-get-resource-and-maybe-bogosity-check
434 (concat name ".attributeBackground")
435 "Face.AttributeBackground"
437 (bgp (x-get-resource-and-maybe-bogosity-check
438 (concat name ".attributeBackgroundPixmap")
439 "Face.AttributeBackgroundPixmap"
441 (ulp (x-get-resource-and-maybe-bogosity-check
442 (concat name ".attributeUnderline")
443 "Face.AttributeUnderline"
445 (stp (x-get-resource-and-maybe-bogosity-check
446 (concat name ".attributeStrikethru")
447 "Face.AttributeStrikethru"
449 ;; we still resource for these TTY-only resources so that
450 ;; you can specify resources for TTY frames/devices. This is
451 ;; useful when you start up your XEmacs on an X display and later
452 ;; open some TTY frames.
453 (hp (x-get-resource-and-maybe-bogosity-check
454 (concat name ".attributeHighlight")
455 "Face.AttributeHighlight"
457 (dp (x-get-resource-and-maybe-bogosity-check
458 (concat name ".attributeDim")
461 (bp (x-get-resource-and-maybe-bogosity-check
462 (concat name ".attributeBlinking")
463 "Face.AttributeBlinking"
465 (rp (x-get-resource-and-maybe-bogosity-check
466 (concat name ".attributeReverse")
467 "Face.AttributeReverse"
471 (cond ((framep locale)
472 (setq device-class (device-class (frame-device locale))))
474 (setq device-class (device-class locale))))
477 (setq tag-set (cons device-class tag-set)
478 x-tag-set (cons device-class x-tag-set)
479 tty-tag-set (cons device-class tty-tag-set)))
482 ;; If this is the default face, then any unspecified properties should
483 ;; be defaulted from the global properties. Can't do this for
484 ;; frames or devices because then, common resource specs like
485 ;; "*Foreground: black" will have unwanted effects.
487 (if (and (or (eq (face-name face) 'default)
488 (eq (face-name face) 'gui-element))
489 (or (null locale) (eq locale 'global)))
491 (or fn (setq fn (x-get-resource
492 "font" "Font" 'string locale nil 'warn)))
493 (or fg (setq fg (x-get-resource
494 "foreground" "Foreground" 'string locale nil
496 (or bg (setq bg (x-get-resource
497 "background" "Background" 'string locale nil
500 ;; "*cursorColor: foo" is equivalent to setting the background of the
503 (if (and (eq (face-name face) 'text-cursor)
504 (or (null locale) (eq locale 'global)))
505 (setq bg (or (x-get-resource
506 "cursorColor" "CursorColor" 'string locale nil 'warn)
508 ;; #### should issue warnings? I think this should be
509 ;; done when the instancing actually happens, but I'm not
510 ;; sure how it should actually be dealt with.
513 ;; Always use the x-tag-set to remove specs, since we don't
514 ;; know whether the predumped face was initialized with an
516 (remove-specifier-specs-matching-tag-set-cdrs (face-font face)
519 ;; If there's no device class then we're initializing
520 ;; globally. This means we should override global
521 ;; defaults for all X device classes.
522 (remove-specifier (face-font face) locale x-tag-set nil))
523 (set-face-font face fn locale 'x append))
524 ;; Kludge-o-rooni. Set the foreground and background resources for
525 ;; X devices only -- otherwise things tend to get all messed up
526 ;; if you start up an X frame and then later create a TTY frame.
529 (remove-specifier-specs-matching-tag-set-cdrs (face-foreground face)
532 (remove-specifier (face-foreground face) locale x-tag-set nil))
533 (set-face-foreground face fg locale 'x append))
536 (remove-specifier-specs-matching-tag-set-cdrs (face-background face)
539 (remove-specifier (face-background face) locale x-tag-set nil))
540 (set-face-background face bg locale 'x append))
543 (remove-specifier-specs-matching-tag-set-cdrs (face-background-pixmap
547 (remove-specifier (face-background-pixmap face) locale x-tag-set nil))
548 (set-face-background-pixmap face bgp locale nil append))
551 (remove-specifier-specs-matching-tag-set-cdrs (face-property
555 (remove-specifier (face-property face 'underline) locale
557 (set-face-underline-p face ulp locale nil append))
560 (remove-specifier-specs-matching-tag-set-cdrs (face-property
564 (remove-specifier (face-property face 'strikethru)
565 locale tty-tag-set nil))
566 (set-face-strikethru-p face stp locale nil append))
569 (remove-specifier-specs-matching-tag-set-cdrs (face-property
573 (remove-specifier (face-property face 'highlight)
574 locale tty-tag-set nil))
575 (set-face-highlight-p face hp locale nil append))
578 (remove-specifier-specs-matching-tag-set-cdrs (face-property
582 (remove-specifier (face-property face 'dim) locale tty-tag-set nil))
583 (set-face-dim-p face dp locale nil append))
586 (remove-specifier-specs-matching-tag-set-cdrs (face-property
590 (remove-specifier (face-property face 'blinking) locale
592 (set-face-blinking-p face bp locale nil append))
595 (remove-specifier-specs-matching-tag-set-cdrs (face-property
599 (remove-specifier (face-property face 'reverse) locale
601 (set-face-reverse-p face rp locale nil append))
604 ;; GNU Emacs compatibility. (move to obsolete.el?)
605 (defalias 'make-face-x-resource-internal 'x-init-face-from-resources)
607 (defun remove-specifier-specs-matching-tag-set-cdrs (specifier locale tag-set)
609 (remove-specifier specifier locale tag-set t)
610 (setq tag-set (cdr tag-set))))
612 ;;; x-init-global-faces is responsible for ensuring that the
613 ;;; default face has some reasonable fallbacks if nothing else is
616 (defun x-init-global-faces ()
617 (or (face-font 'default 'global)
618 (set-face-font 'default
619 "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*"
620 'global '(x default)))
621 (or (face-foreground 'default 'global)
622 (set-face-foreground 'default "black" 'global '(x default)))
623 (or (face-background 'default 'global)
624 (set-face-background 'default "gray80" 'global '(x default))))
626 ;;; x-init-device-faces is responsible for initializing default
627 ;;; values for faces on a newly created device.
629 (defun x-init-device-faces (device)
631 ;; If the "default" face didn't have a font specified, try to pick one.
634 (face-font-instance 'default device)
636 ;; No font specified in the resource database; try to cope.
638 ;; At first I wanted to do this by just putting a font-spec in the
639 ;; fallback resources passed to XtAppInitialize(), but that fails
640 ;; if there is an Emacs app-defaults file which doesn't specify a
641 ;; font: apparently the fallback resources are not consulted when
642 ;; there is an app-defaults file, which seems pretty bogus to me.
644 ;; We should also probably try "*xtDefaultFont", but I think that it
645 ;; might be legal to specify that as "xtDefaultFont:", that is, at
646 ;; top level, instead of "*xtDefaultFont:", that is, applicable to
647 ;; every application. `x-get-resource' can't handle that right now.
648 ;; Anyway, xtDefaultFont is probably variable-width.
650 ;; Some who have LucidaTypewriter think it's a better font than Courier,
651 ;; but it has the bug that there are no italic and bold italic versions.
652 ;; We could hair this code up to try and mix-and-match fonts to get a
653 ;; full complement, but really, why bother. It's just a default.
658 ;; We default to looking for iso8859 fonts. Using a wildcard for the
659 ;; encoding would be bad, because that can cause English speakers to get
660 ;; Kanji fonts by default. It is safe to assume that people using a
661 ;; language other than English have both set $LANG, and have specified
662 ;; their `font' and `fontList' resources. In any event, it's better to
663 ;; err on the side of the English speaker in this case because they are
664 ;; much less likely to have encountered this problem, and are thus less
665 ;; likely to know what to do about it.
667 ;; Try for Courier. Almost everyone has that. (Does anyone not?)
669 "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*" device t)
671 "-*-courier-*-r-*-*-*-120-*-*-*-*-iso8859-*" device t)
672 ;; Next try for any "medium" charcell or monospaced iso8859 font.
673 (make-font-instance "-*-*-medium-r-*-*-*-120-*-*-m-*-iso8859-*" device t)
674 (make-font-instance "-*-*-medium-r-*-*-*-120-*-*-c-*-iso8859-*" device t)
675 ;; Next try for any charcell or monospaced iso8859 font.
676 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-m-*-iso8859-*" device t)
677 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-c-*-iso8859-*" device t)
678 ;; Ok, let's at least try to stay in 8859...
679 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-*-*-iso8859-*" device t)
680 ;; Boy, we sure are losing now. Try the above, but in any encoding.
681 (make-font-instance "-*-*-medium-r-*-*-*-120-*-*-m-*-*-*" device t)
682 (make-font-instance "-*-*-medium-r-*-*-*-120-*-*-c-*-*-*" device t)
683 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-m-*-*-*" device t)
684 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-c-*-*-*" device t)
685 (make-font-instance "-*-*-*-r-*-*-*-120-*-*-*-*-*-*" device t)
687 (make-font-instance "-*-*-*-*-*-*-*-120-*-*-*-*-*-*" device t)
688 (make-font-instance "*" device t)
689 ;; if we get to here we're screwed, and faces.c will fatal()...
691 (if (not (face-font 'default 'global))
692 (set-face-font 'default new-x-font)
693 (set-face-font 'default new-x-font device))))
695 ;; If the "default" face didn't have both colors specified, then pick
696 ;; some, taking into account whether one of the colors was specified.
698 (let ((fg (face-foreground-instance 'default device))
699 (bg (face-background-instance 'default device)))
700 (if (not (and fg bg))
701 (if (or (and fg (equal (downcase (color-instance-name fg)) "white"))
702 (and bg (equal (downcase (color-instance-name bg)) "black")))
704 (or fg (set-face-foreground 'default "white" device))
705 (or bg (set-face-background 'default "black" device)))
706 (or fg (set-face-foreground 'default "white" device))
707 (or bg (set-face-background 'default "black" device)))))
709 ;; Don't look at reverseVideo now or initialize the modeline. This
710 ;; is done on a per-frame basis at the appropriate time.
713 ;; Now let's try to pick some reasonable defaults for a few other faces.
714 ;; This kind of stuff should normally go on the create-frame-hook, but
715 ;; this way we won't be in danger of the user screwing things up by not
716 ;; adding hooks in a safe way.
718 (x-init-pointer-shape device) ; from x-mouse.el
721 ;;; This is called from `init-frame-faces', which is called from
722 ;;; init_frame_faces() which is called from Fmake_frame(), to perform
723 ;;; any device-specific initialization.
725 (defun x-init-frame-faces (frame)
727 ;; The faces already got initialized (by init-frame-faces) from
728 ;; the resource database or global, non-frame faces. The default,
729 ;; bold, bold-italic, and italic faces (plus various other random faces)
730 ;; got set up then. But modeline didn't so that reverseVideo can be
735 ;; If reverseVideo was specified, swap the foreground and background
736 ;; of the default and modeline faces.
738 (cond ((car (x-get-resource "reverseVideo" "ReverseVideo" 'boolean frame
740 ;; First make sure the modeline has fg and bg, inherited from the
741 ;; current default face - for the case where only one is specified,
742 ;; so that invert-face doesn't do something weird.
743 (or (face-foreground 'modeline frame)
744 (set-face-foreground 'modeline
745 (face-foreground-instance 'default frame)
747 (or (face-background 'modeline frame)
748 (set-face-background 'modeline
749 (face-background-instance 'default frame)
751 ;; Now invert both of them. If they end up looking the same,
752 ;; make-frame-initial-faces will invert the modeline again later.
753 (invert-face 'default frame)
754 (invert-face 'modeline frame)
757 ;;; x-faces.el ends here