annotate lisp/x11/x-faces.el @ 106:8ff55ebd4be9 r20-1b5

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