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