annotate lisp/x11/x-faces.el @ 172:a38aed19690b

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