Mercurial > emacs
annotate src/xfaces.c @ 30673:22c794dd4d60
(Fchar_width): Doc fix.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 08 Aug 2000 12:59:56 +0000 |
parents | 7c995a54a0e8 |
children | 75ff6aa32bf0 |
rev | line source |
---|---|
24995 | 1 /* xfaces.c -- "Face" primitives. |
2 Copyright (C) 1993, 1994, 1998, 1999 Free Software Foundation. | |
2342 | 3 |
2336 | 4 This file is part of GNU Emacs. |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
2342 | 8 the Free Software Foundation; either version 2, or (at your option) |
2336 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14090
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14090
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
2336 | 20 |
24995 | 21 /* New face implementation by Gerd Moellmann <gerd@gnu.org>. */ |
22 | |
23 /* Faces. | |
24 | |
25 When using Emacs with X, the display style of characters can be | |
26 changed by defining `faces'. Each face can specify the following | |
27 display attributes: | |
28 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
29 1. Font family name. |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
30 |
24995 | 31 2. Relative proportionate width, aka character set width or set |
32 width (swidth), e.g. `semi-compressed'. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
33 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
34 3. Font height in 1/10pt. |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
35 |
24995 | 36 4. Font weight, e.g. `bold'. |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
37 |
24995 | 38 5. Font slant, e.g. `italic'. |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
39 |
24995 | 40 6. Foreground color. |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
41 |
24995 | 42 7. Background color. |
43 | |
44 8. Whether or not characters should be underlined, and in what color. | |
45 | |
46 9. Whether or not characters should be displayed in inverse video. | |
47 | |
48 10. A background stipple, a bitmap. | |
49 | |
50 11. Whether or not characters should be overlined, and in what color. | |
51 | |
52 12. Whether or not characters should be strike-through, and in what | |
53 color. | |
54 | |
55 13. Whether or not a box should be drawn around characters, the box | |
56 type, and, for simple boxes, in what color. | |
57 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
58 14. Font or fontset pattern, or nil. This is a special attribute. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
59 When this attribyte is specified, the face uses a font opened by |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
60 that pattern as is. In addition, all the other font-related |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
61 attributes (1st thru 5th) are generated from the opened font name. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
62 On the other hand, if one of the other font-related attributes are |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
63 specified, this attribute is set to nil. In that case, the face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
64 doesn't inherit this attribute from the `default' face, and uses a |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
65 font determined by the other attributes (those may be inherited |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
66 from the `default' face). |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
67 |
24995 | 68 Faces are frame-local by nature because Emacs allows to define the |
69 same named face (face names are symbols) differently for different | |
70 frames. Each frame has an alist of face definitions for all named | |
71 faces. The value of a named face in such an alist is a Lisp vector | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
72 with the symbol `face' in slot 0, and a slot for each of the face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
73 attributes mentioned above. |
24995 | 74 |
75 There is also a global face alist `Vface_new_frame_defaults'. Face | |
76 definitions from this list are used to initialize faces of newly | |
77 created frames. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
78 |
24995 | 79 A face doesn't have to specify all attributes. Those not specified |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
80 have a value of `unspecified'. Faces specifying all attributes but |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
81 the 14th are called `fully-specified'. |
24995 | 82 |
83 | |
84 Face merging. | |
85 | |
86 The display style of a given character in the text is determined by | |
87 combining several faces. This process is called `face merging'. | |
88 Any aspect of the display style that isn't specified by overlays or | |
89 text properties is taken from the `default' face. Since it is made | |
90 sure that the default face is always fully-specified, face merging | |
91 always results in a fully-specified face. | |
92 | |
93 | |
94 Face realization. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
95 |
24995 | 96 After all face attributes for a character have been determined by |
97 merging faces of that character, that face is `realized'. The | |
98 realization process maps face attributes to what is physically | |
99 available on the system where Emacs runs. The result is a | |
100 `realized face' in form of a struct face which is stored in the | |
101 face cache of the frame on which it was realized. | |
102 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
103 Face realization is done in the context of the character to display |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
104 because different fonts may be used for different characters. In |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
105 other words, for characters that have different font |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
106 specifications, different realized faces are needed to display |
24995 | 107 them. |
108 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
109 Font specification is done by fontsets. See the comment in |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
110 fontset.c for the details. In the current implementation, all ASCII |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
111 characters share the same font in a fontset. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
112 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
113 Faces are at first realized for ASCII characters, and, at that |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
114 time, assigned a specific realized fontset. Hereafter, we call |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
115 such a face as `ASCII face'. When a face for a multibyte character |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
116 is realized, it inherits (thus shares) a fontset of an ASCII face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
117 that has the same attributes other than font-related ones. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
118 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
119 Thus, all realzied face have a realized fontset. |
24995 | 120 |
121 | |
122 Unibyte text. | |
123 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
124 Unibyte text (i.e. raw 8-bit characters) is displayed with the same |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
125 font as ASCII characters. That is because it is expected that |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
126 unibyte text users specify a font that is suitable both for ASCII |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
127 and raw 8-bit characters. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
128 |
24995 | 129 |
130 Font selection. | |
131 | |
132 Font selection tries to find the best available matching font for a | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
133 given (character, face) combination. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
134 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
135 If the face specifies a fontset name, that fontset determines a |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
136 pattern for fonts of the given character. If the face specifies a |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
137 font name or the other font-related attributes, a fontset is |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
138 realized from the default fontset. In that case, that |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
139 specification determines a pattern for ASCII characters and the |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
140 default fontset determines a pattern for multibyte characters. |
24995 | 141 |
142 Available fonts on the system on which Emacs runs are then matched | |
143 against the font pattern. The result of font selection is the best | |
144 match for the given face attributes in this font list. | |
145 | |
146 Font selection can be influenced by the user. | |
147 | |
148 1. The user can specify the relative importance he gives the face | |
149 attributes width, height, weight, and slant by setting | |
150 face-font-selection-order (faces.el) to a list of face attribute | |
151 names. The default is '(:width :height :weight :slant), and means | |
152 that font selection first tries to find a good match for the font | |
153 width specified by a face, then---within fonts with that | |
154 width---tries to find a best match for the specified font height, | |
155 etc. | |
156 | |
157 2. Setting face-alternative-font-family-alist allows the user to | |
158 specify alternative font families to try if a family specified by a | |
159 face doesn't exist. | |
160 | |
161 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
162 Character compositition. |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
163 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
164 Usually, the realization process is already finished when Emacs |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
165 actually reflects the desired glyph matrix on the screen. However, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
166 on displaying a composition (sequence of characters to be composed |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
167 on the screen), a suitable font for the components of the |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
168 composition is selected and realized while drawing them on the |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
169 screen, i.e. the realization process is delayed but in principle |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
170 the same. |
24995 | 171 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
172 |
24995 | 173 Initialization of basic faces. |
174 | |
175 The faces `default', `modeline' are considered `basic faces'. | |
176 When redisplay happens the first time for a newly created frame, | |
177 basic faces are realized for CHARSET_ASCII. Frame parameters are | |
178 used to fill in unspecified attributes of the default face. */ | |
179 | |
180 /* Define SCALABLE_FONTS to a non-zero value to enable scalable | |
181 font use. Define it to zero to disable scalable font use. | |
182 | |
183 Use of too many or too large scalable fonts can crash XFree86 | |
184 servers. That's why I've put the code dealing with scalable fonts | |
185 in #if's. */ | |
186 | |
187 #define SCALABLE_FONTS 1 | |
2342 | 188 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25890
diff
changeset
|
189 #include <config.h> |
2336 | 190 #include <sys/types.h> |
191 #include <sys/stat.h> | |
192 #include "lisp.h" | |
17047 | 193 #include "charset.h" |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
194 #include "frame.h" |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
195 |
29897
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
196 #ifdef HAVE_WINDOW_SYSTEM |
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
197 #include "fontset.h" |
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
198 #endif |
9572 | 199 #ifdef HAVE_X_WINDOWS |
2336 | 200 #include "xterm.h" |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
201 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
202 #include <Xm/Xm.h> |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
203 #include <Xm/XmStrDefs.h> |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
204 #endif /* USE_MOTIF */ |
9572 | 205 #endif |
24995 | 206 |
9572 | 207 #ifdef MSDOS |
208 #include "dosfns.h" | |
209 #endif | |
24995 | 210 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
211 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
212 #include "w32term.h" |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
213 #include "fontset.h" |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
214 /* Redefine X specifics to W32 equivalents to avoid cluttering the |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
215 code with #ifdef blocks. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
216 #define FRAME_X_DISPLAY_INFO FRAME_W32_DISPLAY_INFO |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
217 #define x_display_info w32_display_info |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
218 #define FRAME_X_FONT_TABLE FRAME_W32_FONT_TABLE |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
219 #define check_x check_w32 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
220 #define x_list_fonts w32_list_fonts |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
221 #define GCGraphicsExposures 0 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
222 /* For historic reasons, FONT_WIDTH refers to average width on W32, |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
223 not maximum as on X. Redefine here. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
224 #define FONT_WIDTH FONT_MAX_WIDTH |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
225 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
226 |
2336 | 227 #include "buffer.h" |
2391 | 228 #include "dispextern.h" |
2438 | 229 #include "blockinput.h" |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
230 #include "window.h" |
8848 | 231 #include "intervals.h" |
2336 | 232 |
9572 | 233 #ifdef HAVE_X_WINDOWS |
24995 | 234 |
235 /* Compensate for a bug in Xos.h on some systems, on which it requires | |
3997
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
236 time.h. On some such systems, Xos.h tries to redefine struct |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
237 timeval and struct timezone if USG is #defined while it is |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
238 #included. */ |
24995 | 239 |
3436
291f28da7ea1
Test XOS_NEEDS_TIME_H, not HPUX, for including time.hj.
Richard M. Stallman <rms@gnu.org>
parents:
3401
diff
changeset
|
240 #ifdef XOS_NEEDS_TIME_H |
3997
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
241 #include <time.h> |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
242 #undef USG |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
243 #include <X11/Xos.h> |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
244 #define USG |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
245 #define __TIMEVAL__ |
24995 | 246 #else /* not XOS_NEEDS_TIME_H */ |
2336 | 247 #include <X11/Xos.h> |
24995 | 248 #endif /* not XOS_NEEDS_TIME_H */ |
249 | |
9572 | 250 #endif /* HAVE_X_WINDOWS */ |
24995 | 251 |
252 #include <stdio.h> | |
253 #include <ctype.h> | |
254 #include "keyboard.h" | |
255 | |
256 #ifndef max | |
257 #define max(A, B) ((A) > (B) ? (A) : (B)) | |
258 #define min(A, B) ((A) < (B) ? (A) : (B)) | |
259 #define abs(X) ((X) < 0 ? -(X) : (X)) | |
260 #endif | |
261 | |
262 /* Non-zero if face attribute ATTR is unspecified. */ | |
263 | |
264 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified) | |
265 | |
266 /* Value is the number of elements of VECTOR. */ | |
267 | |
268 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR)) | |
269 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
270 /* Make a copy of string S on the stack using alloca. Value is a pointer |
24995 | 271 to the copy. */ |
272 | |
273 #define STRDUPA(S) strcpy ((char *) alloca (strlen ((S)) + 1), (S)) | |
274 | |
275 /* Make a copy of the contents of Lisp string S on the stack using | |
276 alloca. Value is a pointer to the copy. */ | |
277 | |
278 #define LSTRDUPA(S) STRDUPA (XSTRING ((S))->data) | |
279 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
280 /* Size of hash table of realized faces in face caches (should be a |
24995 | 281 prime number). */ |
282 | |
283 #define FACE_CACHE_BUCKETS_SIZE 1001 | |
284 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
285 /* A definition of XColor for non-X frames. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
286 #ifndef HAVE_X_WINDOWS |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
287 typedef struct { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
288 unsigned long pixel; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
289 unsigned short red, green, blue; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
290 char flags; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
291 char pad; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
292 } XColor; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
293 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
294 |
24995 | 295 /* Keyword symbols used for face attribute names. */ |
296 | |
297 Lisp_Object QCfamily, QCheight, QCweight, QCslant, QCunderline; | |
298 Lisp_Object QCinverse_video, QCforeground, QCbackground, QCstipple; | |
299 Lisp_Object QCwidth, QCfont, QCbold, QCitalic; | |
300 Lisp_Object QCreverse_video; | |
301 Lisp_Object QCoverline, QCstrike_through, QCbox; | |
302 | |
303 /* Symbols used for attribute values. */ | |
304 | |
305 Lisp_Object Qnormal, Qbold, Qultra_light, Qextra_light, Qlight; | |
306 Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold; | |
307 Lisp_Object Qoblique, Qitalic, Qreverse_oblique, Qreverse_italic; | |
308 Lisp_Object Qultra_condensed, Qextra_condensed, Qcondensed; | |
309 Lisp_Object Qsemi_condensed, Qsemi_expanded, Qexpanded, Qextra_expanded; | |
310 Lisp_Object Qultra_expanded; | |
311 Lisp_Object Qreleased_button, Qpressed_button; | |
312 Lisp_Object QCstyle, QCcolor, QCline_width; | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
313 Lisp_Object Qunspecified; |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
314 |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
315 char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg"; |
24995 | 316 |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
317 /* The name of the function to call when the background of the frame |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
318 has changed, frame_update_face_colors. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
319 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
320 Lisp_Object Qframe_update_face_colors; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
321 |
24995 | 322 /* Names of basic faces. */ |
323 | |
26574
5510d0cc07c3
Don't duplicate Qmode_line definition done elsewhere.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
324 Lisp_Object Qdefault, Qtool_bar, Qregion, Qfringe; |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
325 Lisp_Object Qheader_line, Qscroll_bar, Qcursor, Qborder, Qmouse, Qmenu; |
26574
5510d0cc07c3
Don't duplicate Qmode_line definition done elsewhere.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
326 extern Lisp_Object Qmode_line; |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
327 |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
328 /* The symbol `face-alias'. A symbols having that property is an |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
329 alias for another face. Value of the property is the name of |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
330 the aliased face. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
331 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
332 Lisp_Object Qface_alias; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
333 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
334 /* Names of frame parameters related to faces. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
335 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
336 extern Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
337 extern Lisp_Object Qborder_color, Qcursor_color, Qmouse_color; |
24995 | 338 |
339 /* Default stipple pattern used on monochrome displays. This stipple | |
340 pattern is used on monochrome displays instead of shades of gray | |
341 for a face background color. See `set-face-stipple' for possible | |
342 values for this variable. */ | |
343 | |
344 Lisp_Object Vface_default_stipple; | |
345 | |
346 /* Alist of alternative font families. Each element is of the form | |
347 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded, | |
348 try FAMILY1, then FAMILY2, ... */ | |
349 | |
350 Lisp_Object Vface_alternative_font_family_alist; | |
351 | |
352 /* Allowed scalable fonts. A value of nil means don't allow any | |
353 scalable fonts. A value of t means allow the use of any scalable | |
354 font. Otherwise, value must be a list of regular expressions. A | |
355 font may be scaled if its name matches a regular expression in the | |
356 list. */ | |
357 | |
358 #if SCALABLE_FONTS | |
359 Lisp_Object Vscalable_fonts_allowed; | |
360 #endif | |
361 | |
25270 | 362 /* Maximum number of fonts to consider in font_list. If not an |
363 integer > 0, DEFAULT_FONT_LIST_LIMIT is used instead. */ | |
364 | |
365 Lisp_Object Vfont_list_limit; | |
366 #define DEFAULT_FONT_LIST_LIMIT 100 | |
367 | |
24995 | 368 /* The symbols `foreground-color' and `background-color' which can be |
369 used as part of a `face' property. This is for compatibility with | |
370 Emacs 20.2. */ | |
371 | |
372 Lisp_Object Qforeground_color, Qbackground_color; | |
373 | |
374 /* The symbols `face' and `mouse-face' used as text properties. */ | |
2342 | 375 |
23730
c71c3ac4b80a
(Qmouse_face): Replace definition with extern decl.
Richard M. Stallman <rms@gnu.org>
parents:
21766
diff
changeset
|
376 Lisp_Object Qface; |
24995 | 377 extern Lisp_Object Qmouse_face; |
378 | |
379 /* Error symbol for wrong_type_argument in load_pixmap. */ | |
380 | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
381 Lisp_Object Qbitmap_spec_p; |
2391 | 382 |
24995 | 383 /* Alist of global face definitions. Each element is of the form |
384 (FACE . LFACE) where FACE is a symbol naming a face and LFACE | |
385 is a Lisp vector of face attributes. These faces are used | |
386 to initialize faces for new frames. */ | |
387 | |
388 Lisp_Object Vface_new_frame_defaults; | |
389 | |
390 /* The next ID to assign to Lisp faces. */ | |
391 | |
392 static int next_lface_id; | |
393 | |
394 /* A vector mapping Lisp face Id's to face names. */ | |
395 | |
396 static Lisp_Object *lface_id_to_name; | |
397 static int lface_id_to_name_size; | |
398 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
399 /* tty color-related functions (defined on lisp/term/tty-colors.el). */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
400 Lisp_Object Qtty_color_desc, Qtty_color_by_index; |
24995 | 401 |
402 /* Counter for calls to clear_face_cache. If this counter reaches | |
403 CLEAR_FONT_TABLE_COUNT, and a frame has more than | |
404 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */ | |
405 | |
406 static int clear_font_table_count; | |
407 #define CLEAR_FONT_TABLE_COUNT 100 | |
408 #define CLEAR_FONT_TABLE_NFONTS 10 | |
409 | |
410 /* Non-zero means face attributes have been changed since the last | |
411 redisplay. Used in redisplay_internal. */ | |
412 | |
413 int face_change_count; | |
414 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
415 /* Non-zero means don't display bold text if a face's foreground |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
416 and background colors are the inverse of the default colors of the |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
417 display. This is a kluge to suppress `bold black' foreground text |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
418 which is hard to read on an LCD monitor. */ |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
419 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
420 int tty_suppress_bold_inverse_default_colors_p; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
421 |
24995 | 422 /* The total number of colors currently allocated. */ |
423 | |
424 #if GLYPH_DEBUG | |
425 static int ncolors_allocated; | |
426 static int npixmaps_allocated; | |
427 static int ngcs; | |
428 #endif | |
429 | |
430 | |
2336 | 431 |
24995 | 432 /* Function prototypes. */ |
433 | |
434 struct font_name; | |
435 struct table_entry; | |
436 | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
437 static Lisp_Object resolve_face_name P_ ((Lisp_Object)); |
24995 | 438 static int may_use_scalable_font_p P_ ((struct font_name *, char *)); |
439 static void set_font_frame_param P_ ((Lisp_Object, Lisp_Object)); | |
440 static int better_font_p P_ ((int *, struct font_name *, struct font_name *, | |
441 int)); | |
442 static int first_font_matching P_ ((struct frame *f, char *, | |
443 struct font_name *)); | |
444 static int x_face_list_fonts P_ ((struct frame *, char *, | |
445 struct font_name *, int, int, int)); | |
446 static int font_scalable_p P_ ((struct font_name *)); | |
447 static int get_lface_attributes P_ ((struct frame *, Lisp_Object, Lisp_Object *, int)); | |
448 static int load_pixmap P_ ((struct frame *, Lisp_Object, unsigned *, unsigned *)); | |
449 static unsigned char *xstrlwr P_ ((unsigned char *)); | |
450 static void signal_error P_ ((char *, Lisp_Object)); | |
451 static struct frame *frame_or_selected_frame P_ ((Lisp_Object, int)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
452 static void load_face_font P_ ((struct frame *, struct face *, int)); |
24995 | 453 static void load_face_colors P_ ((struct frame *, struct face *, Lisp_Object *)); |
454 static void free_face_colors P_ ((struct frame *, struct face *)); | |
455 static int face_color_gray_p P_ ((struct frame *, char *)); | |
456 static char *build_font_name P_ ((struct font_name *)); | |
457 static void free_font_names P_ ((struct font_name *, int)); | |
458 static int sorted_font_list P_ ((struct frame *, char *, | |
459 int (*cmpfn) P_ ((const void *, const void *)), | |
460 struct font_name **)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
461 static int font_list P_ ((struct frame *, Lisp_Object, Lisp_Object, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
462 Lisp_Object, struct font_name **)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
463 static int try_font_list P_ ((struct frame *, Lisp_Object *, Lisp_Object, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
464 Lisp_Object, Lisp_Object, struct font_name **)); |
24995 | 465 static int cmp_font_names P_ ((const void *, const void *)); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
466 static struct face *realize_face P_ ((struct face_cache *, Lisp_Object *, int, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
467 struct face *, int)); |
24995 | 468 static struct face *realize_x_face P_ ((struct face_cache *, |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
469 Lisp_Object *, int, struct face *)); |
24995 | 470 static struct face *realize_tty_face P_ ((struct face_cache *, |
471 Lisp_Object *, int)); | |
472 static int realize_basic_faces P_ ((struct frame *)); | |
473 static int realize_default_face P_ ((struct frame *)); | |
474 static void realize_named_face P_ ((struct frame *, Lisp_Object, int)); | |
475 static int lface_fully_specified_p P_ ((Lisp_Object *)); | |
476 static int lface_equal_p P_ ((Lisp_Object *, Lisp_Object *)); | |
477 static unsigned hash_string_case_insensitive P_ ((Lisp_Object)); | |
478 static unsigned lface_hash P_ ((Lisp_Object *)); | |
479 static int lface_same_font_attributes_p P_ ((Lisp_Object *, Lisp_Object *)); | |
480 static struct face_cache *make_face_cache P_ ((struct frame *)); | |
481 static void free_realized_face P_ ((struct frame *, struct face *)); | |
482 static void clear_face_gcs P_ ((struct face_cache *)); | |
483 static void free_face_cache P_ ((struct face_cache *)); | |
484 static int face_numeric_weight P_ ((Lisp_Object)); | |
485 static int face_numeric_slant P_ ((Lisp_Object)); | |
486 static int face_numeric_swidth P_ ((Lisp_Object)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
487 static int face_fontset P_ ((Lisp_Object *)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
488 static char *choose_face_font P_ ((struct frame *, Lisp_Object *, int, int)); |
24995 | 489 static void merge_face_vectors P_ ((Lisp_Object *from, Lisp_Object *)); |
490 static void merge_face_vector_with_property P_ ((struct frame *, Lisp_Object *, | |
491 Lisp_Object)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
492 static int set_lface_from_font_name P_ ((struct frame *, Lisp_Object, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
493 Lisp_Object, int, int)); |
24995 | 494 static Lisp_Object lface_from_face_name P_ ((struct frame *, Lisp_Object, int)); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
495 static struct face *make_realized_face P_ ((Lisp_Object *)); |
24995 | 496 static void free_realized_faces P_ ((struct face_cache *)); |
497 static char *best_matching_font P_ ((struct frame *, Lisp_Object *, | |
498 struct font_name *, int)); | |
499 static void cache_face P_ ((struct face_cache *, struct face *, unsigned)); | |
500 static void uncache_face P_ ((struct face_cache *, struct face *)); | |
501 static int xlfd_numeric_slant P_ ((struct font_name *)); | |
502 static int xlfd_numeric_weight P_ ((struct font_name *)); | |
503 static int xlfd_numeric_swidth P_ ((struct font_name *)); | |
504 static Lisp_Object xlfd_symbolic_slant P_ ((struct font_name *)); | |
505 static Lisp_Object xlfd_symbolic_weight P_ ((struct font_name *)); | |
506 static Lisp_Object xlfd_symbolic_swidth P_ ((struct font_name *)); | |
507 static int xlfd_fixed_p P_ ((struct font_name *)); | |
508 static int xlfd_numeric_value P_ ((struct table_entry *, int, struct font_name *, | |
509 int, int)); | |
510 static Lisp_Object xlfd_symbolic_value P_ ((struct table_entry *, int, | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
511 struct font_name *, int, |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
512 Lisp_Object)); |
24995 | 513 static struct table_entry *xlfd_lookup_field_contents P_ ((struct table_entry *, int, |
514 struct font_name *, int)); | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
515 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
516 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 517 |
518 static int split_font_name P_ ((struct frame *, struct font_name *, int)); | |
519 static int xlfd_point_size P_ ((struct frame *, struct font_name *)); | |
520 static void sort_fonts P_ ((struct frame *, struct font_name *, int, | |
521 int (*cmpfn) P_ ((const void *, const void *)))); | |
522 static GC x_create_gc P_ ((struct frame *, unsigned long, XGCValues *)); | |
523 static void x_free_gc P_ ((struct frame *, GC)); | |
524 static void clear_font_table P_ ((struct frame *)); | |
525 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
526 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
527 extern Lisp_Object w32_list_fonts P_ ((struct frame *, Lisp_Object, int, int)); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
528 #endif /* WINDOWSNT */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
529 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
530 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 531 |
532 | |
533 /*********************************************************************** | |
534 Utilities | |
535 ***********************************************************************/ | |
536 | |
537 #ifdef HAVE_X_WINDOWS | |
538 | |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
539 #ifdef DEBUG_X_COLORS |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
540 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
541 /* The following is a poor mans infrastructure for debugging X color |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
542 allocation problems on displays with PseudoColor-8. Some X servers |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
543 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
544 color reference counts completely so that they don't signal an |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
545 error when a color is freed whose reference count is already 0. |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
546 Other X servers do. To help me debug this, the following code |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
547 implements a simple reference counting schema of its own, for a |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
548 single display/screen. --gerd. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
549 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
550 /* Reference counts for pixel colors. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
551 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
552 int color_count[256]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
553 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
554 /* Register color PIXEL as allocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
555 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
556 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
557 register_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
558 unsigned long pixel; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
559 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
560 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
561 ++color_count[pixel]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
562 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
563 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
564 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
565 /* Register color PIXEL as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
566 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
567 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
568 unregister_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
569 unsigned long pixel; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
570 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
571 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
572 if (color_count[pixel] > 0) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
573 --color_count[pixel]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
574 else |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
575 abort (); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
576 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
577 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
578 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
579 /* Register N colors from PIXELS as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
580 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
581 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
582 unregister_colors (pixels, n) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
583 unsigned long *pixels; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
584 int n; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
585 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
586 int i; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
587 for (i = 0; i < n; ++i) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
588 unregister_color (pixels[i]); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
589 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
590 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
591 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
592 DEFUN ("dump-colors", Fdump_colors, Sdump_colors, 0, 0, 0, |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
593 "Dump currently allocated colors and their reference counts to stderr.") |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
594 () |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
595 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
596 int i, n; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
597 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
598 fputc ('\n', stderr); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
599 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
600 for (i = n = 0; i < sizeof color_count / sizeof color_count[0]; ++i) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
601 if (color_count[i]) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
602 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
603 fprintf (stderr, "%3d: %5d", i, color_count[i]); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
604 ++n; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
605 if (n % 5 == 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
606 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
607 else |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
608 fputc ('\t', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
609 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
610 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
611 if (n % 5 != 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
612 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
613 return Qnil; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
614 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
615 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
616 |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
617 #endif /* DEBUG_X_COLORS */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
618 |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
619 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
620 color values. Interrupt input must be blocked when this function |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
621 is called. */ |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
622 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
623 void |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
624 x_free_colors (f, pixels, npixels) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
625 struct frame *f; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
626 unsigned long *pixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
627 int npixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
628 { |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
629 int class = FRAME_X_DISPLAY_INFO (f)->visual->class; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
630 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
631 /* If display has an immutable color map, freeing colors is not |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
632 necessary and some servers don't allow it. So don't do it. */ |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
633 if (class != StaticColor && class != StaticGray && class != TrueColor) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
634 { |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
635 XFreeColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
636 pixels, npixels, 0); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
637 #ifdef DEBUG_X_COLORS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
638 unregister_colors (pixels, npixels); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
639 #endif |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
640 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
641 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
642 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
643 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
644 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
645 color values. Interrupt input must be blocked when this function |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
646 is called. */ |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
647 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
648 void |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
649 x_free_dpy_colors (dpy, screen, cmap, pixels, npixels) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
650 Display *dpy; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
651 Screen *screen; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
652 Colormap cmap; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
653 unsigned long *pixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
654 int npixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
655 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
656 struct x_display_info *dpyinfo = x_display_info_for_display (dpy); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
657 int class = dpyinfo->visual->class; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
658 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
659 /* If display has an immutable color map, freeing colors is not |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
660 necessary and some servers don't allow it. So don't do it. */ |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
661 if (class != StaticColor && class != StaticGray && class != TrueColor) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
662 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
663 XFreeColors (dpy, cmap, pixels, npixels, 0); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
664 #ifdef DEBUG_X_COLORS |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
665 unregister_colors (pixels, npixels); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
666 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
667 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
668 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
669 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
670 |
24995 | 671 /* Create and return a GC for use on frame F. GC values and mask |
672 are given by XGCV and MASK. */ | |
673 | |
674 static INLINE GC | |
675 x_create_gc (f, mask, xgcv) | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
676 struct frame *f; |
24995 | 677 unsigned long mask; |
678 XGCValues *xgcv; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
679 { |
2336 | 680 GC gc; |
24995 | 681 BLOCK_INPUT; |
682 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv); | |
683 UNBLOCK_INPUT; | |
684 IF_DEBUG (++ngcs); | |
685 return gc; | |
686 } | |
687 | |
688 | |
689 /* Free GC which was used on frame F. */ | |
690 | |
691 static INLINE void | |
692 x_free_gc (f, gc) | |
693 struct frame *f; | |
694 GC gc; | |
695 { | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
696 BLOCK_INPUT; |
24995 | 697 xassert (--ngcs >= 0); |
698 XFreeGC (FRAME_X_DISPLAY (f), gc); | |
699 UNBLOCK_INPUT; | |
700 } | |
701 | |
702 #endif /* HAVE_X_WINDOWS */ | |
703 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
704 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
705 /* W32 emulation of GCs */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
706 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
707 static INLINE GC |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
708 x_create_gc (f, mask, xgcv) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
709 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
710 unsigned long mask; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
711 XGCValues *xgcv; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
712 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
713 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
714 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
715 gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, xgcv); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
716 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
717 IF_DEBUG (++ngcs); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
718 return gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
719 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
720 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
721 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
722 /* Free GC which was used on frame F. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
723 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
724 static INLINE void |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
725 x_free_gc (f, gc) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
726 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
727 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
728 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
729 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
730 xassert (--ngcs >= 0); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
731 xfree (gc); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
732 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
733 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
734 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
735 #endif /* WINDOWSNT */ |
24995 | 736 |
737 /* Like stricmp. Used to compare parts of font names which are in | |
738 ISO8859-1. */ | |
739 | |
740 int | |
741 xstricmp (s1, s2) | |
742 unsigned char *s1, *s2; | |
743 { | |
744 while (*s1 && *s2) | |
745 { | |
746 unsigned char c1 = tolower (*s1); | |
747 unsigned char c2 = tolower (*s2); | |
748 if (c1 != c2) | |
749 return c1 < c2 ? -1 : 1; | |
750 ++s1, ++s2; | |
751 } | |
752 | |
753 if (*s1 == 0) | |
754 return *s2 == 0 ? 0 : -1; | |
755 return 1; | |
756 } | |
757 | |
758 | |
759 /* Like strlwr, which might not always be available. */ | |
760 | |
761 static unsigned char * | |
762 xstrlwr (s) | |
763 unsigned char *s; | |
764 { | |
765 unsigned char *p = s; | |
766 | |
767 for (p = s; *p; ++p) | |
768 *p = tolower (*p); | |
769 | |
770 return s; | |
771 } | |
772 | |
773 | |
774 /* Signal `error' with message S, and additional argument ARG. */ | |
775 | |
776 static void | |
777 signal_error (s, arg) | |
778 char *s; | |
779 Lisp_Object arg; | |
780 { | |
781 Fsignal (Qerror, Fcons (build_string (s), Fcons (arg, Qnil))); | |
782 } | |
783 | |
784 | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
785 /* If FRAME is nil, return a pointer to the selected frame. |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
786 Otherwise, check that FRAME is a live frame, and return a pointer |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
787 to it. NPARAM is the parameter number of FRAME, for |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
788 CHECK_LIVE_FRAME. This is here because it's a frequent pattern in |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
789 Lisp function definitions. */ |
24995 | 790 |
791 static INLINE struct frame * | |
792 frame_or_selected_frame (frame, nparam) | |
793 Lisp_Object frame; | |
794 int nparam; | |
795 { | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
796 if (NILP (frame)) |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
797 frame = selected_frame; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
798 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
799 CHECK_LIVE_FRAME (frame, nparam); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
800 return XFRAME (frame); |
24995 | 801 } |
802 | |
803 | |
804 /*********************************************************************** | |
805 Frames and faces | |
806 ***********************************************************************/ | |
807 | |
808 /* Initialize face cache and basic faces for frame F. */ | |
9529
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
809 |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
810 void |
24995 | 811 init_frame_faces (f) |
812 struct frame *f; | |
9529
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
813 { |
24995 | 814 /* Make a face cache, if F doesn't have one. */ |
815 if (FRAME_FACE_CACHE (f) == NULL) | |
816 FRAME_FACE_CACHE (f) = make_face_cache (f); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
817 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
818 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 819 /* Make the image cache. */ |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
820 if (FRAME_WINDOW_P (f)) |
9529
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
821 { |
24995 | 822 if (FRAME_X_IMAGE_CACHE (f) == NULL) |
823 FRAME_X_IMAGE_CACHE (f) = make_image_cache (); | |
824 ++FRAME_X_IMAGE_CACHE (f)->refcount; | |
825 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
826 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 827 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
828 /* Realize basic faces. Must have enough information in frame |
24995 | 829 parameters to realize basic faces at this point. */ |
830 #ifdef HAVE_X_WINDOWS | |
831 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f)) | |
832 #endif | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
833 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
834 if (!FRAME_WINDOW_P (f) || FRAME_W32_WINDOW (f)) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
835 #endif |
24995 | 836 if (!realize_basic_faces (f)) |
837 abort (); | |
838 } | |
839 | |
840 | |
841 /* Free face cache of frame F. Called from Fdelete_frame. */ | |
842 | |
843 void | |
844 free_frame_faces (f) | |
845 struct frame *f; | |
846 { | |
847 struct face_cache *face_cache = FRAME_FACE_CACHE (f); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
848 |
24995 | 849 if (face_cache) |
850 { | |
851 free_face_cache (face_cache); | |
852 FRAME_FACE_CACHE (f) = NULL; | |
853 } | |
854 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
855 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
856 if (FRAME_WINDOW_P (f)) |
24995 | 857 { |
858 struct image_cache *image_cache = FRAME_X_IMAGE_CACHE (f); | |
859 if (image_cache) | |
9529
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
860 { |
24995 | 861 --image_cache->refcount; |
862 if (image_cache->refcount == 0) | |
863 free_image_cache (f); | |
864 } | |
865 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
866 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 867 } |
868 | |
869 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
870 /* Clear face caches, and recompute basic faces for frame F. Call |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
871 this after changing frame parameters on which those faces depend, |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
872 or when realized faces have been freed due to changing attributes |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
873 of named faces. */ |
24995 | 874 |
875 void | |
876 recompute_basic_faces (f) | |
877 struct frame *f; | |
878 { | |
879 if (FRAME_FACE_CACHE (f)) | |
880 { | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
881 clear_face_cache (0); |
26601
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
882 if (!realize_basic_faces (f)) |
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
883 abort (); |
24995 | 884 } |
885 } | |
886 | |
887 | |
888 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means | |
889 try to free unused fonts, too. */ | |
890 | |
891 void | |
892 clear_face_cache (clear_fonts_p) | |
893 int clear_fonts_p; | |
894 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
895 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 896 Lisp_Object tail, frame; |
897 struct frame *f; | |
898 | |
899 if (clear_fonts_p | |
900 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT) | |
901 { | |
902 /* From time to time see if we can unload some fonts. This also | |
903 frees all realized faces on all frames. Fonts needed by | |
904 faces will be loaded again when faces are realized again. */ | |
905 clear_font_table_count = 0; | |
906 | |
907 FOR_EACH_FRAME (tail, frame) | |
908 { | |
909 f = XFRAME (frame); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
910 if (FRAME_WINDOW_P (f) |
24995 | 911 && FRAME_X_DISPLAY_INFO (f)->n_fonts > CLEAR_FONT_TABLE_NFONTS) |
9529
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
912 { |
24995 | 913 free_all_realized_faces (frame); |
914 clear_font_table (f); | |
9529
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
915 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
916 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
917 } |
24995 | 918 else |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
919 { |
24995 | 920 /* Clear GCs of realized faces. */ |
921 FOR_EACH_FRAME (tail, frame) | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
922 { |
24995 | 923 f = XFRAME (frame); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
924 if (FRAME_WINDOW_P (f)) |
24995 | 925 { |
926 clear_face_gcs (FRAME_FACE_CACHE (f)); | |
927 clear_image_cache (f, 0); | |
928 } | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
929 } |
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
930 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
931 #endif /* HAVE_WINDOW_SYSTEM */ |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
932 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
933 |
24995 | 934 |
935 DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0, | |
936 "Clear face caches on all frames.\n\ | |
937 Optional THOROUGHLY non-nil means try to free unused fonts, too.") | |
938 (thorougly) | |
939 Lisp_Object thorougly; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
940 { |
24995 | 941 clear_face_cache (!NILP (thorougly)); |
942 return Qnil; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
943 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
944 |
24995 | 945 |
946 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
947 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 948 |
949 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
950 /* Remove those fonts from the font table of frame F exept for the |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
951 default ASCII font for the frame. Called from clear_face_cache |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
952 from time to time. */ |
24995 | 953 |
954 static void | |
955 clear_font_table (f) | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
956 struct frame *f; |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
957 { |
24995 | 958 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); |
959 int i; | |
960 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
961 xassert (FRAME_WINDOW_P (f)); |
24995 | 962 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
963 /* Free those fonts that are not used by the frame F as the default. */ |
24995 | 964 for (i = 0; i < dpyinfo->n_fonts; ++i) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
965 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
966 struct font_info *font_info = dpyinfo->font_table + i; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
967 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
968 if (!font_info->name |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
969 || font_info->font == FRAME_FONT (f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
970 continue; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
971 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
972 /* Free names. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
973 if (font_info->full_name != font_info->name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
974 xfree (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
975 xfree (font_info->name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
976 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
977 /* Free the font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
978 BLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
979 #ifdef HAVE_X_WINDOWS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
980 XFreeFont (dpyinfo->display, font_info->font); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
981 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
982 #ifdef WINDOWSNT |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
983 w32_unload_font (dpyinfo, font_info->font); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
984 #endif |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
985 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
986 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
987 /* Mark font table slot free. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
988 font_info->font = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
989 font_info->name = font_info->full_name = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
990 } |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
991 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
992 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
993 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 994 |
995 | |
996 | |
997 /*********************************************************************** | |
998 X Pixmaps | |
999 ***********************************************************************/ | |
1000 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1001 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1002 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1003 DEFUN ("bitmap-spec-p", Fbitmap_spec_p, Sbitmap_spec_p, 1, 1, 0, |
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1004 "Value is non-nil if OBJECT is a valid bitmap specification.\n\ |
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1005 A bitmap specification is either a string, a file name, or a list\n\ |
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1006 (WIDTH HEIGHT DATA) where WIDTH is the pixel width of the bitmap,\n\ |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1007 HEIGHT is its height, and DATA is a string containing the bits of\n\ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1008 the pixmap. Bits are stored row by row, each row occupies\n\ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1009 (WIDTH + 7)/8 bytes.") |
14090
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1010 (object) |
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1011 Lisp_Object object; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1012 { |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1013 int pixmap_p = 0; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1014 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1015 if (STRINGP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1016 /* If OBJECT is a string, it's a file name. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1017 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1018 else if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1019 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1020 /* Otherwise OBJECT must be (WIDTH HEIGHT DATA), WIDTH and |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1021 HEIGHT must be integers > 0, and DATA must be string large |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1022 enough to hold a bitmap of the specified size. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1023 Lisp_Object width, height, data; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1024 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1025 height = width = data = Qnil; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1026 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1027 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1028 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1029 width = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1030 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1031 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1032 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1033 height = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1034 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1035 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1036 data = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1037 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1038 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1039 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1040 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1041 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1042 int bytes_per_row = ((XFASTINT (width) + BITS_PER_CHAR - 1) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1043 / BITS_PER_CHAR); |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
1044 if (STRING_BYTES (XSTRING (data)) >= bytes_per_row * XINT (height)) |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1045 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1046 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1047 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1048 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1049 return pixmap_p ? Qt : Qnil; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1050 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1051 |
24995 | 1052 |
1053 /* Load a bitmap according to NAME (which is either a file name or a | |
1054 pixmap spec) for use on frame F. Value is the bitmap_id (see | |
1055 xfns.c). If NAME is nil, return with a bitmap id of zero. If | |
1056 bitmap cannot be loaded, display a message saying so, and return | |
1057 zero. Store the bitmap width in *W_PTR and its height in *H_PTR, | |
1058 if these pointers are not null. */ | |
1059 | |
1060 static int | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1061 load_pixmap (f, name, w_ptr, h_ptr) |
9902
32ed712a45a3
(load_pixmap): Handle bitmap_id < 0. F is a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9671
diff
changeset
|
1062 FRAME_PTR f; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1063 Lisp_Object name; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1064 unsigned int *w_ptr, *h_ptr; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1065 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1066 int bitmap_id; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1067 Lisp_Object tem; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1068 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1069 if (NILP (name)) |
24995 | 1070 return 0; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1071 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1072 tem = Fbitmap_spec_p (name); |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1073 if (NILP (tem)) |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1074 wrong_type_argument (Qbitmap_spec_p, name); |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1075 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1076 BLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1077 if (CONSP (name)) |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1078 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1079 /* Decode a bitmap spec into a bitmap. */ |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1080 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1081 int h, w; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1082 Lisp_Object bits; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1083 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1084 w = XINT (Fcar (name)); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1085 h = XINT (Fcar (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1086 bits = Fcar (Fcdr (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1087 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1088 bitmap_id = x_create_bitmap_from_data (f, XSTRING (bits)->data, |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1089 w, h); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1090 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1091 else |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1092 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1093 /* It must be a string -- a file name. */ |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1094 bitmap_id = x_create_bitmap_from_file (f, name); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1095 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1096 UNBLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1097 |
9902
32ed712a45a3
(load_pixmap): Handle bitmap_id < 0. F is a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9671
diff
changeset
|
1098 if (bitmap_id < 0) |
24995 | 1099 { |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1100 add_to_log ("Invalid or undefined bitmap %s", name, Qnil); |
24995 | 1101 bitmap_id = 0; |
1102 | |
1103 if (w_ptr) | |
1104 *w_ptr = 0; | |
1105 if (h_ptr) | |
1106 *h_ptr = 0; | |
1107 } | |
1108 else | |
1109 { | |
1110 #if GLYPH_DEBUG | |
1111 ++npixmaps_allocated; | |
1112 #endif | |
1113 if (w_ptr) | |
1114 *w_ptr = x_bitmap_width (f, bitmap_id); | |
1115 | |
1116 if (h_ptr) | |
1117 *h_ptr = x_bitmap_height (f, bitmap_id); | |
1118 } | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1119 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1120 return bitmap_id; |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
1121 } |
9572 | 1122 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1123 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1124 |
9572 | 1125 |
2336 | 1126 |
24995 | 1127 /*********************************************************************** |
1128 Minimum font bounds | |
1129 ***********************************************************************/ | |
1130 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1131 #ifdef HAVE_WINDOW_SYSTEM |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1132 |
25062
050561b336aa
(load_face_colors): Load background color if setting
Gerd Moellmann <gerd@gnu.org>
parents:
24995
diff
changeset
|
1133 /* Update the line_height of frame F. Return non-zero if line height |
050561b336aa
(load_face_colors): Load background color if setting
Gerd Moellmann <gerd@gnu.org>
parents:
24995
diff
changeset
|
1134 changes. */ |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1135 |
6879
471aebc1b151
(frame_update_line_height): Don't call x_set_window_size.
Richard M. Stallman <rms@gnu.org>
parents:
6784
diff
changeset
|
1136 int |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1137 frame_update_line_height (f) |
24995 | 1138 struct frame *f; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1139 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1140 int line_height, changed_p; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1141 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1142 line_height = FONT_HEIGHT (FRAME_FONT (f)); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1143 changed_p = line_height != FRAME_LINE_HEIGHT (f); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1144 FRAME_LINE_HEIGHT (f) = line_height; |
24995 | 1145 return changed_p; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1146 } |
24995 | 1147 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1148 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1149 |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
1150 |
24995 | 1151 /*********************************************************************** |
1152 Fonts | |
1153 ***********************************************************************/ | |
1154 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1155 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1156 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1157 /* Load font of face FACE which is used on frame F to display |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1158 character C. The name of the font to load is determined by lface |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1159 and fontset of FACE. */ |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
1160 |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1161 static void |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1162 load_face_font (f, face, c) |
24995 | 1163 struct frame *f; |
1164 struct face *face; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1165 int c; |
24995 | 1166 { |
1167 struct font_info *font_info = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1168 char *font_name; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1169 |
24995 | 1170 face->font_info_id = -1; |
1171 face->font = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1172 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1173 font_name = choose_face_font (f, face->lface, face->fontset, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1174 if (!font_name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1175 return; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1176 |
24995 | 1177 BLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1178 font_info = FS_LOAD_FACE_FONT (f, c, font_name, face); |
24995 | 1179 UNBLOCK_INPUT; |
1180 | |
1181 if (font_info) | |
1182 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1183 face->font_info_id = font_info->font_idx; |
24995 | 1184 face->font = font_info->font; |
1185 face->font_name = font_info->full_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1186 if (face->gc) |
24995 | 1187 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1188 x_free_gc (f, face->gc); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1189 face->gc = 0; |
24995 | 1190 } |
1191 } | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1192 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1193 add_to_log ("Unable to load font %s", |
25301
2042c4a224ad
(add_to_log): Renamed from display_message.
Gerd Moellmann <gerd@gnu.org>
parents:
25270
diff
changeset
|
1194 build_string (font_name), Qnil); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1195 xfree (font_name); |
24995 | 1196 } |
1197 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1198 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1199 |
1200 | |
1201 | |
1202 /*********************************************************************** | |
1203 X Colors | |
1204 ***********************************************************************/ | |
1205 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1206 /* A version of defined_color for non-X frames. */ |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1207 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1208 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1209 tty_defined_color (f, color_name, color_def, alloc) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1210 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1211 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1212 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1213 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1214 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1215 Lisp_Object color_desc; |
27695
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1216 unsigned long color_idx = FACE_TTY_DEFAULT_COLOR, |
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1217 red = 0, green = 0, blue = 0; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1218 int status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1219 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1220 if (*color_name && !NILP (Ffboundp (Qtty_color_desc))) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1221 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1222 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1223 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1224 XSETFRAME (frame, f); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1225 status = 0; |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1226 color_desc = call2 (Qtty_color_desc, build_string (color_name), frame); |
26913
9d6d94db8909
(tty_defined_color): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1227 if (CONSP (color_desc) && CONSP (XCDR (color_desc))) |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1228 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1229 color_idx = XINT (XCAR (XCDR (color_desc))); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1230 if (CONSP (XCDR (XCDR (color_desc)))) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1231 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1232 red = XINT (XCAR (XCDR (XCDR (color_desc)))); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1233 green = XINT (XCAR (XCDR (XCDR (XCDR (color_desc))))); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1234 blue = XINT (XCAR (XCDR (XCDR (XCDR (XCDR (color_desc)))))); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1235 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1236 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1237 } |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1238 else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist")))) |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1239 /* We were called early during startup, and the colors are not |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1240 yet set up in tty-defined-color-alist. Don't return a failure |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1241 indication, since this produces the annoying "Unable to |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1242 load color" messages in the *Messages* buffer. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1243 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1244 } |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1245 if (color_idx == FACE_TTY_DEFAULT_COLOR && *color_name) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1246 { |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1247 if (strcmp (color_name, "unspecified-fg") == 0) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1248 color_idx = FACE_TTY_DEFAULT_FG_COLOR; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1249 else if (strcmp (color_name, "unspecified-bg") == 0) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1250 color_idx = FACE_TTY_DEFAULT_BG_COLOR; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1251 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1252 |
27743
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1253 if (color_idx != FACE_TTY_DEFAULT_COLOR) |
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1254 status = 1; |
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1255 |
27695
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1256 color_def->pixel = color_idx; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1257 color_def->red = red; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1258 color_def->green = green; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1259 color_def->blue = blue; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1260 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1261 return status; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1262 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1263 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1264 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1265 /* Decide if color named COLOR_NAME is valid for the display |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1266 associated with the frame F; if so, return the rgb values in |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1267 COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell. |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1268 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1269 This does the right thing for any type of frame. */ |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1270 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1271 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1272 defined_color (f, color_name, color_def, alloc) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1273 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1274 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1275 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1276 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1277 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1278 if (!FRAME_WINDOW_P (f)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1279 return tty_defined_color (f, color_name, color_def, alloc); |
24995 | 1280 #ifdef HAVE_X_WINDOWS |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1281 else if (FRAME_X_P (f)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1282 return x_defined_color (f, color_name, color_def, alloc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1283 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1284 #ifdef WINDOWSNT |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1285 else if (FRAME_W32_P (f)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1286 return w32_defined_color (f, color_name, color_def, alloc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1287 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1288 #ifdef macintosh |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1289 else if (FRAME_MAC_P (f)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1290 /* FIXME: mac_defined_color doesn't exist! */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1291 return mac_defined_color (f, color_name, color_def, alloc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1292 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1293 else |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1294 abort (); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1295 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1296 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1297 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1298 /* Given the index IDX of a tty color on frame F, return its name, a |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1299 Lisp string. */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1300 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1301 Lisp_Object |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1302 tty_color_name (f, idx) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1303 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1304 int idx; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1305 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1306 if (idx >= 0 && !NILP (Ffboundp (Qtty_color_by_index))) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1307 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1308 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1309 Lisp_Object coldesc; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1310 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1311 XSETFRAME (frame, f); |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1312 coldesc = call2 (Qtty_color_by_index, make_number (idx), frame); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1313 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1314 if (!NILP (coldesc)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1315 return XCAR (coldesc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1316 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1317 #ifdef MSDOS |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1318 /* We can have an MSDOG frame under -nw for a short window of |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1319 opportunity before internal_terminal_init is called. DTRT. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1320 if (FRAME_MSDOS_P (f) && !inhibit_window_system) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1321 return msdos_stdcolor_name (idx); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1322 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1323 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1324 if (idx == FACE_TTY_DEFAULT_FG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1325 return build_string (unspecified_fg); |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1326 if (idx == FACE_TTY_DEFAULT_BG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1327 return build_string (unspecified_bg); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1328 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1329 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1330 return vga_stdcolor_name (idx); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1331 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1332 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1333 return Qunspecified; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1334 } |
24995 | 1335 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1336 |
24995 | 1337 /* Return non-zero if COLOR_NAME is a shade of gray (or white or |
1338 black) on frame F. The algorithm is taken from 20.2 faces.el. */ | |
1339 | |
1340 static int | |
1341 face_color_gray_p (f, color_name) | |
1342 struct frame *f; | |
1343 char *color_name; | |
1344 { | |
1345 XColor color; | |
1346 int gray_p; | |
1347 | |
1348 if (defined_color (f, color_name, &color, 0)) | |
1349 gray_p = ((abs (color.red - color.green) | |
1350 < max (color.red, color.green) / 20) | |
1351 && (abs (color.green - color.blue) | |
1352 < max (color.green, color.blue) / 20) | |
1353 && (abs (color.blue - color.red) | |
1354 < max (color.blue, color.red) / 20)); | |
1355 else | |
1356 gray_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1357 |
24995 | 1358 return gray_p; |
1359 } | |
1360 | |
1361 | |
1362 /* Return non-zero if color COLOR_NAME can be displayed on frame F. | |
1363 BACKGROUND_P non-zero means the color will be used as background | |
1364 color. */ | |
1365 | |
1366 static int | |
1367 face_color_supported_p (f, color_name, background_p) | |
1368 struct frame *f; | |
1369 char *color_name; | |
1370 int background_p; | |
1371 { | |
1372 Lisp_Object frame; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1373 XColor not_used; |
24995 | 1374 |
1375 XSETFRAME (frame, f); | |
26972
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1376 return (FRAME_WINDOW_P (f) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1377 ? (!NILP (Fxw_display_color_p (frame)) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1378 || xstricmp (color_name, "black") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1379 || xstricmp (color_name, "white") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1380 || (background_p |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1381 && face_color_gray_p (f, color_name)) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1382 || (!NILP (Fx_display_grayscale_p (frame)) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1383 && face_color_gray_p (f, color_name))) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1384 : tty_defined_color (f, color_name, ¬_used, 0)); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1385 } |
24995 | 1386 |
1387 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1388 DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0, |
24995 | 1389 "Return non-nil if COLOR is a shade of gray (or white or black).\n\ |
1390 FRAME specifies the frame and thus the display for interpreting COLOR.\n\ | |
1391 If FRAME is nil or omitted, use the selected frame.") | |
1392 (color, frame) | |
1393 Lisp_Object color, frame; | |
1394 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1395 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1396 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1397 CHECK_FRAME (frame, 0); |
24995 | 1398 CHECK_STRING (color, 0); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1399 f = XFRAME (frame); |
24995 | 1400 return face_color_gray_p (f, XSTRING (color)->data) ? Qt : Qnil; |
1401 } | |
1402 | |
1403 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1404 DEFUN ("color-supported-p", Fcolor_supported_p, |
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1405 Scolor_supported_p, 2, 3, 0, |
24995 | 1406 "Return non-nil if COLOR can be displayed on FRAME.\n\ |
1407 BACKGROUND-P non-nil means COLOR is used as a background.\n\ | |
1408 If FRAME is nil or omitted, use the selected frame.\n\ | |
1409 COLOR must be a valid color name.") | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1410 (color, frame, background_p) |
24995 | 1411 Lisp_Object frame, color, background_p; |
1412 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1413 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1414 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1415 CHECK_FRAME (frame, 0); |
24995 | 1416 CHECK_STRING (color, 0); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1417 f = XFRAME (frame); |
24995 | 1418 if (face_color_supported_p (f, XSTRING (color)->data, !NILP (background_p))) |
1419 return Qt; | |
1420 return Qnil; | |
1421 } | |
1422 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1423 |
24995 | 1424 /* Load color with name NAME for use by face FACE on frame F. |
1425 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX, | |
1426 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX, | |
1427 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the | |
1428 pixel color. If color cannot be loaded, display a message, and | |
1429 return the foreground, background or underline color of F, but | |
1430 record that fact in flags of the face so that we don't try to free | |
1431 these colors. */ | |
1432 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
1433 unsigned long |
24995 | 1434 load_color (f, face, name, target_index) |
1435 struct frame *f; | |
1436 struct face *face; | |
1437 Lisp_Object name; | |
1438 enum lface_attribute_index target_index; | |
1439 { | |
1440 XColor color; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1441 |
24995 | 1442 xassert (STRINGP (name)); |
1443 xassert (target_index == LFACE_FOREGROUND_INDEX | |
1444 || target_index == LFACE_BACKGROUND_INDEX | |
1445 || target_index == LFACE_UNDERLINE_INDEX | |
1446 || target_index == LFACE_OVERLINE_INDEX | |
1447 || target_index == LFACE_STRIKE_THROUGH_INDEX | |
1448 || target_index == LFACE_BOX_INDEX); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1449 |
24995 | 1450 /* if the color map is full, defined_color will return a best match |
1451 to the values in an existing cell. */ | |
1452 if (!defined_color (f, XSTRING (name)->data, &color, 1)) | |
1453 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1454 add_to_log ("Unable to load color \"%s\"", name, Qnil); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1455 |
24995 | 1456 switch (target_index) |
1457 { | |
1458 case LFACE_FOREGROUND_INDEX: | |
1459 face->foreground_defaulted_p = 1; | |
1460 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1461 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1462 |
24995 | 1463 case LFACE_BACKGROUND_INDEX: |
1464 face->background_defaulted_p = 1; | |
1465 color.pixel = FRAME_BACKGROUND_PIXEL (f); | |
1466 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1467 |
24995 | 1468 case LFACE_UNDERLINE_INDEX: |
1469 face->underline_defaulted_p = 1; | |
1470 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1471 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1472 |
24995 | 1473 case LFACE_OVERLINE_INDEX: |
1474 face->overline_color_defaulted_p = 1; | |
1475 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1476 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1477 |
24995 | 1478 case LFACE_STRIKE_THROUGH_INDEX: |
1479 face->strike_through_color_defaulted_p = 1; | |
1480 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1481 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1482 |
24995 | 1483 case LFACE_BOX_INDEX: |
1484 face->box_color_defaulted_p = 1; | |
1485 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1486 break; | |
1487 | |
1488 default: | |
1489 abort (); | |
1490 } | |
1491 } | |
1492 #if GLYPH_DEBUG | |
1493 else | |
1494 ++ncolors_allocated; | |
1495 #endif | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1496 |
24995 | 1497 return color.pixel; |
1498 } | |
1499 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1500 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1501 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1502 |
1503 /* Load colors for face FACE which is used on frame F. Colors are | |
1504 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX | |
1505 of ATTRS. If the background color specified is not supported on F, | |
1506 try to emulate gray colors with a stipple from Vface_default_stipple. */ | |
1507 | |
1508 static void | |
1509 load_face_colors (f, face, attrs) | |
1510 struct frame *f; | |
1511 struct face *face; | |
1512 Lisp_Object *attrs; | |
1513 { | |
1514 Lisp_Object fg, bg; | |
1515 | |
1516 bg = attrs[LFACE_BACKGROUND_INDEX]; | |
1517 fg = attrs[LFACE_FOREGROUND_INDEX]; | |
1518 | |
1519 /* Swap colors if face is inverse-video. */ | |
1520 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt)) | |
1521 { | |
1522 Lisp_Object tmp; | |
1523 tmp = fg; | |
1524 fg = bg; | |
1525 bg = tmp; | |
1526 } | |
1527 | |
1528 /* Check for support for foreground, not for background because | |
1529 face_color_supported_p is smart enough to know that grays are | |
1530 "supported" as background because we are supposed to use stipple | |
1531 for them. */ | |
1532 if (!face_color_supported_p (f, XSTRING (bg)->data, 0) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1533 && !NILP (Fbitmap_spec_p (Vface_default_stipple))) |
24995 | 1534 { |
1535 x_destroy_bitmap (f, face->stipple); | |
1536 face->stipple = load_pixmap (f, Vface_default_stipple, | |
1537 &face->pixmap_w, &face->pixmap_h); | |
1538 } | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1539 |
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1540 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX); |
24995 | 1541 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX); |
1542 } | |
1543 | |
1544 | |
1545 /* Free color PIXEL on frame F. */ | |
1546 | |
1547 void | |
1548 unload_color (f, pixel) | |
1549 struct frame *f; | |
1550 unsigned long pixel; | |
1551 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1552 #ifdef HAVE_X_WINDOWS |
24995 | 1553 BLOCK_INPUT; |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1554 x_free_colors (f, &pixel, 1); |
24995 | 1555 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1556 #endif |
24995 | 1557 } |
1558 | |
1559 | |
1560 /* Free colors allocated for FACE. */ | |
1561 | |
1562 static void | |
1563 free_face_colors (f, face) | |
1564 struct frame *f; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1565 struct face *face; |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1566 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1567 #ifdef HAVE_X_WINDOWS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1568 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1569 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1570 if (!face->foreground_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1571 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1572 x_free_colors (f, &face->foreground, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1573 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1574 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1575 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1576 if (!face->background_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1577 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1578 x_free_colors (f, &face->background, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1579 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1580 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1581 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1582 if (face->underline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1583 && !face->underline_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1584 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1585 x_free_colors (f, &face->underline_color, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1586 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1587 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1588 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1589 if (face->overline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1590 && !face->overline_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1591 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1592 x_free_colors (f, &face->overline_color, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1593 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1594 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1595 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1596 if (face->strike_through_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1597 && !face->strike_through_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1598 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1599 x_free_colors (f, &face->strike_through_color, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1600 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1601 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1602 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1603 if (face->box != FACE_NO_BOX |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1604 && !face->box_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1605 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1606 x_free_colors (f, &face->box_color, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1607 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1608 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1609 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1610 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1611 #endif /* HAVE_X_WINDOWS */ |
24995 | 1612 } |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1613 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1614 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1615 |
1616 | |
1617 | |
1618 /*********************************************************************** | |
1619 XLFD Font Names | |
1620 ***********************************************************************/ | |
1621 | |
1622 /* An enumerator for each field of an XLFD font name. */ | |
1623 | |
1624 enum xlfd_field | |
1625 { | |
1626 XLFD_FOUNDRY, | |
1627 XLFD_FAMILY, | |
1628 XLFD_WEIGHT, | |
1629 XLFD_SLANT, | |
1630 XLFD_SWIDTH, | |
1631 XLFD_ADSTYLE, | |
1632 XLFD_PIXEL_SIZE, | |
1633 XLFD_POINT_SIZE, | |
1634 XLFD_RESX, | |
1635 XLFD_RESY, | |
1636 XLFD_SPACING, | |
1637 XLFD_AVGWIDTH, | |
1638 XLFD_REGISTRY, | |
1639 XLFD_ENCODING, | |
1640 XLFD_LAST | |
1641 }; | |
1642 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1643 /* An enumerator for each possible slant value of a font. Taken from |
24995 | 1644 the XLFD specification. */ |
1645 | |
1646 enum xlfd_slant | |
1647 { | |
1648 XLFD_SLANT_UNKNOWN, | |
1649 XLFD_SLANT_ROMAN, | |
1650 XLFD_SLANT_ITALIC, | |
1651 XLFD_SLANT_OBLIQUE, | |
1652 XLFD_SLANT_REVERSE_ITALIC, | |
1653 XLFD_SLANT_REVERSE_OBLIQUE, | |
1654 XLFD_SLANT_OTHER | |
1655 }; | |
1656 | |
1657 /* Relative font weight according to XLFD documentation. */ | |
1658 | |
1659 enum xlfd_weight | |
1660 { | |
1661 XLFD_WEIGHT_UNKNOWN, | |
1662 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */ | |
1663 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */ | |
1664 XLFD_WEIGHT_LIGHT, /* 30 */ | |
1665 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */ | |
1666 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1667 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */ | |
1668 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */ | |
1669 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */ | |
1670 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */ | |
1671 }; | |
1672 | |
1673 /* Relative proportionate width. */ | |
1674 | |
1675 enum xlfd_swidth | |
1676 { | |
1677 XLFD_SWIDTH_UNKNOWN, | |
1678 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */ | |
1679 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */ | |
1680 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */ | |
1681 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */ | |
1682 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1683 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */ | |
1684 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */ | |
1685 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */ | |
1686 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */ | |
1687 }; | |
1688 | |
1689 /* Structure used for tables mapping XLFD weight, slant, and width | |
1690 names to numeric and symbolic values. */ | |
1691 | |
1692 struct table_entry | |
1693 { | |
1694 char *name; | |
1695 int numeric; | |
1696 Lisp_Object *symbol; | |
1697 }; | |
1698 | |
1699 /* Table of XLFD slant names and their numeric and symbolic | |
1700 representations. This table must be sorted by slant names in | |
1701 ascending order. */ | |
1702 | |
1703 static struct table_entry slant_table[] = | |
1704 { | |
1705 {"i", XLFD_SLANT_ITALIC, &Qitalic}, | |
1706 {"o", XLFD_SLANT_OBLIQUE, &Qoblique}, | |
1707 {"ot", XLFD_SLANT_OTHER, &Qitalic}, | |
1708 {"r", XLFD_SLANT_ROMAN, &Qnormal}, | |
1709 {"ri", XLFD_SLANT_REVERSE_ITALIC, &Qreverse_italic}, | |
1710 {"ro", XLFD_SLANT_REVERSE_OBLIQUE, &Qreverse_oblique} | |
1711 }; | |
1712 | |
1713 /* Table of XLFD weight names. This table must be sorted by weight | |
1714 names in ascending order. */ | |
1715 | |
1716 static struct table_entry weight_table[] = | |
1717 { | |
1718 {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}, | |
1719 {"bold", XLFD_WEIGHT_BOLD, &Qbold}, | |
1720 {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1721 {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1722 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light}, | |
1723 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1724 {"heavy", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1725 {"light", XLFD_WEIGHT_LIGHT, &Qlight}, | |
1726 {"medium", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1727 {"normal", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1728 {"regular", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1729 {"semibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1730 {"semilight", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1731 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT, &Qultra_light}, | |
1732 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold} | |
1733 }; | |
1734 | |
1735 /* Table of XLFD width names. This table must be sorted by width | |
1736 names in ascending order. */ | |
1737 | |
1738 static struct table_entry swidth_table[] = | |
1739 { | |
1740 {"compressed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1741 {"condensed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1742 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1743 {"expanded", XLFD_SWIDTH_EXPANDED, &Qexpanded}, | |
1744 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED, &Qextra_condensed}, | |
1745 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded}, | |
1746 {"medium", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1747 {"narrow", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1748 {"normal", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1749 {"regular", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1750 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED, &Qsemi_condensed}, | |
1751 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1752 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED, &Qultra_condensed}, | |
1753 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED, &Qultra_expanded}, | |
1754 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded} | |
1755 }; | |
1756 | |
1757 /* Structure used to hold the result of splitting font names in XLFD | |
1758 format into their fields. */ | |
1759 | |
1760 struct font_name | |
1761 { | |
1762 /* The original name which is modified destructively by | |
1763 split_font_name. The pointer is kept here to be able to free it | |
1764 if it was allocated from the heap. */ | |
1765 char *name; | |
1766 | |
1767 /* Font name fields. Each vector element points into `name' above. | |
1768 Fields are NUL-terminated. */ | |
1769 char *fields[XLFD_LAST]; | |
1770 | |
1771 /* Numeric values for those fields that interest us. See | |
1772 split_font_name for which these are. */ | |
1773 int numeric[XLFD_LAST]; | |
1774 }; | |
1775 | |
1776 /* The frame in effect when sorting font names. Set temporarily in | |
1777 sort_fonts so that it is available in font comparison functions. */ | |
1778 | |
1779 static struct frame *font_frame; | |
1780 | |
1781 /* Order by which font selection chooses fonts. The default values | |
1782 mean `first, find a best match for the font width, then for the | |
1783 font height, then for weight, then for slant.' This variable can be | |
1784 set via set-face-font-sort-order. */ | |
1785 | |
1786 static int font_sort_order[4]; | |
1787 | |
1788 | |
1789 /* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries. | |
1790 TABLE must be sorted by TABLE[i]->name in ascending order. Value | |
1791 is a pointer to the matching table entry or null if no table entry | |
1792 matches. */ | |
1793 | |
1794 static struct table_entry * | |
1795 xlfd_lookup_field_contents (table, dim, font, field_index) | |
1796 struct table_entry *table; | |
1797 int dim; | |
1798 struct font_name *font; | |
1799 int field_index; | |
1800 { | |
1801 /* Function split_font_name converts fields to lower-case, so there | |
1802 is no need to use xstrlwr or xstricmp here. */ | |
1803 char *s = font->fields[field_index]; | |
1804 int low, mid, high, cmp; | |
1805 | |
1806 low = 0; | |
1807 high = dim - 1; | |
1808 | |
1809 while (low <= high) | |
1810 { | |
1811 mid = (low + high) / 2; | |
1812 cmp = strcmp (table[mid].name, s); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1813 |
24995 | 1814 if (cmp < 0) |
1815 low = mid + 1; | |
1816 else if (cmp > 0) | |
1817 high = mid - 1; | |
1818 else | |
1819 return table + mid; | |
1820 } | |
1821 | |
1822 return NULL; | |
1823 } | |
1824 | |
1825 | |
1826 /* Return a numeric representation for font name field | |
1827 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1828 has DIM entries. Value is the numeric value found or DFLT if no | |
1829 table entry matches. This function is used to translate weight, | |
1830 slant, and swidth names of XLFD font names to numeric values. */ | |
1831 | |
1832 static INLINE int | |
1833 xlfd_numeric_value (table, dim, font, field_index, dflt) | |
1834 struct table_entry *table; | |
1835 int dim; | |
1836 struct font_name *font; | |
1837 int field_index; | |
1838 int dflt; | |
1839 { | |
1840 struct table_entry *p; | |
1841 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1842 return p ? p->numeric : dflt; | |
1843 } | |
1844 | |
1845 | |
1846 /* Return a symbolic representation for font name field | |
1847 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1848 has DIM entries. Value is the symbolic value found or DFLT if no | |
1849 table entry matches. This function is used to translate weight, | |
1850 slant, and swidth names of XLFD font names to symbols. */ | |
1851 | |
1852 static INLINE Lisp_Object | |
1853 xlfd_symbolic_value (table, dim, font, field_index, dflt) | |
1854 struct table_entry *table; | |
1855 int dim; | |
1856 struct font_name *font; | |
1857 int field_index; | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
1858 Lisp_Object dflt; |
24995 | 1859 { |
1860 struct table_entry *p; | |
1861 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1862 return p ? *p->symbol : dflt; | |
1863 } | |
1864 | |
1865 | |
1866 /* Return a numeric value for the slant of the font given by FONT. */ | |
1867 | |
1868 static INLINE int | |
1869 xlfd_numeric_slant (font) | |
1870 struct font_name *font; | |
1871 { | |
1872 return xlfd_numeric_value (slant_table, DIM (slant_table), | |
1873 font, XLFD_SLANT, XLFD_SLANT_ROMAN); | |
1874 } | |
1875 | |
1876 | |
1877 /* Return a symbol representing the weight of the font given by FONT. */ | |
1878 | |
1879 static INLINE Lisp_Object | |
1880 xlfd_symbolic_slant (font) | |
1881 struct font_name *font; | |
1882 { | |
1883 return xlfd_symbolic_value (slant_table, DIM (slant_table), | |
1884 font, XLFD_SLANT, Qnormal); | |
1885 } | |
1886 | |
1887 | |
1888 /* Return a numeric value for the weight of the font given by FONT. */ | |
1889 | |
1890 static INLINE int | |
1891 xlfd_numeric_weight (font) | |
1892 struct font_name *font; | |
1893 { | |
1894 return xlfd_numeric_value (weight_table, DIM (weight_table), | |
1895 font, XLFD_WEIGHT, XLFD_WEIGHT_MEDIUM); | |
1896 } | |
1897 | |
1898 | |
1899 /* Return a symbol representing the slant of the font given by FONT. */ | |
1900 | |
1901 static INLINE Lisp_Object | |
1902 xlfd_symbolic_weight (font) | |
1903 struct font_name *font; | |
1904 { | |
1905 return xlfd_symbolic_value (weight_table, DIM (weight_table), | |
1906 font, XLFD_WEIGHT, Qnormal); | |
1907 } | |
1908 | |
1909 | |
1910 /* Return a numeric value for the swidth of the font whose XLFD font | |
1911 name fields are found in FONT. */ | |
1912 | |
1913 static INLINE int | |
1914 xlfd_numeric_swidth (font) | |
1915 struct font_name *font; | |
1916 { | |
1917 return xlfd_numeric_value (swidth_table, DIM (swidth_table), | |
1918 font, XLFD_SWIDTH, XLFD_SWIDTH_MEDIUM); | |
1919 } | |
1920 | |
1921 | |
1922 /* Return a symbolic value for the swidth of FONT. */ | |
1923 | |
1924 static INLINE Lisp_Object | |
1925 xlfd_symbolic_swidth (font) | |
1926 struct font_name *font; | |
1927 { | |
1928 return xlfd_symbolic_value (swidth_table, DIM (swidth_table), | |
1929 font, XLFD_SWIDTH, Qnormal); | |
1930 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1931 |
24995 | 1932 |
1933 /* Look up the entry of SYMBOL in the vector TABLE which has DIM | |
1934 entries. Value is a pointer to the matching table entry or null if | |
1935 no element of TABLE contains SYMBOL. */ | |
1936 | |
1937 static struct table_entry * | |
1938 face_value (table, dim, symbol) | |
1939 struct table_entry *table; | |
1940 int dim; | |
1941 Lisp_Object symbol; | |
1942 { | |
1943 int i; | |
1944 | |
1945 xassert (SYMBOLP (symbol)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1946 |
24995 | 1947 for (i = 0; i < dim; ++i) |
1948 if (EQ (*table[i].symbol, symbol)) | |
1949 break; | |
1950 | |
1951 return i < dim ? table + i : NULL; | |
1952 } | |
1953 | |
1954 | |
1955 /* Return a numeric value for SYMBOL in the vector TABLE which has DIM | |
1956 entries. Value is -1 if SYMBOL is not found in TABLE. */ | |
1957 | |
1958 static INLINE int | |
1959 face_numeric_value (table, dim, symbol) | |
1960 struct table_entry *table; | |
1961 int dim; | |
1962 Lisp_Object symbol; | |
1963 { | |
1964 struct table_entry *p = face_value (table, dim, symbol); | |
1965 return p ? p->numeric : -1; | |
1966 } | |
1967 | |
1968 | |
1969 /* Return a numeric value representing the weight specified by Lisp | |
1970 symbol WEIGHT. Value is one of the enumerators of enum | |
1971 xlfd_weight. */ | |
1972 | |
1973 static INLINE int | |
1974 face_numeric_weight (weight) | |
1975 Lisp_Object weight; | |
1976 { | |
1977 return face_numeric_value (weight_table, DIM (weight_table), weight); | |
1978 } | |
1979 | |
1980 | |
1981 /* Return a numeric value representing the slant specified by Lisp | |
1982 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */ | |
1983 | |
1984 static INLINE int | |
1985 face_numeric_slant (slant) | |
1986 Lisp_Object slant; | |
1987 { | |
1988 return face_numeric_value (slant_table, DIM (slant_table), slant); | |
1989 } | |
1990 | |
1991 | |
1992 /* Return a numeric value representing the swidth specified by Lisp | |
1993 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */ | |
1994 | |
1995 static int | |
1996 face_numeric_swidth (width) | |
1997 Lisp_Object width; | |
1998 { | |
1999 return face_numeric_value (swidth_table, DIM (swidth_table), width); | |
2000 } | |
2001 | |
2002 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2003 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2004 |
2005 /* Return non-zero if FONT is the name of a fixed-pitch font. */ | |
2006 | |
2007 static INLINE int | |
2008 xlfd_fixed_p (font) | |
2009 struct font_name *font; | |
2010 { | |
2011 /* Function split_font_name converts fields to lower-case, so there | |
2012 is no need to use tolower here. */ | |
2013 return *font->fields[XLFD_SPACING] != 'p'; | |
2014 } | |
2015 | |
2016 | |
2017 /* Return the point size of FONT on frame F, measured in 1/10 pt. | |
2018 | |
2019 The actual height of the font when displayed on F depends on the | |
2020 resolution of both the font and frame. For example, a 10pt font | |
2021 designed for a 100dpi display will display larger than 10pt on a | |
2022 75dpi display. (It's not unusual to use fonts not designed for the | |
2023 display one is using. For example, some intlfonts are available in | |
2024 72dpi versions, only.) | |
2025 | |
2026 Value is the real point size of FONT on frame F, or 0 if it cannot | |
2027 be determined. */ | |
2028 | |
2029 static INLINE int | |
2030 xlfd_point_size (f, font) | |
2031 struct frame *f; | |
2032 struct font_name *font; | |
2033 { | |
2034 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
2035 double font_resy = atoi (font->fields[XLFD_RESY]); | |
2036 double font_pt = atoi (font->fields[XLFD_POINT_SIZE]); | |
2037 int real_pt; | |
2038 | |
2039 if (font_resy == 0 || font_pt == 0) | |
2040 real_pt = 0; | |
2041 else | |
2042 real_pt = (font_resy / resy) * font_pt + 0.5; | |
2043 | |
2044 return real_pt; | |
2045 } | |
2046 | |
2047 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2048 /* Return point size of PIXEL dots while considering Y-resultion (DPI) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2049 of frame F. This function is used to guess a point size of font |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2050 when only the pixel height of the font is available. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2051 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2052 static INLINE int |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2053 pixel_point_size (f, pixel) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2054 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2055 int pixel; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2056 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2057 double resy = FRAME_X_DISPLAY_INFO (f)->resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2058 double real_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2059 int int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2060 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2061 /* As one inch is 72 points, 72/RESY gives the point size of one dot. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2062 real_pt = pixel * 72 / resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2063 int_pt = real_pt + 0.5; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2064 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2065 return int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2066 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2067 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2068 |
24995 | 2069 /* Split XLFD font name FONT->name destructively into NUL-terminated, |
2070 lower-case fields in FONT->fields. NUMERIC_P non-zero means | |
2071 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH, | |
2072 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is | |
2073 zero if the font name doesn't have the format we expect. The | |
2074 expected format is a font name that starts with a `-' and has | |
2075 XLFD_LAST fields separated by `-'. (The XLFD specification allows | |
2076 forms of font names where certain field contents are enclosed in | |
2077 square brackets. We don't support that, for now. */ | |
2078 | |
2079 static int | |
2080 split_font_name (f, font, numeric_p) | |
2081 struct frame *f; | |
2082 struct font_name *font; | |
2083 int numeric_p; | |
2084 { | |
2085 int i = 0; | |
2086 int success_p; | |
2087 | |
2088 if (*font->name == '-') | |
2089 { | |
2090 char *p = xstrlwr (font->name) + 1; | |
2091 | |
2092 while (i < XLFD_LAST) | |
2093 { | |
2094 font->fields[i] = p; | |
2095 ++i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2096 |
24995 | 2097 while (*p && *p != '-') |
2098 ++p; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2099 |
24995 | 2100 if (*p != '-') |
2101 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2102 |
24995 | 2103 *p++ = 0; |
2104 } | |
2105 } | |
2106 | |
2107 success_p = i == XLFD_LAST; | |
2108 | |
2109 /* If requested, and font name was in the expected format, | |
2110 compute numeric values for some fields. */ | |
2111 if (numeric_p && success_p) | |
2112 { | |
2113 font->numeric[XLFD_POINT_SIZE] = xlfd_point_size (f, font); | |
2114 font->numeric[XLFD_RESY] = atoi (font->fields[XLFD_RESY]); | |
2115 font->numeric[XLFD_SLANT] = xlfd_numeric_slant (font); | |
2116 font->numeric[XLFD_WEIGHT] = xlfd_numeric_weight (font); | |
2117 font->numeric[XLFD_SWIDTH] = xlfd_numeric_swidth (font); | |
2118 } | |
2119 | |
2120 return success_p; | |
2121 } | |
2122 | |
2123 | |
2124 /* Build an XLFD font name from font name fields in FONT. Value is a | |
2125 pointer to the font name, which is allocated via xmalloc. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2126 |
24995 | 2127 static char * |
2128 build_font_name (font) | |
2129 struct font_name *font; | |
2130 { | |
2131 int i; | |
2132 int size = 100; | |
2133 char *font_name = (char *) xmalloc (size); | |
2134 int total_length = 0; | |
2135 | |
2136 for (i = 0; i < XLFD_LAST; ++i) | |
2137 { | |
2138 /* Add 1 because of the leading `-'. */ | |
2139 int len = strlen (font->fields[i]) + 1; | |
2140 | |
2141 /* Reallocate font_name if necessary. Add 1 for the final | |
2142 NUL-byte. */ | |
2143 if (total_length + len + 1 >= size) | |
2144 { | |
2145 int new_size = max (2 * size, size + len + 1); | |
2146 int sz = new_size * sizeof *font_name; | |
2147 font_name = (char *) xrealloc (font_name, sz); | |
2148 size = new_size; | |
2149 } | |
2150 | |
2151 font_name[total_length] = '-'; | |
2152 bcopy (font->fields[i], font_name + total_length + 1, len - 1); | |
2153 total_length += len; | |
2154 } | |
2155 | |
2156 font_name[total_length] = 0; | |
2157 return font_name; | |
2158 } | |
2159 | |
2160 | |
2161 /* Free an array FONTS of N font_name structures. This frees FONTS | |
2162 itself and all `name' fields in its elements. */ | |
2163 | |
2164 static INLINE void | |
2165 free_font_names (fonts, n) | |
2166 struct font_name *fonts; | |
2167 int n; | |
2168 { | |
2169 while (n) | |
2170 xfree (fonts[--n].name); | |
2171 xfree (fonts); | |
2172 } | |
2173 | |
2174 | |
2175 /* Sort vector FONTS of font_name structures which contains NFONTS | |
2176 elements using qsort and comparison function CMPFN. F is the frame | |
2177 on which the fonts will be used. The global variable font_frame | |
2178 is temporarily set to F to make it available in CMPFN. */ | |
2179 | |
2180 static INLINE void | |
2181 sort_fonts (f, fonts, nfonts, cmpfn) | |
2182 struct frame *f; | |
2183 struct font_name *fonts; | |
2184 int nfonts; | |
2185 int (*cmpfn) P_ ((const void *, const void *)); | |
2186 { | |
2187 font_frame = f; | |
2188 qsort (fonts, nfonts, sizeof *fonts, cmpfn); | |
2189 font_frame = NULL; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2190 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2191 |
24995 | 2192 |
2193 /* Get fonts matching PATTERN on frame F. If F is null, use the first | |
2194 display in x_display_list. FONTS is a pointer to a vector of | |
2195 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try | |
2196 alternative patterns from Valternate_fontname_alist if no fonts are | |
2197 found matching PATTERN. SCALABLE_FONTS_P non-zero means include | |
2198 scalable fonts. | |
2199 | |
2200 For all fonts found, set FONTS[i].name to the name of the font, | |
2201 allocated via xmalloc, and split font names into fields. Ignore | |
2202 fonts that we can't parse. Value is the number of fonts found. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2203 |
24995 | 2204 This is similar to x_list_fonts. The differences are: |
2205 | |
2206 1. It avoids consing. | |
2207 2. It never calls XLoadQueryFont. */ | |
2208 | |
2209 static int | |
2210 x_face_list_fonts (f, pattern, fonts, nfonts, try_alternatives_p, | |
2211 scalable_fonts_p) | |
2212 struct frame *f; | |
2213 char *pattern; | |
2214 struct font_name *fonts; | |
2215 int nfonts, try_alternatives_p; | |
2216 int scalable_fonts_p; | |
2217 { | |
2218 int n, i, j; | |
2219 char **names; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2220 #ifdef HAVE_X_WINDOWS |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2221 Display *dpy = f ? FRAME_X_DISPLAY (f) : x_display_list->display; |
24995 | 2222 |
2223 /* Get the list of fonts matching PATTERN from the X server. */ | |
2224 BLOCK_INPUT; | |
2225 names = XListFonts (dpy, pattern, nfonts, &n); | |
2226 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2227 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2228 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2229 /* NTEMACS_TODO : currently this uses w32_list_fonts, but it may be |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2230 better to do it the other way around. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2231 Lisp_Object lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2232 Lisp_Object lpattern, tem; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2233 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2234 n = 0; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2235 names = NULL; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2236 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2237 lpattern = build_string (pattern); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2238 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2239 /* Get the list of fonts matching PATTERN. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2240 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2241 lfonts = w32_list_fonts (f, lpattern, 0, nfonts); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2242 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2243 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2244 /* Count fonts returned */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2245 for (tem = lfonts; CONSP (tem); tem = XCDR (tem)) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2246 n++; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2247 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2248 /* Allocate array. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2249 if (n) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2250 names = (char **) xmalloc (n * sizeof (char *)); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2251 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2252 /* Extract font names into char * array. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2253 tem = lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2254 for (i = 0; i < n; i++) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2255 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2256 names[i] = XSTRING (XCAR (tem))->data; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2257 tem = XCDR (tem); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2258 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2259 #endif |
24995 | 2260 |
2261 if (names) | |
2262 { | |
2263 /* Make a copy of the font names we got from X, and | |
2264 split them into fields. */ | |
2265 for (i = j = 0; i < n; ++i) | |
2266 { | |
2267 /* Make a copy of the font name. */ | |
2268 fonts[j].name = xstrdup (names[i]); | |
2269 | |
2270 /* Ignore fonts having a name that we can't parse. */ | |
2271 if (!split_font_name (f, fonts + j, 1)) | |
2272 xfree (fonts[j].name); | |
2273 else if (font_scalable_p (fonts + j)) | |
2274 { | |
2275 #if SCALABLE_FONTS | |
2276 if (!scalable_fonts_p | |
2277 || !may_use_scalable_font_p (fonts + j, names[i])) | |
2278 xfree (fonts[j].name); | |
2279 else | |
2280 ++j; | |
2281 #else /* !SCALABLE_FONTS */ | |
2282 /* Always ignore scalable fonts. */ | |
2283 xfree (fonts[j].name); | |
2284 #endif /* !SCALABLE_FONTS */ | |
2285 } | |
2286 else | |
2287 ++j; | |
2288 } | |
2289 | |
2290 n = j; | |
2291 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2292 #ifdef HAVE_X_WINDOWS |
24995 | 2293 /* Free font names. */ |
2294 BLOCK_INPUT; | |
2295 XFreeFontNames (names); | |
2296 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2297 #endif |
24995 | 2298 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2299 |
24995 | 2300 |
2301 /* If no fonts found, try patterns from Valternate_fontname_alist. */ | |
2302 if (n == 0 && try_alternatives_p) | |
2303 { | |
2304 Lisp_Object list = Valternate_fontname_alist; | |
2305 | |
2306 while (CONSP (list)) | |
2307 { | |
2308 Lisp_Object entry = XCAR (list); | |
2309 if (CONSP (entry) | |
2310 && STRINGP (XCAR (entry)) | |
2311 && strcmp (XSTRING (XCAR (entry))->data, pattern) == 0) | |
2312 break; | |
2313 list = XCDR (list); | |
2314 } | |
2315 | |
2316 if (CONSP (list)) | |
2317 { | |
2318 Lisp_Object patterns = XCAR (list); | |
2319 Lisp_Object name; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2320 |
24995 | 2321 while (CONSP (patterns) |
2322 /* If list is screwed up, give up. */ | |
2323 && (name = XCAR (patterns), | |
2324 STRINGP (name)) | |
2325 /* Ignore patterns equal to PATTERN because we tried that | |
2326 already with no success. */ | |
2327 && (strcmp (XSTRING (name)->data, pattern) == 0 | |
2328 || (n = x_face_list_fonts (f, XSTRING (name)->data, | |
2329 fonts, nfonts, 0, | |
2330 scalable_fonts_p), | |
2331 n == 0))) | |
2332 patterns = XCDR (patterns); | |
2333 } | |
2334 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2335 |
24995 | 2336 return n; |
2337 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2338 |
24995 | 2339 |
2340 /* Determine the first font matching PATTERN on frame F. Return in | |
2341 *FONT the matching font name, split into fields. Value is non-zero | |
2342 if a match was found. */ | |
2343 | |
2344 static int | |
2345 first_font_matching (f, pattern, font) | |
2346 struct frame *f; | |
2347 char *pattern; | |
2348 struct font_name *font; | |
2349 { | |
2350 int nfonts = 100; | |
2351 struct font_name *fonts; | |
2352 | |
2353 fonts = (struct font_name *) xmalloc (nfonts * sizeof *fonts); | |
2354 nfonts = x_face_list_fonts (f, pattern, fonts, nfonts, 1, 0); | |
2355 | |
2356 if (nfonts > 0) | |
2357 { | |
2358 bcopy (&fonts[0], font, sizeof *font); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2359 |
24995 | 2360 fonts[0].name = NULL; |
2361 free_font_names (fonts, nfonts); | |
2362 } | |
2363 | |
2364 return nfonts > 0; | |
2365 } | |
2366 | |
2367 | |
2368 /* Determine fonts matching PATTERN on frame F. Sort resulting fonts | |
2369 using comparison function CMPFN. Value is the number of fonts | |
2370 found. If value is non-zero, *FONTS is set to a vector of | |
2371 font_name structures allocated from the heap containing matching | |
2372 fonts. Each element of *FONTS contains a name member that is also | |
2373 allocated from the heap. Font names in these structures are split | |
2374 into fields. Use free_font_names to free such an array. */ | |
2375 | |
2376 static int | |
2377 sorted_font_list (f, pattern, cmpfn, fonts) | |
2378 struct frame *f; | |
2379 char *pattern; | |
2380 int (*cmpfn) P_ ((const void *, const void *)); | |
2381 struct font_name **fonts; | |
2382 { | |
2383 int nfonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2384 |
24995 | 2385 /* Get the list of fonts matching pattern. 100 should suffice. */ |
25270 | 2386 nfonts = DEFAULT_FONT_LIST_LIMIT; |
2387 if (INTEGERP (Vfont_list_limit) && XINT (Vfont_list_limit) > 0) | |
2388 nfonts = XFASTINT (Vfont_list_limit); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2389 |
24995 | 2390 *fonts = (struct font_name *) xmalloc (nfonts * sizeof **fonts); |
2391 #if SCALABLE_FONTS | |
2392 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1, 1); | |
2393 #else | |
2394 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1, 0); | |
2395 #endif | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2396 |
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2397 /* Sort the resulting array and return it in *FONTS. If no |
24995 | 2398 fonts were found, make sure to set *FONTS to null. */ |
2399 if (nfonts) | |
2400 sort_fonts (f, *fonts, nfonts, cmpfn); | |
2401 else | |
2402 { | |
2403 xfree (*fonts); | |
2404 *fonts = NULL; | |
2405 } | |
2406 | |
2407 return nfonts; | |
2408 } | |
2409 | |
2410 | |
2411 /* Compare two font_name structures *A and *B. Value is analogous to | |
2412 strcmp. Sort order is given by the global variable | |
2413 font_sort_order. Font names are sorted so that, everything else | |
2414 being equal, fonts with a resolution closer to that of the frame on | |
2415 which they are used are listed first. The global variable | |
2416 font_frame is the frame on which we operate. */ | |
2417 | |
2418 static int | |
2419 cmp_font_names (a, b) | |
2420 const void *a, *b; | |
2421 { | |
2422 struct font_name *x = (struct font_name *) a; | |
2423 struct font_name *y = (struct font_name *) b; | |
2424 int cmp; | |
2425 | |
2426 /* All strings have been converted to lower-case by split_font_name, | |
2427 so we can use strcmp here. */ | |
2428 cmp = strcmp (x->fields[XLFD_FAMILY], y->fields[XLFD_FAMILY]); | |
2429 if (cmp == 0) | |
2430 { | |
2431 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2432 |
24995 | 2433 for (i = 0; i < DIM (font_sort_order) && cmp == 0; ++i) |
2434 { | |
2435 int j = font_sort_order[i]; | |
2436 cmp = x->numeric[j] - y->numeric[j]; | |
2437 } | |
2438 | |
2439 if (cmp == 0) | |
2440 { | |
2441 /* Everything else being equal, we prefer fonts with an | |
2442 y-resolution closer to that of the frame. */ | |
2443 int resy = FRAME_X_DISPLAY_INFO (font_frame)->resy; | |
2444 int x_resy = x->numeric[XLFD_RESY]; | |
2445 int y_resy = y->numeric[XLFD_RESY]; | |
2446 cmp = abs (resy - x_resy) - abs (resy - y_resy); | |
2447 } | |
2448 } | |
2449 | |
2450 return cmp; | |
2451 } | |
2452 | |
2453 | |
2454 /* Get a sorted list of fonts of family FAMILY on frame F. If PATTERN | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2455 is non-nil list fonts matching that pattern. Otherwise, if |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2456 REGISTRY is non-nil return only fonts with that registry, otherwise |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2457 return fonts of any registry. Set *FONTS to a vector of font_name |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2458 structures allocated from the heap containing the fonts found. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2459 Value is the number of fonts found. */ |
24995 | 2460 |
2461 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2462 font_list (f, pattern, family, registry, fonts) |
24995 | 2463 struct frame *f; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2464 Lisp_Object pattern, family, registry; |
24995 | 2465 struct font_name **fonts; |
2466 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2467 char *pattern_str, *family_str, *registry_str; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2468 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2469 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2470 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2471 family_str = (NILP (family) ? "*" : (char *) XSTRING (family)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2472 registry_str = (NILP (registry) ? "*" : (char *) XSTRING (registry)->data); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2473 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2474 pattern_str = (char *) alloca (strlen (family_str) |
29768
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2475 + strlen (registry_str) |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2476 + 10); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2477 strcpy (pattern_str, index (family_str, '-') ? "-" : "-*-"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2478 strcat (pattern_str, family_str); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2479 strcat (pattern_str, "-*-"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2480 strcat (pattern_str, registry_str); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2481 if (!index (registry_str, '-')) |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2482 { |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2483 if (registry_str[strlen (registry_str) - 1] == '*') |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2484 strcat (pattern_str, "-*"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2485 else |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2486 strcat (pattern_str, "*-*"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2487 } |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2488 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2489 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2490 pattern_str = (char *) XSTRING (pattern)->data; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2491 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2492 return sorted_font_list (f, pattern_str, cmp_font_names, fonts); |
24995 | 2493 } |
2494 | |
2495 | |
2496 /* Remove elements from LIST whose cars are `equal'. Called from | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2497 x-family-fonts and x-font-family-list to remove duplicate font |
24995 | 2498 entries. */ |
2499 | |
2500 static void | |
2501 remove_duplicates (list) | |
2502 Lisp_Object list; | |
2503 { | |
2504 Lisp_Object tail = list; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2505 |
24995 | 2506 while (!NILP (tail) && !NILP (XCDR (tail))) |
2507 { | |
2508 Lisp_Object next = XCDR (tail); | |
2509 if (!NILP (Fequal (XCAR (next), XCAR (tail)))) | |
2510 XCDR (tail) = XCDR (next); | |
2511 else | |
2512 tail = XCDR (tail); | |
2513 } | |
2514 } | |
2515 | |
2516 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2517 DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0, |
24995 | 2518 "Return a list of available fonts of family FAMILY on FRAME.\n\ |
2519 If FAMILY is omitted or nil, list all families.\n\ | |
2520 Otherwise, FAMILY must be a string, possibly containing wildcards\n\ | |
2521 `?' and `*'.\n\ | |
2522 If FRAME is omitted or nil, use the selected frame.\n\ | |
2523 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT\n\ | |
25270 | 2524 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].\n\ |
24995 | 2525 FAMILY is the font family name. POINT-SIZE is the size of the\n\ |
2526 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the\n\ | |
2527 width, weight and slant of the font. These symbols are the same as for\n\ | |
2528 face attributes. FIXED-P is non-nil if the font is fixed-pitch.\n\ | |
25270 | 2529 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string\n\ |
2530 giving the registry and encoding of the font.\n\ | |
24995 | 2531 The result list is sorted according to the current setting of\n\ |
2532 the face font sort order.") | |
2533 (family, frame) | |
2534 Lisp_Object family, frame; | |
2535 { | |
2536 struct frame *f = check_x_frame (frame); | |
2537 struct font_name *fonts; | |
2538 int i, nfonts; | |
2539 Lisp_Object result; | |
2540 struct gcpro gcpro1; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2541 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2542 if (!NILP (family)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2543 CHECK_STRING (family, 1); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2544 |
24995 | 2545 result = Qnil; |
2546 GCPRO1 (result); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2547 nfonts = font_list (f, Qnil, family, Qnil, &fonts); |
24995 | 2548 for (i = nfonts - 1; i >= 0; --i) |
2549 { | |
25270 | 2550 Lisp_Object v = Fmake_vector (make_number (8), Qnil); |
2551 char *tem; | |
24995 | 2552 |
2553 ASET (v, 0, build_string (fonts[i].fields[XLFD_FAMILY])); | |
2554 ASET (v, 1, xlfd_symbolic_swidth (fonts + i)); | |
2555 ASET (v, 2, make_number (xlfd_point_size (f, fonts + i))); | |
2556 ASET (v, 3, xlfd_symbolic_weight (fonts + i)); | |
2557 ASET (v, 4, xlfd_symbolic_slant (fonts + i)); | |
2558 ASET (v, 5, xlfd_fixed_p (fonts + i) ? Qt : Qnil); | |
25270 | 2559 tem = build_font_name (fonts + i); |
2560 ASET (v, 6, build_string (tem)); | |
2561 sprintf (tem, "%s-%s", fonts[i].fields[XLFD_REGISTRY], | |
2562 fonts[i].fields[XLFD_ENCODING]); | |
2563 ASET (v, 7, build_string (tem)); | |
2564 xfree (tem); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2565 |
24995 | 2566 result = Fcons (v, result); |
2567 } | |
2568 | |
2569 remove_duplicates (result); | |
2570 free_font_names (fonts, nfonts); | |
2571 UNGCPRO; | |
2572 return result; | |
2573 } | |
2574 | |
2575 | |
2576 DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list, | |
2577 0, 1, 0, | |
2578 "Return a list of available font families on FRAME.\n\ | |
2579 If FRAME is omitted or nil, use the selected frame.\n\ | |
2580 Value is a list of conses (FAMILY . FIXED-P) where FAMILY\n\ | |
2581 is a font family, and FIXED-P is non-nil if fonts of that family\n\ | |
2582 are fixed-pitch.") | |
2583 (frame) | |
2584 Lisp_Object frame; | |
2585 { | |
2586 struct frame *f = check_x_frame (frame); | |
2587 int nfonts, i; | |
2588 struct font_name *fonts; | |
2589 Lisp_Object result; | |
2590 struct gcpro gcpro1; | |
25270 | 2591 int count = specpdl_ptr - specpdl; |
2592 int limit; | |
2593 | |
2594 /* Let's consider all fonts. Increase the limit for matching | |
2595 fonts until we have them all. */ | |
2596 for (limit = 500;;) | |
2597 { | |
2598 specbind (intern ("font-list-limit"), make_number (limit)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2599 nfonts = font_list (f, Qnil, Qnil, Qnil, &fonts); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2600 |
25270 | 2601 if (nfonts == limit) |
2602 { | |
2603 free_font_names (fonts, nfonts); | |
2604 limit *= 2; | |
2605 } | |
2606 else | |
2607 break; | |
2608 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2609 |
24995 | 2610 result = Qnil; |
2611 GCPRO1 (result); | |
2612 for (i = nfonts - 1; i >= 0; --i) | |
2613 result = Fcons (Fcons (build_string (fonts[i].fields[XLFD_FAMILY]), | |
2614 xlfd_fixed_p (fonts + i) ? Qt : Qnil), | |
2615 result); | |
2616 | |
2617 remove_duplicates (result); | |
2618 free_font_names (fonts, nfonts); | |
2619 UNGCPRO; | |
25270 | 2620 return unbind_to (count, result); |
24995 | 2621 } |
2622 | |
2623 | |
2624 DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0, | |
2625 "Return a list of the names of available fonts matching PATTERN.\n\ | |
2626 If optional arguments FACE and FRAME are specified, return only fonts\n\ | |
2627 the same size as FACE on FRAME.\n\ | |
2628 PATTERN is a string, perhaps with wildcard characters;\n\ | |
2629 the * character matches any substring, and\n\ | |
2630 the ? character matches any single character.\n\ | |
2631 PATTERN is case-insensitive.\n\ | |
2632 FACE is a face name--a symbol.\n\ | |
2633 \n\ | |
2634 The return value is a list of strings, suitable as arguments to\n\ | |
2635 set-face-font.\n\ | |
2636 \n\ | |
2637 Fonts Emacs can't use may or may not be excluded\n\ | |
2638 even if they match PATTERN and FACE.\n\ | |
2639 The optional fourth argument MAXIMUM sets a limit on how many\n\ | |
2640 fonts to match. The first MAXIMUM fonts are reported.\n\ | |
2641 The optional fifth argument WIDTH, if specified, is a number of columns\n\ | |
2642 occupied by a character of a font. In that case, return only fonts\n\ | |
2643 the WIDTH times as wide as FACE on FRAME.") | |
2644 (pattern, face, frame, maximum, width) | |
2645 Lisp_Object pattern, face, frame, maximum, width; | |
2646 { | |
2647 struct frame *f; | |
2648 int size; | |
2649 int maxnames; | |
2650 | |
2651 check_x (); | |
2652 CHECK_STRING (pattern, 0); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2653 |
24995 | 2654 if (NILP (maximum)) |
2655 maxnames = 2000; | |
2656 else | |
2657 { | |
2658 CHECK_NATNUM (maximum, 0); | |
2659 maxnames = XINT (maximum); | |
2660 } | |
2661 | |
2662 if (!NILP (width)) | |
2663 CHECK_NUMBER (width, 4); | |
2664 | |
2665 /* We can't simply call check_x_frame because this function may be | |
2666 called before any frame is created. */ | |
2667 f = frame_or_selected_frame (frame, 2); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2668 if (!FRAME_WINDOW_P (f)) |
24995 | 2669 { |
2670 /* Perhaps we have not yet created any frame. */ | |
2671 f = NULL; | |
2672 face = Qnil; | |
2673 } | |
2674 | |
2675 /* Determine the width standard for comparison with the fonts we find. */ | |
2676 | |
2677 if (NILP (face)) | |
2678 size = 0; | |
2679 else | |
2680 { | |
2681 /* This is of limited utility since it works with character | |
2682 widths. Keep it for compatibility. --gerd. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2683 int face_id = lookup_named_face (f, face, 0); |
24995 | 2684 struct face *face = FACE_FROM_ID (f, face_id); |
2685 | |
2686 if (face->font) | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2687 size = FONT_WIDTH (face->font); |
24995 | 2688 else |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2689 size = FONT_WIDTH (FRAME_FONT (f)); |
24995 | 2690 |
2691 if (!NILP (width)) | |
2692 size *= XINT (width); | |
2693 } | |
2694 | |
2695 { | |
2696 Lisp_Object args[2]; | |
2697 | |
2698 args[0] = x_list_fonts (f, pattern, size, maxnames); | |
2699 if (f == NULL) | |
2700 /* We don't have to check fontsets. */ | |
2701 return args[0]; | |
2702 args[1] = list_fontsets (f, pattern, size); | |
2703 return Fnconc (2, args); | |
2704 } | |
2705 } | |
2706 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2707 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 2708 |
2709 | |
2710 | |
2711 /*********************************************************************** | |
2712 Lisp Faces | |
2713 ***********************************************************************/ | |
2714 | |
2715 /* Access face attributes of face FACE, a Lisp vector. */ | |
2716 | |
2717 #define LFACE_FAMILY(LFACE) \ | |
2718 XVECTOR (LFACE)->contents[LFACE_FAMILY_INDEX] | |
2719 #define LFACE_HEIGHT(LFACE) \ | |
2720 XVECTOR (LFACE)->contents[LFACE_HEIGHT_INDEX] | |
2721 #define LFACE_WEIGHT(LFACE) \ | |
2722 XVECTOR (LFACE)->contents[LFACE_WEIGHT_INDEX] | |
2723 #define LFACE_SLANT(LFACE) \ | |
2724 XVECTOR (LFACE)->contents[LFACE_SLANT_INDEX] | |
2725 #define LFACE_UNDERLINE(LFACE) \ | |
2726 XVECTOR (LFACE)->contents[LFACE_UNDERLINE_INDEX] | |
2727 #define LFACE_INVERSE(LFACE) \ | |
2728 XVECTOR (LFACE)->contents[LFACE_INVERSE_INDEX] | |
2729 #define LFACE_FOREGROUND(LFACE) \ | |
2730 XVECTOR (LFACE)->contents[LFACE_FOREGROUND_INDEX] | |
2731 #define LFACE_BACKGROUND(LFACE) \ | |
2732 XVECTOR (LFACE)->contents[LFACE_BACKGROUND_INDEX] | |
2733 #define LFACE_STIPPLE(LFACE) \ | |
2734 XVECTOR (LFACE)->contents[LFACE_STIPPLE_INDEX] | |
2735 #define LFACE_SWIDTH(LFACE) \ | |
2736 XVECTOR (LFACE)->contents[LFACE_SWIDTH_INDEX] | |
2737 #define LFACE_OVERLINE(LFACE) \ | |
2738 XVECTOR (LFACE)->contents[LFACE_OVERLINE_INDEX] | |
2739 #define LFACE_STRIKE_THROUGH(LFACE) \ | |
2740 XVECTOR (LFACE)->contents[LFACE_STRIKE_THROUGH_INDEX] | |
2741 #define LFACE_BOX(LFACE) \ | |
2742 XVECTOR (LFACE)->contents[LFACE_BOX_INDEX] | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2743 #define LFACE_FONT(LFACE) \ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2744 XVECTOR (LFACE)->contents[LFACE_FONT_INDEX] |
24995 | 2745 |
2746 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size | |
2747 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */ | |
2748 | |
2749 #define LFACEP(LFACE) \ | |
2750 (VECTORP (LFACE) \ | |
2751 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \ | |
2752 && EQ (XVECTOR (LFACE)->contents[0], Qface)) | |
2753 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2754 |
24995 | 2755 #if GLYPH_DEBUG |
2756 | |
2757 /* Check consistency of Lisp face attribute vector ATTRS. */ | |
2758 | |
2759 static void | |
2760 check_lface_attrs (attrs) | |
2761 Lisp_Object *attrs; | |
2762 { | |
2763 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX]) | |
2764 || STRINGP (attrs[LFACE_FAMILY_INDEX])); | |
2765 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX]) | |
2766 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX])); | |
2767 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX]) | |
2768 || INTEGERP (attrs[LFACE_HEIGHT_INDEX])); | |
2769 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX]) | |
2770 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX])); | |
2771 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX]) | |
2772 || SYMBOLP (attrs[LFACE_SLANT_INDEX])); | |
2773 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX]) | |
2774 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX]) | |
2775 || STRINGP (attrs[LFACE_UNDERLINE_INDEX])); | |
2776 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX]) | |
2777 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX]) | |
2778 || STRINGP (attrs[LFACE_OVERLINE_INDEX])); | |
2779 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2780 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2781 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX])); | |
2782 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX]) | |
2783 || SYMBOLP (attrs[LFACE_BOX_INDEX]) | |
2784 || STRINGP (attrs[LFACE_BOX_INDEX]) | |
2785 || INTEGERP (attrs[LFACE_BOX_INDEX]) | |
2786 || CONSP (attrs[LFACE_BOX_INDEX])); | |
2787 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX]) | |
2788 || SYMBOLP (attrs[LFACE_INVERSE_INDEX])); | |
2789 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX]) | |
2790 || STRINGP (attrs[LFACE_FOREGROUND_INDEX])); | |
2791 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX]) | |
2792 || STRINGP (attrs[LFACE_BACKGROUND_INDEX])); | |
2793 #ifdef HAVE_WINDOW_SYSTEM | |
2794 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX]) | |
2795 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX]) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
2796 || !NILP (Fbitmap_spec_p (attrs[LFACE_STIPPLE_INDEX]))); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2797 xassert (UNSPECIFIEDP (attrs[LFACE_FONT_INDEX]) |
28237
2f636fd2f714
(check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
Gerd Moellmann <gerd@gnu.org>
parents:
28230
diff
changeset
|
2798 || NILP (attrs[LFACE_FONT_INDEX]) |
2f636fd2f714
(check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
Gerd Moellmann <gerd@gnu.org>
parents:
28230
diff
changeset
|
2799 || STRINGP (attrs[LFACE_FONT_INDEX])); |
24995 | 2800 #endif |
2801 } | |
2802 | |
2803 | |
2804 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */ | |
2805 | |
2806 static void | |
2807 check_lface (lface) | |
2808 Lisp_Object lface; | |
2809 { | |
2810 if (!NILP (lface)) | |
2811 { | |
2812 xassert (LFACEP (lface)); | |
2813 check_lface_attrs (XVECTOR (lface)->contents); | |
2814 } | |
2815 } | |
2816 | |
2817 #else /* GLYPH_DEBUG == 0 */ | |
2818 | |
2819 #define check_lface_attrs(attrs) (void) 0 | |
2820 #define check_lface(lface) (void) 0 | |
2821 | |
2822 #endif /* GLYPH_DEBUG == 0 */ | |
2823 | |
2824 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2825 /* Resolve face name FACE_NAME. If FACE_NAME is a string, intern it |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2826 to make it a symvol. If FACE_NAME is an alias for another face, |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2827 return that face's name. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2828 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2829 static Lisp_Object |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2830 resolve_face_name (face_name) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2831 Lisp_Object face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2832 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2833 Lisp_Object aliased; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2834 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2835 if (STRINGP (face_name)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2836 face_name = intern (XSTRING (face_name)->data); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2837 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2838 for (;;) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2839 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2840 aliased = Fget (face_name, Qface_alias); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2841 if (NILP (aliased)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2842 break; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2843 else |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2844 face_name = aliased; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2845 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2846 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2847 return face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2848 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2849 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2850 |
24995 | 2851 /* Return the face definition of FACE_NAME on frame F. F null means |
2852 return the global definition. FACE_NAME may be a string or a | |
2853 symbol (apparently Emacs 20.2 allows strings as face names in face | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2854 text properties; ediff uses that). If FACE_NAME is an alias for |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2855 another face, return that face's definition. If SIGNAL_P is |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2856 non-zero, signal an error if FACE_NAME is not a valid face name. |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2857 If SIGNAL_P is zero, value is nil if FACE_NAME is not a valid face |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2858 name. */ |
24995 | 2859 |
2860 static INLINE Lisp_Object | |
2861 lface_from_face_name (f, face_name, signal_p) | |
2862 struct frame *f; | |
2863 Lisp_Object face_name; | |
2864 int signal_p; | |
2865 { | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2866 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2867 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2868 face_name = resolve_face_name (face_name); |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2869 |
24995 | 2870 if (f) |
2871 lface = assq_no_quit (face_name, f->face_alist); | |
2872 else | |
2873 lface = assq_no_quit (face_name, Vface_new_frame_defaults); | |
2874 | |
2875 if (CONSP (lface)) | |
2876 lface = XCDR (lface); | |
2877 else if (signal_p) | |
2878 signal_error ("Invalid face", face_name); | |
2879 | |
2880 check_lface (lface); | |
2881 return lface; | |
2882 } | |
2883 | |
2884 | |
2885 /* Get face attributes of face FACE_NAME from frame-local faces on | |
2886 frame F. Store the resulting attributes in ATTRS which must point | |
2887 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P | |
2888 is non-zero, signal an error if FACE_NAME does not name a face. | |
2889 Otherwise, value is zero if FACE_NAME is not a face. */ | |
2890 | |
2891 static INLINE int | |
2892 get_lface_attributes (f, face_name, attrs, signal_p) | |
2893 struct frame *f; | |
2894 Lisp_Object face_name; | |
2895 Lisp_Object *attrs; | |
2896 int signal_p; | |
2897 { | |
2898 Lisp_Object lface; | |
2899 int success_p; | |
2900 | |
2901 lface = lface_from_face_name (f, face_name, signal_p); | |
2902 if (!NILP (lface)) | |
2903 { | |
2904 bcopy (XVECTOR (lface)->contents, attrs, | |
2905 LFACE_VECTOR_SIZE * sizeof *attrs); | |
2906 success_p = 1; | |
2907 } | |
2908 else | |
2909 success_p = 0; | |
2910 | |
2911 return success_p; | |
2912 } | |
2913 | |
2914 | |
2915 /* Non-zero if all attributes in face attribute vector ATTRS are | |
2916 specified, i.e. are non-nil. */ | |
2917 | |
2918 static int | |
2919 lface_fully_specified_p (attrs) | |
2920 Lisp_Object *attrs; | |
2921 { | |
2922 int i; | |
2923 | |
2924 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
28237
2f636fd2f714
(check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
Gerd Moellmann <gerd@gnu.org>
parents:
28230
diff
changeset
|
2925 if (UNSPECIFIEDP (attrs[i]) && i != LFACE_FONT_INDEX) |
24995 | 2926 break; |
2927 | |
2928 return i == LFACE_VECTOR_SIZE; | |
2929 } | |
2930 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2931 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2932 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2933 /* Set font-related attributes of Lisp face LFACE from the fullname of |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2934 the font opened by FONTNAME. If FORCE_P is zero, set only |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2935 unspecified attributes of LFACE. The exception is `font' |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2936 attribute. It is set to FONTNAME as is regardless of FORCE_P. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2937 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2938 If FONTNAME is not available on frame F, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2939 return 0 if MAY_FAIL_P is non-zero, otherwise abort. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2940 If the fullname is not in a valid XLFD format, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2941 return 0 if MAY_FAIL_P is non-zero, otherwise set normal values |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2942 in LFACE and return 1. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2943 Otherwise, return 1. */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2944 |
24995 | 2945 static int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2946 set_lface_from_font_name (f, lface, fontname, force_p, may_fail_p) |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
2947 struct frame *f; |
24995 | 2948 Lisp_Object lface; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2949 Lisp_Object fontname; |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2950 int force_p, may_fail_p; |
24995 | 2951 { |
2952 struct font_name font; | |
2953 char *buffer; | |
2954 int pt; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2955 int have_xlfd_p; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2956 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2957 char *font_name = XSTRING (fontname)->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2958 struct font_info *font_info; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2959 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2960 /* If FONTNAME is actually a fontset name, get ASCII font name of it. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2961 fontset = fs_query_fontset (fontname, 0); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2962 if (fontset >= 0) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2963 font_name = XSTRING (fontset_ascii (fontset))->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2964 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2965 /* Check if FONT_NAME is surely available on the system. Usually |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2966 FONT_NAME is already cached for the frame F and FS_LOAD_FONT |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2967 returns quickly. But, even if FONT_NAME is not yet cached, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2968 caching it now is not futail because we anyway load the font |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2969 later. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2970 BLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2971 font_info = FS_LOAD_FONT (f, 0, font_name, -1); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2972 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2973 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2974 if (!font_info) |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2975 { |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2976 if (may_fail_p) |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2977 return 0; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2978 abort (); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2979 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2980 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2981 font.name = STRDUPA (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2982 have_xlfd_p = split_font_name (f, &font, 1); |
24995 | 2983 |
2984 /* Set attributes only if unspecified, otherwise face defaults for | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2985 new frames would never take effect. If we couldn't get a font |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2986 name conforming to XLFD, set normal values. */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2987 |
24995 | 2988 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface))) |
2989 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2990 Lisp_Object val; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2991 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2992 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2993 buffer = (char *) alloca (strlen (font.fields[XLFD_FAMILY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2994 + strlen (font.fields[XLFD_FOUNDRY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2995 + 2); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2996 sprintf (buffer, "%s-%s", font.fields[XLFD_FOUNDRY], |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2997 font.fields[XLFD_FAMILY]); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2998 val = build_string (buffer); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2999 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3000 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3001 val = build_string ("*"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3002 LFACE_FAMILY (lface) = val; |
24995 | 3003 } |
3004 | |
3005 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface))) | |
3006 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3007 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3008 pt = xlfd_point_size (f, &font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3009 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3010 pt = pixel_point_size (f, font_info->height * 10); |
24995 | 3011 xassert (pt > 0); |
3012 LFACE_HEIGHT (lface) = make_number (pt); | |
3013 } | |
3014 | |
3015 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3016 LFACE_SWIDTH (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3017 = have_xlfd_p ? xlfd_symbolic_swidth (&font) : Qnormal; |
24995 | 3018 |
3019 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3020 LFACE_WEIGHT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3021 = have_xlfd_p ? xlfd_symbolic_weight (&font) : Qnormal; |
24995 | 3022 |
3023 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3024 LFACE_SLANT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3025 = have_xlfd_p ? xlfd_symbolic_slant (&font) : Qnormal; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3026 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3027 LFACE_FONT (lface) = fontname; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3028 |
24995 | 3029 return 1; |
3030 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3031 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3032 |
3033 | |
3034 /* Merge two Lisp face attribute vectors FROM and TO and store the | |
3035 resulting attributes in TO. Every non-nil attribute of FROM | |
3036 overrides the corresponding attribute of TO. */ | |
3037 | |
3038 static INLINE void | |
3039 merge_face_vectors (from, to) | |
3040 Lisp_Object *from, *to; | |
3041 { | |
3042 int i; | |
3043 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3044 if (!UNSPECIFIEDP (from[i])) | |
3045 to[i] = from[i]; | |
3046 } | |
3047 | |
3048 | |
3049 /* Given a Lisp face attribute vector TO and a Lisp object PROP that | |
3050 is a face property, determine the resulting face attributes on | |
3051 frame F, and store them in TO. PROP may be a single face | |
3052 specification or a list of such specifications. Each face | |
3053 specification can be | |
3054 | |
3055 1. A symbol or string naming a Lisp face. | |
3056 | |
3057 2. A property list of the form (KEYWORD VALUE ...) where each | |
3058 KEYWORD is a face attribute name, and value is an appropriate value | |
3059 for that attribute. | |
3060 | |
3061 3. Conses or the form (FOREGROUND-COLOR . COLOR) or | |
3062 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is | |
3063 for compatibility with 20.2. | |
3064 | |
3065 Face specifications earlier in lists take precedence over later | |
3066 specifications. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3067 |
24995 | 3068 static void |
3069 merge_face_vector_with_property (f, to, prop) | |
3070 struct frame *f; | |
3071 Lisp_Object *to; | |
3072 Lisp_Object prop; | |
3073 { | |
3074 if (CONSP (prop)) | |
3075 { | |
3076 Lisp_Object first = XCAR (prop); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3077 |
24995 | 3078 if (EQ (first, Qforeground_color) |
3079 || EQ (first, Qbackground_color)) | |
3080 { | |
3081 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR | |
3082 . COLOR). COLOR must be a string. */ | |
3083 Lisp_Object color_name = XCDR (prop); | |
3084 Lisp_Object color = first; | |
3085 | |
3086 if (STRINGP (color_name)) | |
3087 { | |
3088 if (EQ (color, Qforeground_color)) | |
3089 to[LFACE_FOREGROUND_INDEX] = color_name; | |
3090 else | |
3091 to[LFACE_BACKGROUND_INDEX] = color_name; | |
3092 } | |
3093 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3094 add_to_log ("Invalid face color", color_name, Qnil); |
24995 | 3095 } |
3096 else if (SYMBOLP (first) | |
3097 && *XSYMBOL (first)->name->data == ':') | |
3098 { | |
3099 /* Assume this is the property list form. */ | |
3100 while (CONSP (prop) && CONSP (XCDR (prop))) | |
3101 { | |
3102 Lisp_Object keyword = XCAR (prop); | |
3103 Lisp_Object value = XCAR (XCDR (prop)); | |
3104 | |
3105 if (EQ (keyword, QCfamily)) | |
3106 { | |
3107 if (STRINGP (value)) | |
3108 to[LFACE_FAMILY_INDEX] = value; | |
3109 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3110 add_to_log ("Invalid face font family", value, Qnil); |
24995 | 3111 } |
3112 else if (EQ (keyword, QCheight)) | |
3113 { | |
3114 if (INTEGERP (value)) | |
3115 to[LFACE_HEIGHT_INDEX] = value; | |
3116 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3117 add_to_log ("Invalid face font height", value, Qnil); |
24995 | 3118 } |
3119 else if (EQ (keyword, QCweight)) | |
3120 { | |
3121 if (SYMBOLP (value) | |
3122 && face_numeric_weight (value) >= 0) | |
3123 to[LFACE_WEIGHT_INDEX] = value; | |
3124 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3125 add_to_log ("Invalid face weight", value, Qnil); |
24995 | 3126 } |
3127 else if (EQ (keyword, QCslant)) | |
3128 { | |
3129 if (SYMBOLP (value) | |
3130 && face_numeric_slant (value) >= 0) | |
3131 to[LFACE_SLANT_INDEX] = value; | |
3132 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3133 add_to_log ("Invalid face slant", value, Qnil); |
24995 | 3134 } |
3135 else if (EQ (keyword, QCunderline)) | |
3136 { | |
3137 if (EQ (value, Qt) | |
3138 || NILP (value) | |
3139 || STRINGP (value)) | |
3140 to[LFACE_UNDERLINE_INDEX] = value; | |
3141 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3142 add_to_log ("Invalid face underline", value, Qnil); |
24995 | 3143 } |
3144 else if (EQ (keyword, QCoverline)) | |
3145 { | |
3146 if (EQ (value, Qt) | |
3147 || NILP (value) | |
3148 || STRINGP (value)) | |
3149 to[LFACE_OVERLINE_INDEX] = value; | |
3150 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3151 add_to_log ("Invalid face overline", value, Qnil); |
24995 | 3152 } |
3153 else if (EQ (keyword, QCstrike_through)) | |
3154 { | |
3155 if (EQ (value, Qt) | |
3156 || NILP (value) | |
3157 || STRINGP (value)) | |
3158 to[LFACE_STRIKE_THROUGH_INDEX] = value; | |
3159 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3160 add_to_log ("Invalid face strike-through", value, Qnil); |
24995 | 3161 } |
3162 else if (EQ (keyword, QCbox)) | |
3163 { | |
3164 if (EQ (value, Qt)) | |
3165 value = make_number (1); | |
3166 if (INTEGERP (value) | |
3167 || STRINGP (value) | |
3168 || CONSP (value) | |
3169 || NILP (value)) | |
3170 to[LFACE_BOX_INDEX] = value; | |
3171 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3172 add_to_log ("Invalid face box", value, Qnil); |
24995 | 3173 } |
3174 else if (EQ (keyword, QCinverse_video) | |
3175 || EQ (keyword, QCreverse_video)) | |
3176 { | |
3177 if (EQ (value, Qt) || NILP (value)) | |
3178 to[LFACE_INVERSE_INDEX] = value; | |
3179 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3180 add_to_log ("Invalid face inverse-video", value, Qnil); |
24995 | 3181 } |
3182 else if (EQ (keyword, QCforeground)) | |
3183 { | |
3184 if (STRINGP (value)) | |
3185 to[LFACE_FOREGROUND_INDEX] = value; | |
3186 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3187 add_to_log ("Invalid face foreground", value, Qnil); |
24995 | 3188 } |
3189 else if (EQ (keyword, QCbackground)) | |
3190 { | |
3191 if (STRINGP (value)) | |
3192 to[LFACE_BACKGROUND_INDEX] = value; | |
3193 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3194 add_to_log ("Invalid face background", value, Qnil); |
24995 | 3195 } |
3196 else if (EQ (keyword, QCstipple)) | |
3197 { | |
3198 #ifdef HAVE_X_WINDOWS | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3199 Lisp_Object pixmap_p = Fbitmap_spec_p (value); |
24995 | 3200 if (!NILP (pixmap_p)) |
3201 to[LFACE_STIPPLE_INDEX] = value; | |
3202 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3203 add_to_log ("Invalid face stipple", value, Qnil); |
24995 | 3204 #endif |
3205 } | |
3206 else if (EQ (keyword, QCwidth)) | |
3207 { | |
3208 if (SYMBOLP (value) | |
3209 && face_numeric_swidth (value) >= 0) | |
3210 to[LFACE_SWIDTH_INDEX] = value; | |
3211 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3212 add_to_log ("Invalid face width", value, Qnil); |
24995 | 3213 } |
3214 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3215 add_to_log ("Invalid attribute %s in face property", |
25301
2042c4a224ad
(add_to_log): Renamed from display_message.
Gerd Moellmann <gerd@gnu.org>
parents:
25270
diff
changeset
|
3216 keyword, Qnil); |
24995 | 3217 |
3218 prop = XCDR (XCDR (prop)); | |
3219 } | |
3220 } | |
3221 else | |
3222 { | |
3223 /* This is a list of face specs. Specifications at the | |
3224 beginning of the list take precedence over later | |
3225 specifications, so we have to merge starting with the | |
3226 last specification. */ | |
3227 Lisp_Object next = XCDR (prop); | |
3228 if (!NILP (next)) | |
3229 merge_face_vector_with_property (f, to, next); | |
3230 merge_face_vector_with_property (f, to, first); | |
3231 } | |
3232 } | |
3233 else | |
3234 { | |
3235 /* PROP ought to be a face name. */ | |
3236 Lisp_Object lface = lface_from_face_name (f, prop, 0); | |
3237 if (NILP (lface)) | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3238 add_to_log ("Invalid face text property value: %s", prop, Qnil); |
24995 | 3239 else |
3240 merge_face_vectors (XVECTOR (lface)->contents, to); | |
3241 } | |
3242 } | |
3243 | |
3244 | |
3245 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face, | |
3246 Sinternal_make_lisp_face, 1, 2, 0, | |
3247 "Make FACE, a symbol, a Lisp face with all attributes nil.\n\ | |
3248 If FACE was not known as a face before, create a new one.\n\ | |
3249 If optional argument FRAME is specified, make a frame-local face\n\ | |
3250 for that frame. Otherwise operate on the global face definition.\n\ | |
3251 Value is a vector of face attributes.") | |
3252 (face, frame) | |
3253 Lisp_Object face, frame; | |
3254 { | |
3255 Lisp_Object global_lface, lface; | |
3256 struct frame *f; | |
3257 int i; | |
3258 | |
3259 CHECK_SYMBOL (face, 0); | |
3260 global_lface = lface_from_face_name (NULL, face, 0); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3261 |
24995 | 3262 if (!NILP (frame)) |
3263 { | |
3264 CHECK_LIVE_FRAME (frame, 1); | |
3265 f = XFRAME (frame); | |
3266 lface = lface_from_face_name (f, face, 0); | |
3267 } | |
3268 else | |
3269 f = NULL, lface = Qnil; | |
3270 | |
3271 /* Add a global definition if there is none. */ | |
3272 if (NILP (global_lface)) | |
3273 { | |
3274 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3275 Qunspecified); | |
3276 XVECTOR (global_lface)->contents[0] = Qface; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3277 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface), |
24995 | 3278 Vface_new_frame_defaults); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3279 |
24995 | 3280 /* Assign the new Lisp face a unique ID. The mapping from Lisp |
3281 face id to Lisp face is given by the vector lface_id_to_name. | |
3282 The mapping from Lisp face to Lisp face id is given by the | |
3283 property `face' of the Lisp face name. */ | |
3284 if (next_lface_id == lface_id_to_name_size) | |
3285 { | |
3286 int new_size = max (50, 2 * lface_id_to_name_size); | |
3287 int sz = new_size * sizeof *lface_id_to_name; | |
3288 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz); | |
3289 lface_id_to_name_size = new_size; | |
3290 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3291 |
24995 | 3292 lface_id_to_name[next_lface_id] = face; |
3293 Fput (face, Qface, make_number (next_lface_id)); | |
3294 ++next_lface_id; | |
3295 } | |
3296 else if (f == NULL) | |
3297 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3298 XVECTOR (global_lface)->contents[i] = Qunspecified; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3299 |
24995 | 3300 /* Add a frame-local definition. */ |
3301 if (f) | |
3302 { | |
3303 if (NILP (lface)) | |
3304 { | |
3305 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3306 Qunspecified); | |
3307 XVECTOR (lface)->contents[0] = Qface; | |
3308 f->face_alist = Fcons (Fcons (face, lface), f->face_alist); | |
3309 } | |
3310 else | |
3311 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3312 XVECTOR (lface)->contents[i] = Qunspecified; | |
3313 } | |
3314 else | |
3315 lface = global_lface; | |
3316 | |
3317 xassert (LFACEP (lface)); | |
3318 check_lface (lface); | |
3319 return lface; | |
3320 } | |
3321 | |
3322 | |
3323 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p, | |
3324 Sinternal_lisp_face_p, 1, 2, 0, | |
3325 "Return non-nil if FACE names a face.\n\ | |
3326 If optional second parameter FRAME is non-nil, check for the\n\ | |
3327 existence of a frame-local face with name FACE on that frame.\n\ | |
3328 Otherwise check for the existence of a global face.") | |
3329 (face, frame) | |
3330 Lisp_Object face, frame; | |
3331 { | |
3332 Lisp_Object lface; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3333 |
24995 | 3334 if (!NILP (frame)) |
3335 { | |
3336 CHECK_LIVE_FRAME (frame, 1); | |
3337 lface = lface_from_face_name (XFRAME (frame), face, 0); | |
3338 } | |
3339 else | |
3340 lface = lface_from_face_name (NULL, face, 0); | |
3341 | |
3342 return lface; | |
3343 } | |
3344 | |
3345 | |
3346 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face, | |
3347 Sinternal_copy_lisp_face, 4, 4, 0, | |
3348 "Copy face FROM to TO.\n\ | |
3349 If FRAME it t, copy the global face definition of FROM to the\n\ | |
3350 global face definition of TO. Otherwise, copy the frame-local\n\ | |
3351 definition of FROM on FRAME to the frame-local definition of TO\n\ | |
3352 on NEW-FRAME, or FRAME if NEW-FRAME is nil.\n\ | |
3353 \n\ | |
3354 Value is TO.") | |
3355 (from, to, frame, new_frame) | |
3356 Lisp_Object from, to, frame, new_frame; | |
3357 { | |
3358 Lisp_Object lface, copy; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3359 |
24995 | 3360 CHECK_SYMBOL (from, 0); |
3361 CHECK_SYMBOL (to, 1); | |
3362 if (NILP (new_frame)) | |
3363 new_frame = frame; | |
3364 | |
3365 if (EQ (frame, Qt)) | |
3366 { | |
3367 /* Copy global definition of FROM. We don't make copies of | |
3368 strings etc. because 20.2 didn't do it either. */ | |
3369 lface = lface_from_face_name (NULL, from, 1); | |
3370 copy = Finternal_make_lisp_face (to, Qnil); | |
3371 } | |
3372 else | |
3373 { | |
3374 /* Copy frame-local definition of FROM. */ | |
3375 CHECK_LIVE_FRAME (frame, 2); | |
3376 CHECK_LIVE_FRAME (new_frame, 3); | |
3377 lface = lface_from_face_name (XFRAME (frame), from, 1); | |
3378 copy = Finternal_make_lisp_face (to, new_frame); | |
3379 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3380 |
24995 | 3381 bcopy (XVECTOR (lface)->contents, XVECTOR (copy)->contents, |
3382 LFACE_VECTOR_SIZE * sizeof (Lisp_Object)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3383 |
24995 | 3384 return to; |
3385 } | |
3386 | |
3387 | |
3388 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute, | |
3389 Sinternal_set_lisp_face_attribute, 3, 4, 0, | |
3390 "Set attribute ATTR of FACE to VALUE.\n\ | |
3391 If optional argument FRAME is given, set the face attribute of face FACE\n\ | |
3392 on that frame. If FRAME is t, set the attribute of the default for face\n\ | |
3393 FACE (for new frames). If FRAME is omitted or nil, use the selected\n\ | |
3394 frame.") | |
3395 (face, attr, value, frame) | |
3396 Lisp_Object face, attr, value, frame; | |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
3397 { |
24995 | 3398 Lisp_Object lface; |
3399 Lisp_Object old_value = Qnil; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3400 /* Set 1 if ATTR is QCfont. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3401 int font_attr_p = 0; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3402 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */ |
24995 | 3403 int font_related_attr_p = 0; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3404 |
24995 | 3405 CHECK_SYMBOL (face, 0); |
3406 CHECK_SYMBOL (attr, 1); | |
3407 | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3408 face = resolve_face_name (face); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3409 |
24995 | 3410 /* Set lface to the Lisp attribute vector of FACE. */ |
3411 if (EQ (frame, Qt)) | |
3412 lface = lface_from_face_name (NULL, face, 1); | |
3413 else | |
3414 { | |
3415 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3416 frame = selected_frame; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3417 |
24995 | 3418 CHECK_LIVE_FRAME (frame, 3); |
3419 lface = lface_from_face_name (XFRAME (frame), face, 0); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3420 |
24995 | 3421 /* If a frame-local face doesn't exist yet, create one. */ |
3422 if (NILP (lface)) | |
3423 lface = Finternal_make_lisp_face (face, frame); | |
3424 } | |
3425 | |
3426 if (EQ (attr, QCfamily)) | |
3427 { | |
3428 if (!UNSPECIFIEDP (value)) | |
3429 { | |
3430 CHECK_STRING (value, 3); | |
3431 if (XSTRING (value)->size == 0) | |
3432 signal_error ("Invalid face family", value); | |
3433 } | |
3434 old_value = LFACE_FAMILY (lface); | |
3435 LFACE_FAMILY (lface) = value; | |
3436 font_related_attr_p = 1; | |
3437 } | |
3438 else if (EQ (attr, QCheight)) | |
3439 { | |
3440 if (!UNSPECIFIEDP (value)) | |
3441 { | |
3442 CHECK_NUMBER (value, 3); | |
3443 if (XINT (value) <= 0) | |
3444 signal_error ("Invalid face height", value); | |
3445 } | |
3446 old_value = LFACE_HEIGHT (lface); | |
3447 LFACE_HEIGHT (lface) = value; | |
3448 font_related_attr_p = 1; | |
3449 } | |
3450 else if (EQ (attr, QCweight)) | |
3451 { | |
3452 if (!UNSPECIFIEDP (value)) | |
3453 { | |
3454 CHECK_SYMBOL (value, 3); | |
3455 if (face_numeric_weight (value) < 0) | |
3456 signal_error ("Invalid face weight", value); | |
3457 } | |
3458 old_value = LFACE_WEIGHT (lface); | |
3459 LFACE_WEIGHT (lface) = value; | |
3460 font_related_attr_p = 1; | |
3461 } | |
3462 else if (EQ (attr, QCslant)) | |
3463 { | |
3464 if (!UNSPECIFIEDP (value)) | |
3465 { | |
3466 CHECK_SYMBOL (value, 3); | |
3467 if (face_numeric_slant (value) < 0) | |
3468 signal_error ("Invalid face slant", value); | |
3469 } | |
3470 old_value = LFACE_SLANT (lface); | |
3471 LFACE_SLANT (lface) = value; | |
3472 font_related_attr_p = 1; | |
3473 } | |
3474 else if (EQ (attr, QCunderline)) | |
3475 { | |
3476 if (!UNSPECIFIEDP (value)) | |
3477 if ((SYMBOLP (value) | |
3478 && !EQ (value, Qt) | |
3479 && !EQ (value, Qnil)) | |
3480 /* Underline color. */ | |
3481 || (STRINGP (value) | |
3482 && XSTRING (value)->size == 0)) | |
3483 signal_error ("Invalid face underline", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3484 |
24995 | 3485 old_value = LFACE_UNDERLINE (lface); |
3486 LFACE_UNDERLINE (lface) = value; | |
3487 } | |
3488 else if (EQ (attr, QCoverline)) | |
3489 { | |
3490 if (!UNSPECIFIEDP (value)) | |
3491 if ((SYMBOLP (value) | |
3492 && !EQ (value, Qt) | |
3493 && !EQ (value, Qnil)) | |
3494 /* Overline color. */ | |
3495 || (STRINGP (value) | |
3496 && XSTRING (value)->size == 0)) | |
3497 signal_error ("Invalid face overline", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3498 |
24995 | 3499 old_value = LFACE_OVERLINE (lface); |
3500 LFACE_OVERLINE (lface) = value; | |
3501 } | |
3502 else if (EQ (attr, QCstrike_through)) | |
3503 { | |
3504 if (!UNSPECIFIEDP (value)) | |
3505 if ((SYMBOLP (value) | |
3506 && !EQ (value, Qt) | |
3507 && !EQ (value, Qnil)) | |
3508 /* Strike-through color. */ | |
3509 || (STRINGP (value) | |
3510 && XSTRING (value)->size == 0)) | |
3511 signal_error ("Invalid face strike-through", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3512 |
24995 | 3513 old_value = LFACE_STRIKE_THROUGH (lface); |
3514 LFACE_STRIKE_THROUGH (lface) = value; | |
3515 } | |
3516 else if (EQ (attr, QCbox)) | |
3517 { | |
3518 int valid_p; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3519 |
24995 | 3520 /* Allow t meaning a simple box of width 1 in foreground color |
3521 of the face. */ | |
3522 if (EQ (value, Qt)) | |
3523 value = make_number (1); | |
3524 | |
3525 if (UNSPECIFIEDP (value)) | |
3526 valid_p = 1; | |
3527 else if (NILP (value)) | |
3528 valid_p = 1; | |
3529 else if (INTEGERP (value)) | |
3530 valid_p = XINT (value) > 0; | |
3531 else if (STRINGP (value)) | |
3532 valid_p = XSTRING (value)->size > 0; | |
3533 else if (CONSP (value)) | |
3534 { | |
3535 Lisp_Object tem; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3536 |
24995 | 3537 tem = value; |
3538 while (CONSP (tem)) | |
3539 { | |
3540 Lisp_Object k, v; | |
3541 | |
3542 k = XCAR (tem); | |
3543 tem = XCDR (tem); | |
3544 if (!CONSP (tem)) | |
3545 break; | |
3546 v = XCAR (tem); | |
3547 tem = XCDR (tem); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3548 |
24995 | 3549 if (EQ (k, QCline_width)) |
3550 { | |
3551 if (!INTEGERP (v) || XINT (v) <= 0) | |
3552 break; | |
3553 } | |
3554 else if (EQ (k, QCcolor)) | |
3555 { | |
3556 if (!STRINGP (v) || XSTRING (v)->size == 0) | |
3557 break; | |
3558 } | |
3559 else if (EQ (k, QCstyle)) | |
3560 { | |
3561 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button)) | |
3562 break; | |
3563 } | |
3564 else | |
3565 break; | |
3566 } | |
3567 | |
3568 valid_p = NILP (tem); | |
3569 } | |
3570 else | |
3571 valid_p = 0; | |
3572 | |
3573 if (!valid_p) | |
3574 signal_error ("Invalid face box", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3575 |
24995 | 3576 old_value = LFACE_BOX (lface); |
3577 LFACE_BOX (lface) = value; | |
3578 } | |
3579 else if (EQ (attr, QCinverse_video) | |
3580 || EQ (attr, QCreverse_video)) | |
3581 { | |
3582 if (!UNSPECIFIEDP (value)) | |
3583 { | |
3584 CHECK_SYMBOL (value, 3); | |
3585 if (!EQ (value, Qt) && !NILP (value)) | |
3586 signal_error ("Invalid inverse-video face attribute value", value); | |
3587 } | |
3588 old_value = LFACE_INVERSE (lface); | |
3589 LFACE_INVERSE (lface) = value; | |
3590 } | |
3591 else if (EQ (attr, QCforeground)) | |
3592 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3593 if (!UNSPECIFIEDP (value)) |
24995 | 3594 { |
3595 /* Don't check for valid color names here because it depends | |
3596 on the frame (display) whether the color will be valid | |
3597 when the face is realized. */ | |
3598 CHECK_STRING (value, 3); | |
3599 if (XSTRING (value)->size == 0) | |
3600 signal_error ("Empty foreground color value", value); | |
3601 } | |
3602 old_value = LFACE_FOREGROUND (lface); | |
3603 LFACE_FOREGROUND (lface) = value; | |
3604 } | |
3605 else if (EQ (attr, QCbackground)) | |
3606 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3607 if (!UNSPECIFIEDP (value)) |
24995 | 3608 { |
3609 /* Don't check for valid color names here because it depends | |
3610 on the frame (display) whether the color will be valid | |
3611 when the face is realized. */ | |
3612 CHECK_STRING (value, 3); | |
3613 if (XSTRING (value)->size == 0) | |
3614 signal_error ("Empty background color value", value); | |
3615 } | |
3616 old_value = LFACE_BACKGROUND (lface); | |
3617 LFACE_BACKGROUND (lface) = value; | |
3618 } | |
3619 else if (EQ (attr, QCstipple)) | |
3620 { | |
3621 #ifdef HAVE_X_WINDOWS | |
3622 if (!UNSPECIFIEDP (value) | |
3623 && !NILP (value) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3624 && NILP (Fbitmap_spec_p (value))) |
24995 | 3625 signal_error ("Invalid stipple attribute", value); |
3626 old_value = LFACE_STIPPLE (lface); | |
3627 LFACE_STIPPLE (lface) = value; | |
3628 #endif /* HAVE_X_WINDOWS */ | |
3629 } | |
3630 else if (EQ (attr, QCwidth)) | |
3631 { | |
3632 if (!UNSPECIFIEDP (value)) | |
3633 { | |
3634 CHECK_SYMBOL (value, 3); | |
3635 if (face_numeric_swidth (value) < 0) | |
3636 signal_error ("Invalid face width", value); | |
3637 } | |
3638 old_value = LFACE_SWIDTH (lface); | |
3639 LFACE_SWIDTH (lface) = value; | |
3640 font_related_attr_p = 1; | |
3641 } | |
3642 else if (EQ (attr, QCfont)) | |
3643 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3644 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3645 /* Set font-related attributes of the Lisp face from an |
3646 XLFD font name. */ | |
3647 struct frame *f; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3648 Lisp_Object tmp; |
24995 | 3649 |
3650 CHECK_STRING (value, 3); | |
3651 if (EQ (frame, Qt)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3652 f = SELECTED_FRAME (); |
24995 | 3653 else |
3654 f = check_x_frame (frame); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3655 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3656 /* VALUE may be a fontset name or an alias of fontset. In such |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3657 a case, use the base fontset name. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3658 tmp = Fquery_fontset (value, Qnil); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3659 if (!NILP (tmp)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3660 value = tmp; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3661 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3662 if (!set_lface_from_font_name (f, lface, value, 1, 1)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3663 signal_error ("Invalid font or fontset name", value); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3664 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3665 font_attr_p = 1; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3666 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3667 } |
3668 else if (EQ (attr, QCbold)) | |
3669 { | |
3670 old_value = LFACE_WEIGHT (lface); | |
3671 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold; | |
3672 font_related_attr_p = 1; | |
3673 } | |
3674 else if (EQ (attr, QCitalic)) | |
3675 { | |
3676 old_value = LFACE_SLANT (lface); | |
3677 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic; | |
3678 font_related_attr_p = 1; | |
3679 } | |
3680 else | |
3681 signal_error ("Invalid face attribute name", attr); | |
3682 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3683 if (font_related_attr_p |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3684 && !UNSPECIFIEDP (value)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3685 /* If a font-related attribute other than QCfont is specified, the |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3686 original `font' attribute nor that of default face is useless |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3687 to determine a new font. Thus, we set it to nil so that font |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3688 selection mechanism doesn't use it. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3689 LFACE_FONT (lface) = Qnil; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3690 |
24995 | 3691 /* Changing a named face means that all realized faces depending on |
3692 that face are invalid. Since we cannot tell which realized faces | |
3693 depend on the face, make sure they are all removed. This is done | |
3694 by incrementing face_change_count. The next call to | |
3695 init_iterator will then free realized faces. */ | |
3696 if (!EQ (frame, Qt) | |
3697 && (EQ (attr, QCfont) | |
3698 || NILP (Fequal (old_value, value)))) | |
3699 { | |
3700 ++face_change_count; | |
3701 ++windows_or_buffers_changed; | |
3702 } | |
3703 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3704 #ifdef HAVE_WINDOW_SYSTEM |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3705 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3706 if (!EQ (frame, Qt) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3707 && !UNSPECIFIEDP (value) |
24995 | 3708 && NILP (Fequal (old_value, value))) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3709 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3710 Lisp_Object param; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3711 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3712 param = Qnil; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3713 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3714 if (EQ (face, Qdefault)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3715 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3716 /* Changed font-related attributes of the `default' face are |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3717 reflected in changed `font' frame parameters. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3718 if ((font_related_attr_p || font_attr_p) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3719 && lface_fully_specified_p (XVECTOR (lface)->contents)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3720 set_font_frame_param (frame, lface); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3721 else if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3722 param = Qforeground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3723 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3724 param = Qbackground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3725 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3726 #ifndef WINDOWSNT |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3727 else if (EQ (face, Qscroll_bar)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3728 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3729 /* Changing the colors of `scroll-bar' sets frame parameters |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3730 `scroll-bar-foreground' and `scroll-bar-background'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3731 if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3732 param = Qscroll_bar_foreground; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3733 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3734 param = Qscroll_bar_background; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3735 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3736 #endif |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3737 else if (EQ (face, Qborder)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3738 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3739 /* Changing background color of `border' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3740 `border-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3741 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3742 param = Qborder_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3743 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3744 else if (EQ (face, Qcursor)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3745 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3746 /* Changing background color of `cursor' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3747 `cursor-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3748 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3749 param = Qcursor_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3750 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3751 else if (EQ (face, Qmouse)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3752 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3753 /* Changing background color of `mouse' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3754 `mouse-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3755 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3756 param = Qmouse_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3757 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3758 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3759 if (!NILP (param)) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3760 Fmodify_frame_parameters (frame, Fcons (Fcons (param, value), Qnil)); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3761 } |
24995 | 3762 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3763 #endif /* HAVE_WINDOW_SYSTEM */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3764 |
24995 | 3765 return face; |
3766 } | |
3767 | |
3768 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3769 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3770 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3771 /* Set the `font' frame parameter of FRAME determined from `default' |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3772 face attributes LFACE. If a face or fontset name is explicitely |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3773 specfied in LFACE, use it as is. Otherwise, determine a font name |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3774 from the other font-related atrributes of LFACE. In that case, if |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3775 there's no matching font, signals an error. */ |
24995 | 3776 |
3777 static void | |
3778 set_font_frame_param (frame, lface) | |
3779 Lisp_Object frame, lface; | |
3780 { | |
3781 struct frame *f = XFRAME (frame); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3782 Lisp_Object font_name; |
24995 | 3783 char *font; |
3784 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3785 if (STRINGP (LFACE_FONT (lface))) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3786 font_name = LFACE_FONT (lface); |
24995 | 3787 else |
3788 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3789 /* Choose a font name that reflects LFACE's attributes and has |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3790 the registry and encoding pattern specified in the default |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3791 fontset (3rd arg: -1) for ASCII characters (4th arg: 0). */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3792 font = choose_face_font (f, XVECTOR (lface)->contents, -1, 0); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3793 if (!font) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3794 error ("No font matches the specified attribute"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3795 font_name = build_string (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3796 xfree (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3797 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3798 store_frame_param (f, Qfont, font_name); |
24995 | 3799 } |
3800 | |
3801 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3802 /* Update the corresponding face when frame parameter PARAM on frame F |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3803 has been assigned the value NEW_VALUE. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3804 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3805 void |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3806 update_face_from_frame_parameter (f, param, new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3807 struct frame *f; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3808 Lisp_Object param, new_value; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3809 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3810 Lisp_Object lface; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3811 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3812 /* If there are no faces yet, give up. This is the case when called |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3813 from Fx_create_frame, and we do the necessary things later in |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3814 face-set-after-frame-defaults. */ |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3815 if (NILP (f->face_alist)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3816 return; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3817 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3818 if (EQ (param, Qforeground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3819 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3820 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3821 LFACE_FOREGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3822 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3823 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3824 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3825 else if (EQ (param, Qbackground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3826 { |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3827 Lisp_Object frame; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3828 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3829 /* Changing the background color might change the background |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3830 mode, so that we have to load new defface specs. Call |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3831 frame-update-face-colors to do that. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3832 XSETFRAME (frame, f); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3833 call1 (Qframe_update_face_colors, frame); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3834 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3835 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3836 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3837 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3838 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3839 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3840 if (EQ (param, Qborder_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3841 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3842 lface = lface_from_face_name (f, Qborder, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3843 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3844 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3845 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3846 else if (EQ (param, Qcursor_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3847 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3848 lface = lface_from_face_name (f, Qcursor, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3849 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3850 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3851 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3852 else if (EQ (param, Qmouse_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3853 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3854 lface = lface_from_face_name (f, Qmouse, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3855 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3856 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3857 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3858 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3859 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3860 |
24995 | 3861 /* Get the value of X resource RESOURCE, class CLASS for the display |
3862 of frame FRAME. This is here because ordinary `x-get-resource' | |
3863 doesn't take a frame argument. */ | |
3864 | |
3865 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource, | |
3866 Sinternal_face_x_get_resource, 3, 3, 0, "") | |
3867 (resource, class, frame) | |
3868 Lisp_Object resource, class, frame; | |
3869 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3870 Lisp_Object value = Qnil; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3871 #ifndef WINDOWSNT |
24995 | 3872 CHECK_STRING (resource, 0); |
3873 CHECK_STRING (class, 1); | |
3874 CHECK_LIVE_FRAME (frame, 2); | |
3875 BLOCK_INPUT; | |
3876 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)), | |
3877 resource, class, Qnil, Qnil); | |
3878 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3879 #endif |
24995 | 3880 return value; |
3881 } | |
3882 | |
3883 | |
3884 /* Return resource string VALUE as a boolean value, i.e. nil, or t. | |
3885 If VALUE is "on" or "true", return t. If VALUE is "off" or | |
3886 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an | |
3887 error; if SIGNAL_P is zero, return 0. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3888 |
24995 | 3889 static Lisp_Object |
3890 face_boolean_x_resource_value (value, signal_p) | |
3891 Lisp_Object value; | |
3892 int signal_p; | |
3893 { | |
3894 Lisp_Object result = make_number (0); | |
3895 | |
3896 xassert (STRINGP (value)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3897 |
24995 | 3898 if (xstricmp (XSTRING (value)->data, "on") == 0 |
3899 || xstricmp (XSTRING (value)->data, "true") == 0) | |
3900 result = Qt; | |
3901 else if (xstricmp (XSTRING (value)->data, "off") == 0 | |
3902 || xstricmp (XSTRING (value)->data, "false") == 0) | |
3903 result = Qnil; | |
3904 else if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
3905 result = Qunspecified; | |
3906 else if (signal_p) | |
3907 signal_error ("Invalid face attribute value from X resource", value); | |
3908 | |
3909 return result; | |
3910 } | |
3911 | |
3912 | |
3913 DEFUN ("internal-set-lisp-face-attribute-from-resource", | |
3914 Finternal_set_lisp_face_attribute_from_resource, | |
3915 Sinternal_set_lisp_face_attribute_from_resource, | |
3916 3, 4, 0, "") | |
3917 (face, attr, value, frame) | |
3918 Lisp_Object face, attr, value, frame; | |
3919 { | |
3920 CHECK_SYMBOL (face, 0); | |
3921 CHECK_SYMBOL (attr, 1); | |
3922 CHECK_STRING (value, 2); | |
3923 | |
3924 if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
3925 value = Qunspecified; | |
3926 else if (EQ (attr, QCheight)) | |
3927 { | |
3928 value = Fstring_to_number (value, make_number (10)); | |
3929 if (XINT (value) <= 0) | |
3930 signal_error ("Invalid face height from X resource", value); | |
3931 } | |
3932 else if (EQ (attr, QCbold) || EQ (attr, QCitalic)) | |
3933 value = face_boolean_x_resource_value (value, 1); | |
3934 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth)) | |
3935 value = intern (XSTRING (value)->data); | |
3936 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video)) | |
3937 value = face_boolean_x_resource_value (value, 1); | |
3938 else if (EQ (attr, QCunderline) | |
3939 || EQ (attr, QCoverline) | |
3940 || EQ (attr, QCstrike_through) | |
3941 || EQ (attr, QCbox)) | |
3942 { | |
3943 Lisp_Object boolean_value; | |
3944 | |
3945 /* If the result of face_boolean_x_resource_value is t or nil, | |
3946 VALUE does NOT specify a color. */ | |
3947 boolean_value = face_boolean_x_resource_value (value, 0); | |
3948 if (SYMBOLP (boolean_value)) | |
3949 value = boolean_value; | |
3950 } | |
3951 | |
3952 return Finternal_set_lisp_face_attribute (face, attr, value, frame); | |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
3953 } |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
3954 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3955 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3956 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3957 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3958 #ifdef HAVE_X_WINDOWS |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3959 /*********************************************************************** |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3960 Menu face |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3961 ***********************************************************************/ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3962 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3963 #ifdef USE_X_TOOLKIT |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3964 |
29897
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
3965 #include "../lwlib/lwlib-utils.h" |
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
3966 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3967 /* Structure used to pass X resources to functions called via |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3968 XtApplyToWidgets. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3969 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3970 struct x_resources |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3971 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3972 Arg *av; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3973 int ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3974 }; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3975 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3976 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3977 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3978 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3979 static void xm_apply_resources P_ ((Widget, XtPointer)); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3980 static void xm_set_menu_resources_from_menu_face P_ ((struct frame *, Widget)); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3981 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3982 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3983 /* Set widget W's X resources from P which points to an x_resources |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3984 structure. If W is a cascade button, apply resources to W's |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3985 submenu. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3986 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3987 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3988 xm_apply_resources (w, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3989 Widget w; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3990 XtPointer p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3991 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3992 Widget submenu = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3993 struct x_resources *res = (struct x_resources *) p; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3994 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3995 XtSetValues (w, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3996 XtVaGetValues (w, XmNsubMenuId, &submenu, NULL); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3997 if (submenu) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3998 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3999 XtSetValues (submenu, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4000 XtApplyToWidgets (submenu, xm_apply_resources, p); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4001 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4002 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4003 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4004 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4005 /* Set X resources of menu-widget WIDGET on frame F from face `menu'. |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4006 This is the LessTif/Motif version. As of LessTif 0.88 it has the |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4007 following problems: |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4008 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4009 1. Setting the XmNfontList resource leads to an infinite loop |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4010 somewhere in LessTif. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4011 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4012 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4013 xm_set_menu_resources_from_menu_face (f, widget) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4014 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4015 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4016 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4017 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4018 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4019 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4020 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4021 XmFontList fl = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4022 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4023 lface = lface_from_face_name (f, Qmenu, 1); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4024 face = FACE_FROM_ID (f, MENU_FACE_ID); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4025 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4026 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4027 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4028 XtSetArg (av[ac], XmNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4029 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4030 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4031 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4032 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4033 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4034 XtSetArg (av[ac], XmNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4035 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4036 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4037 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4038 /* If any font-related attribute of `menu' is set, set the font. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4039 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4040 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4041 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4042 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4043 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4044 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4045 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4046 #if 0 /* Setting the font leads to an infinite loop somewhere |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4047 in LessTif during geometry computation. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4048 XmFontListEntry fe; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4049 fe = XmFontListEntryCreate ("menu_font", XmFONT_IS_FONT, face->font); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4050 fl = XmFontListAppendEntry (NULL, fe); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4051 XtSetArg (av[ac], XmNfontList, fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4052 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4053 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4054 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4055 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4056 xassert (ac <= sizeof av / sizeof *av); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4057 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4058 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4059 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4060 struct x_resources res; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4061 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4062 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4063 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4064 XtApplyToWidgets (widget, xm_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4065 if (fl) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4066 XmFontListFree (fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4067 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4068 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4069 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4070 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4071 #endif /* USE_MOTIF */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4072 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4073 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4074 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4075 static void xl_apply_resources P_ ((Widget, XtPointer)); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4076 static void xl_set_menu_resources_from_menu_face P_ ((struct frame *, Widget)); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4077 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4078 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4079 /* Set widget W's resources from P which points to an x_resources |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4080 structure. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4081 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4082 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4083 xl_apply_resources (widget, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4084 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4085 XtPointer p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4086 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4087 struct x_resources *res = (struct x_resources *) p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4088 XtSetValues (widget, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4089 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4090 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4091 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4092 /* On frame F, set X resources of menu-widget WIDGET from face `menu'. |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4093 This is the Lucid version. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4094 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4095 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4096 xl_set_menu_resources_from_menu_face (f, widget) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4097 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4098 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4099 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4100 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4101 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4102 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4103 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4104 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4105 lface = lface_from_face_name (f, Qmenu, 1); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4106 face = FACE_FROM_ID (f, MENU_FACE_ID); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4107 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4108 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4109 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4110 XtSetArg (av[ac], XtNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4111 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4112 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4113 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4114 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4115 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4116 XtSetArg (av[ac], XtNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4117 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4118 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4119 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4120 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4121 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4122 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4123 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4124 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4125 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4126 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4127 XtSetArg (av[ac], XtNfont, face->font); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4128 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4129 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4130 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4131 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4132 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4133 struct x_resources res; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4134 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4135 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4136 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4137 /* We must do children here in case we're handling a pop-up menu |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4138 in which case WIDGET is a popup shell. XtApplyToWidgets |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4139 is a function from lwlib. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4140 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4141 XtApplyToWidgets (widget, xl_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4142 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4143 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4144 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4145 #endif /* USE_LUCID */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4146 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4147 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4148 /* On frame F, set X resources of menu-widget WIDGET from face `menu'. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4149 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4150 void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4151 x_set_menu_resources_from_menu_face (f, widget) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4152 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4153 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4154 { |
26759
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4155 /* Realized faces may have been removed on frame F, e.g. because of |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4156 face attribute changes. Recompute them, if necessary, since we |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4157 will need the `menu' face. */ |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4158 if (f->face_cache->used == 0) |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4159 recompute_basic_faces (f); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4160 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4161 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4162 xl_set_menu_resources_from_menu_face (f, widget); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4163 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4164 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4165 xm_set_menu_resources_from_menu_face (f, widget); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4166 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4167 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4168 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4169 #endif /* USE_X_TOOLKIT */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4170 |
24995 | 4171 #endif /* HAVE_X_WINDOWS */ |
4172 | |
4173 | |
4174 | |
4175 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute, | |
4176 Sinternal_get_lisp_face_attribute, | |
4177 2, 3, 0, | |
4178 "Return face attribute KEYWORD of face SYMBOL.\n\ | |
4179 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid\n\ | |
4180 face attribute name, signal an error.\n\ | |
4181 If the optional argument FRAME is given, report on face FACE in that\n\ | |
4182 frame. If FRAME is t, report on the defaults for face FACE (for new\n\ | |
4183 frames). If FRAME is omitted or nil, use the selected frame.") | |
4184 (symbol, keyword, frame) | |
4185 Lisp_Object symbol, keyword, frame; | |
4186 { | |
4187 Lisp_Object lface, value = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4188 |
24995 | 4189 CHECK_SYMBOL (symbol, 0); |
4190 CHECK_SYMBOL (keyword, 1); | |
4191 | |
4192 if (EQ (frame, Qt)) | |
4193 lface = lface_from_face_name (NULL, symbol, 1); | |
4194 else | |
4195 { | |
4196 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4197 frame = selected_frame; |
24995 | 4198 CHECK_LIVE_FRAME (frame, 2); |
4199 lface = lface_from_face_name (XFRAME (frame), symbol, 1); | |
4200 } | |
4201 | |
4202 if (EQ (keyword, QCfamily)) | |
4203 value = LFACE_FAMILY (lface); | |
4204 else if (EQ (keyword, QCheight)) | |
4205 value = LFACE_HEIGHT (lface); | |
4206 else if (EQ (keyword, QCweight)) | |
4207 value = LFACE_WEIGHT (lface); | |
4208 else if (EQ (keyword, QCslant)) | |
4209 value = LFACE_SLANT (lface); | |
4210 else if (EQ (keyword, QCunderline)) | |
4211 value = LFACE_UNDERLINE (lface); | |
4212 else if (EQ (keyword, QCoverline)) | |
4213 value = LFACE_OVERLINE (lface); | |
4214 else if (EQ (keyword, QCstrike_through)) | |
4215 value = LFACE_STRIKE_THROUGH (lface); | |
4216 else if (EQ (keyword, QCbox)) | |
4217 value = LFACE_BOX (lface); | |
4218 else if (EQ (keyword, QCinverse_video) | |
4219 || EQ (keyword, QCreverse_video)) | |
4220 value = LFACE_INVERSE (lface); | |
4221 else if (EQ (keyword, QCforeground)) | |
4222 value = LFACE_FOREGROUND (lface); | |
4223 else if (EQ (keyword, QCbackground)) | |
4224 value = LFACE_BACKGROUND (lface); | |
4225 else if (EQ (keyword, QCstipple)) | |
4226 value = LFACE_STIPPLE (lface); | |
4227 else if (EQ (keyword, QCwidth)) | |
4228 value = LFACE_SWIDTH (lface); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4229 else if (EQ (keyword, QCfont)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4230 value = LFACE_FONT (lface); |
24995 | 4231 else |
4232 signal_error ("Invalid face attribute name", keyword); | |
4233 | |
4234 return value; | |
4235 } | |
4236 | |
4237 | |
4238 DEFUN ("internal-lisp-face-attribute-values", | |
4239 Finternal_lisp_face_attribute_values, | |
4240 Sinternal_lisp_face_attribute_values, 1, 1, 0, | |
4241 "Return a list of valid discrete values for face attribute ATTR.\n\ | |
4242 Value is nil if ATTR doesn't have a discrete set of valid values.") | |
4243 (attr) | |
4244 Lisp_Object attr; | |
4245 { | |
4246 Lisp_Object result = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4247 |
24995 | 4248 CHECK_SYMBOL (attr, 0); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4249 |
24995 | 4250 if (EQ (attr, QCweight) |
4251 || EQ (attr, QCslant) | |
4252 || EQ (attr, QCwidth)) | |
4253 { | |
4254 /* Extract permissible symbols from tables. */ | |
4255 struct table_entry *table; | |
4256 int i, dim; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4257 |
24995 | 4258 if (EQ (attr, QCweight)) |
4259 table = weight_table, dim = DIM (weight_table); | |
4260 else if (EQ (attr, QCslant)) | |
4261 table = slant_table, dim = DIM (slant_table); | |
4262 else | |
4263 table = swidth_table, dim = DIM (swidth_table); | |
4264 | |
4265 for (i = 0; i < dim; ++i) | |
4266 { | |
4267 Lisp_Object symbol = *table[i].symbol; | |
4268 Lisp_Object tail = result; | |
4269 | |
4270 while (!NILP (tail) | |
4271 && !EQ (XCAR (tail), symbol)) | |
4272 tail = XCDR (tail); | |
4273 | |
4274 if (NILP (tail)) | |
4275 result = Fcons (symbol, result); | |
4276 } | |
4277 } | |
4278 else if (EQ (attr, QCunderline)) | |
4279 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4280 else if (EQ (attr, QCoverline)) | |
4281 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4282 else if (EQ (attr, QCstrike_through)) | |
4283 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4284 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video)) | |
4285 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4286 | |
4287 return result; | |
4288 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4289 |
24995 | 4290 |
4291 DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face, | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4292 Sinternal_merge_in_global_face, 2, 2, 0, |
24995 | 4293 "Add attributes from frame-default definition of FACE to FACE on FRAME.") |
4294 (face, frame) | |
4295 Lisp_Object face, frame; | |
4296 { | |
4297 Lisp_Object global_lface, local_lface; | |
4298 CHECK_LIVE_FRAME (frame, 1); | |
4299 global_lface = lface_from_face_name (NULL, face, 1); | |
4300 local_lface = lface_from_face_name (XFRAME (frame), face, 0); | |
4301 if (NILP (local_lface)) | |
4302 local_lface = Finternal_make_lisp_face (face, frame); | |
4303 merge_face_vectors (XVECTOR (global_lface)->contents, | |
4304 XVECTOR (local_lface)->contents); | |
4305 return face; | |
4306 } | |
4307 | |
4308 | |
4309 /* The following function is implemented for compatibility with 20.2. | |
4310 The function is used in x-resolve-fonts when it is asked to | |
4311 return fonts with the same size as the font of a face. This is | |
4312 done in fontset.el. */ | |
4313 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4314 DEFUN ("face-font", Fface_font, Sface_font, 1, 2, 0, |
24995 | 4315 "Return the font name of face FACE, or nil if it is unspecified.\n\ |
4316 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4317 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4318 The font default for a face is either nil, or a list\n\ | |
4319 of the form (bold), (italic) or (bold italic).\n\ | |
4320 If FRAME is omitted or nil, use the selected frame.") | |
4321 (face, frame) | |
4322 Lisp_Object face, frame; | |
4323 { | |
4324 if (EQ (frame, Qt)) | |
4325 { | |
4326 Lisp_Object result = Qnil; | |
4327 Lisp_Object lface = lface_from_face_name (NULL, face, 1); | |
4328 | |
4329 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface)) | |
4330 && !EQ (LFACE_WEIGHT (lface), Qnormal)) | |
4331 result = Fcons (Qbold, result); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4332 |
24995 | 4333 if (!NILP (LFACE_SLANT (lface)) |
4334 && !EQ (LFACE_SLANT (lface), Qnormal)) | |
4335 result = Fcons (Qitalic, result); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4336 |
24995 | 4337 return result; |
4338 } | |
4339 else | |
4340 { | |
4341 struct frame *f = frame_or_selected_frame (frame, 1); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4342 int face_id = lookup_named_face (f, face, 0); |
24995 | 4343 struct face *face = FACE_FROM_ID (f, face_id); |
4344 return build_string (face->font_name); | |
4345 } | |
4346 } | |
4347 | |
4348 | |
4349 /* Compare face vectors V1 and V2 for equality. Value is non-zero if | |
4350 all attributes are `equal'. Tries to be fast because this function | |
4351 is called quite often. */ | |
4352 | |
4353 static INLINE int | |
4354 lface_equal_p (v1, v2) | |
4355 Lisp_Object *v1, *v2; | |
4356 { | |
4357 int i, equal_p = 1; | |
4358 | |
4359 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i) | |
4360 { | |
4361 Lisp_Object a = v1[i]; | |
4362 Lisp_Object b = v2[i]; | |
4363 | |
4364 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil, | |
4365 and the other is specified. */ | |
4366 equal_p = XTYPE (a) == XTYPE (b); | |
4367 if (!equal_p) | |
4368 break; | |
4369 | |
4370 if (!EQ (a, b)) | |
4371 { | |
4372 switch (XTYPE (a)) | |
4373 { | |
4374 case Lisp_String: | |
4375 equal_p = (XSTRING (a)->size == XSTRING (b)->size | |
4376 && bcmp (XSTRING (a)->data, XSTRING (b)->data, | |
4377 XSTRING (a)->size) == 0); | |
4378 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4379 |
24995 | 4380 case Lisp_Int: |
4381 case Lisp_Symbol: | |
4382 equal_p = 0; | |
4383 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4384 |
24995 | 4385 default: |
4386 equal_p = !NILP (Fequal (a, b)); | |
4387 break; | |
4388 } | |
4389 } | |
4390 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4391 |
24995 | 4392 return equal_p; |
4393 } | |
4394 | |
4395 | |
4396 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p, | |
4397 Sinternal_lisp_face_equal_p, 2, 3, 0, | |
4398 "True if FACE1 and FACE2 are equal.\n\ | |
4399 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4400 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4401 If FRAME is omitted or nil, use the selected frame.") | |
4402 (face1, face2, frame) | |
4403 Lisp_Object face1, face2, frame; | |
4404 { | |
4405 int equal_p; | |
4406 struct frame *f; | |
4407 Lisp_Object lface1, lface2; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4408 |
24995 | 4409 if (EQ (frame, Qt)) |
4410 f = NULL; | |
4411 else | |
4412 /* Don't use check_x_frame here because this function is called | |
4413 before X frames exist. At that time, if FRAME is nil, | |
4414 selected_frame will be used which is the frame dumped with | |
4415 Emacs. That frame is not an X frame. */ | |
4416 f = frame_or_selected_frame (frame, 2); | |
4417 | |
4418 lface1 = lface_from_face_name (NULL, face1, 1); | |
4419 lface2 = lface_from_face_name (NULL, face2, 1); | |
4420 equal_p = lface_equal_p (XVECTOR (lface1)->contents, | |
4421 XVECTOR (lface2)->contents); | |
4422 return equal_p ? Qt : Qnil; | |
4423 } | |
4424 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4425 |
24995 | 4426 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p, |
4427 Sinternal_lisp_face_empty_p, 1, 2, 0, | |
4428 "True if FACE has no attribute specified.\n\ | |
4429 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4430 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4431 If FRAME is omitted or nil, use the selected frame.") | |
4432 (face, frame) | |
4433 Lisp_Object face, frame; | |
4434 { | |
4435 struct frame *f; | |
4436 Lisp_Object lface; | |
4437 int i; | |
4438 | |
4439 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4440 frame = selected_frame; |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4441 CHECK_LIVE_FRAME (frame, 0); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4442 f = XFRAME (frame); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4443 |
24995 | 4444 if (EQ (frame, Qt)) |
4445 lface = lface_from_face_name (NULL, face, 1); | |
4446 else | |
4447 lface = lface_from_face_name (f, face, 1); | |
4448 | |
4449 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
4450 if (!UNSPECIFIEDP (XVECTOR (lface)->contents[i])) | |
4451 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4452 |
24995 | 4453 return i == LFACE_VECTOR_SIZE ? Qt : Qnil; |
4454 } | |
4455 | |
4456 | |
4457 DEFUN ("frame-face-alist", Fframe_face_alist, Sframe_face_alist, | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4458 0, 1, 0, |
24995 | 4459 "Return an alist of frame-local faces defined on FRAME.\n\ |
4460 For internal use only.") | |
4461 (frame) | |
4462 Lisp_Object frame; | |
4463 { | |
4464 struct frame *f = frame_or_selected_frame (frame, 0); | |
4465 return f->face_alist; | |
4466 } | |
4467 | |
4468 | |
4469 /* Return a hash code for Lisp string STRING with case ignored. Used | |
4470 below in computing a hash value for a Lisp face. */ | |
4471 | |
4472 static INLINE unsigned | |
4473 hash_string_case_insensitive (string) | |
4474 Lisp_Object string; | |
4475 { | |
4476 unsigned char *s; | |
4477 unsigned hash = 0; | |
4478 xassert (STRINGP (string)); | |
4479 for (s = XSTRING (string)->data; *s; ++s) | |
4480 hash = (hash << 1) ^ tolower (*s); | |
4481 return hash; | |
4482 } | |
4483 | |
4484 | |
4485 /* Return a hash code for face attribute vector V. */ | |
4486 | |
4487 static INLINE unsigned | |
4488 lface_hash (v) | |
4489 Lisp_Object *v; | |
4490 { | |
4491 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX]) | |
4492 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX]) | |
4493 ^ hash_string_case_insensitive (v[LFACE_BACKGROUND_INDEX]) | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
4494 ^ XFASTINT (v[LFACE_WEIGHT_INDEX]) |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
4495 ^ XFASTINT (v[LFACE_SLANT_INDEX]) |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
4496 ^ XFASTINT (v[LFACE_SWIDTH_INDEX]) |
24995 | 4497 ^ XFASTINT (v[LFACE_HEIGHT_INDEX])); |
4498 } | |
4499 | |
4500 | |
4501 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without | |
4502 considering charsets/registries). They do if they specify the same | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4503 family, point size, weight, width, slant, and fontset. Both LFACE1 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4504 and LFACE2 must be fully-specified. */ |
24995 | 4505 |
4506 static INLINE int | |
4507 lface_same_font_attributes_p (lface1, lface2) | |
4508 Lisp_Object *lface1, *lface2; | |
4509 { | |
4510 xassert (lface_fully_specified_p (lface1) | |
4511 && lface_fully_specified_p (lface2)); | |
4512 return (xstricmp (XSTRING (lface1[LFACE_FAMILY_INDEX])->data, | |
4513 XSTRING (lface2[LFACE_FAMILY_INDEX])->data) == 0 | |
4514 && (XFASTINT (lface1[LFACE_HEIGHT_INDEX]) | |
4515 == XFASTINT (lface2[LFACE_HEIGHT_INDEX])) | |
4516 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX]) | |
4517 && EQ (lface1[LFACE_WEIGHT_INDEX], lface2[LFACE_WEIGHT_INDEX]) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4518 && EQ (lface1[LFACE_SLANT_INDEX], lface2[LFACE_SLANT_INDEX]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4519 && (EQ (lface1[LFACE_FONT_INDEX], lface2[LFACE_FONT_INDEX]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4520 || (STRINGP (lface1[LFACE_FONT_INDEX]) |
28263
73181b84ea57
(lface_same_font_attributes_p): Compare font attributes
Gerd Moellmann <gerd@gnu.org>
parents:
28237
diff
changeset
|
4521 && STRINGP (lface2[LFACE_FONT_INDEX]) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4522 && xstricmp (XSTRING (lface1[LFACE_FONT_INDEX])->data, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4523 XSTRING (lface2[LFACE_FONT_INDEX])->data)))); |
24995 | 4524 } |
4525 | |
4526 | |
4527 | |
4528 /*********************************************************************** | |
4529 Realized Faces | |
4530 ***********************************************************************/ | |
4531 | |
4532 /* Allocate and return a new realized face for Lisp face attribute | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4533 vector ATTR. */ |
24995 | 4534 |
4535 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4536 make_realized_face (attr) |
24995 | 4537 Lisp_Object *attr; |
4538 { | |
4539 struct face *face = (struct face *) xmalloc (sizeof *face); | |
4540 bzero (face, sizeof *face); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4541 face->ascii_face = face; |
24995 | 4542 bcopy (attr, face->lface, sizeof face->lface); |
4543 return face; | |
4544 } | |
4545 | |
4546 | |
4547 /* Free realized face FACE, including its X resources. FACE may | |
4548 be null. */ | |
4549 | |
4550 static void | |
4551 free_realized_face (f, face) | |
4552 struct frame *f; | |
4553 struct face *face; | |
4554 { | |
4555 if (face) | |
4556 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4557 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4558 if (FRAME_WINDOW_P (f)) |
24995 | 4559 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4560 /* Free fontset of FACE if it is ASCII face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4561 if (face->fontset >= 0 && face == face->ascii_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4562 free_face_fontset (f, face); |
24995 | 4563 if (face->gc) |
4564 { | |
4565 x_free_gc (f, face->gc); | |
4566 face->gc = 0; | |
4567 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4568 |
24995 | 4569 free_face_colors (f, face); |
4570 x_destroy_bitmap (f, face->stipple); | |
4571 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4572 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4573 |
4574 xfree (face); | |
4575 } | |
4576 } | |
4577 | |
4578 | |
4579 /* Prepare face FACE for subsequent display on frame F. This | |
4580 allocated GCs if they haven't been allocated yet or have been freed | |
4581 by clearing the face cache. */ | |
4582 | |
4583 void | |
4584 prepare_face_for_display (f, face) | |
4585 struct frame *f; | |
4586 struct face *face; | |
4587 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4588 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4589 xassert (FRAME_WINDOW_P (f)); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4590 |
24995 | 4591 if (face->gc == 0) |
4592 { | |
4593 XGCValues xgcv; | |
4594 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures; | |
4595 | |
4596 xgcv.foreground = face->foreground; | |
4597 xgcv.background = face->background; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4598 #ifdef HAVE_X_WINDOWS |
24995 | 4599 xgcv.graphics_exposures = False; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4600 #endif |
24995 | 4601 /* The font of FACE may be null if we couldn't load it. */ |
4602 if (face->font) | |
4603 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4604 #ifdef HAVE_X_WINDOWS |
24995 | 4605 xgcv.font = face->font->fid; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4606 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4607 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4608 xgcv.font = face->font; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4609 #endif |
24995 | 4610 mask |= GCFont; |
4611 } | |
4612 | |
4613 BLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4614 #ifdef HAVE_X_WINDOWS |
24995 | 4615 if (face->stipple) |
4616 { | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
4617 xgcv.fill_style = FillOpaqueStippled; |
24995 | 4618 xgcv.stipple = x_bitmap_pixmap (f, face->stipple); |
4619 mask |= GCFillStyle | GCStipple; | |
4620 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4621 #endif |
24995 | 4622 face->gc = x_create_gc (f, mask, &xgcv); |
4623 UNBLOCK_INPUT; | |
4624 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4625 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4626 } |
4627 | |
4628 | |
4629 /*********************************************************************** | |
4630 Face Cache | |
4631 ***********************************************************************/ | |
4632 | |
4633 /* Return a new face cache for frame F. */ | |
4634 | |
4635 static struct face_cache * | |
4636 make_face_cache (f) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4637 struct frame *f; |
24995 | 4638 { |
4639 struct face_cache *c; | |
4640 int size; | |
4641 | |
4642 c = (struct face_cache *) xmalloc (sizeof *c); | |
4643 bzero (c, sizeof *c); | |
4644 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4645 c->buckets = (struct face **) xmalloc (size); | |
4646 bzero (c->buckets, size); | |
4647 c->size = 50; | |
4648 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id); | |
4649 c->f = f; | |
4650 return c; | |
4651 } | |
4652 | |
4653 | |
4654 /* Clear out all graphics contexts for all realized faces, except for | |
4655 the basic faces. This should be done from time to time just to avoid | |
4656 keeping too many graphics contexts that are no longer needed. */ | |
4657 | |
4658 static void | |
4659 clear_face_gcs (c) | |
4660 struct face_cache *c; | |
4661 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4662 if (c && FRAME_WINDOW_P (c->f)) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4663 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4664 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4665 int i; |
4666 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i) | |
4667 { | |
4668 struct face *face = c->faces_by_id[i]; | |
4669 if (face && face->gc) | |
4670 { | |
4671 x_free_gc (c->f, face->gc); | |
4672 face->gc = 0; | |
4673 } | |
4674 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4675 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4676 } |
4677 } | |
4678 | |
4679 | |
4680 /* Free all realized faces in face cache C, including basic faces. C | |
4681 may be null. If faces are freed, make sure the frame's current | |
4682 matrix is marked invalid, so that a display caused by an expose | |
4683 event doesn't try to use faces we destroyed. */ | |
4684 | |
4685 static void | |
4686 free_realized_faces (c) | |
4687 struct face_cache *c; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4688 { |
24995 | 4689 if (c && c->used) |
4690 { | |
4691 int i, size; | |
4692 struct frame *f = c->f; | |
4693 | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4694 /* We must block input here because we can't process X events |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4695 safely while only some faces are freed, or when the frame's |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4696 current matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4697 BLOCK_INPUT; |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4698 |
24995 | 4699 for (i = 0; i < c->used; ++i) |
4700 { | |
4701 free_realized_face (f, c->faces_by_id[i]); | |
4702 c->faces_by_id[i] = NULL; | |
4703 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4704 |
24995 | 4705 c->used = 0; |
4706 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4707 bzero (c->buckets, size); | |
4708 | |
4709 /* Must do a thorough redisplay the next time. Mark current | |
4710 matrices as invalid because they will reference faces freed | |
4711 above. This function is also called when a frame is | |
4712 destroyed. In this case, the root window of F is nil. */ | |
4713 if (WINDOWP (f->root_window)) | |
4714 { | |
4715 clear_current_matrices (f); | |
4716 ++windows_or_buffers_changed; | |
4717 } | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4718 |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4719 UNBLOCK_INPUT; |
24995 | 4720 } |
4721 } | |
4722 | |
4723 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4724 /* Free all faces realized for multibyte characters on frame F that |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4725 has FONTSET. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4726 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4727 void |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4728 free_realized_multibyte_face (f, fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4729 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4730 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4731 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4732 struct face_cache *cache = FRAME_FACE_CACHE (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4733 struct face *face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4734 int i; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4735 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4736 /* We must block input here because we can't process X events safely |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4737 while only some faces are freed, or when the frame's current |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4738 matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4739 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4740 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4741 for (i = 0; i < cache->used; i++) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4742 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4743 face = cache->faces_by_id[i]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4744 if (face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4745 && face != face->ascii_face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4746 && face->fontset == fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4747 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4748 uncache_face (cache, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4749 free_realized_face (f, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4750 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4751 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4752 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4753 /* Must do a thorough redisplay the next time. Mark current |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4754 matrices as invalid because they will reference faces freed |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4755 above. This function is also called when a frame is destroyed. |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4756 In this case, the root window of F is nil. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4757 if (WINDOWP (f->root_window)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4758 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4759 clear_current_matrices (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4760 ++windows_or_buffers_changed; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4761 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4762 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4763 UNBLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4764 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4765 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4766 |
24995 | 4767 /* Free all realized faces on FRAME or on all frames if FRAME is nil. |
4768 This is done after attributes of a named face have been changed, | |
4769 because we can't tell which realized faces depend on that face. */ | |
4770 | |
4771 void | |
4772 free_all_realized_faces (frame) | |
4773 Lisp_Object frame; | |
4774 { | |
4775 if (NILP (frame)) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4776 { |
24995 | 4777 Lisp_Object rest; |
4778 FOR_EACH_FRAME (rest, frame) | |
4779 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
4780 } | |
4781 else | |
4782 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
4783 } | |
4784 | |
4785 | |
4786 /* Free face cache C and faces in it, including their X resources. */ | |
4787 | |
4788 static void | |
4789 free_face_cache (c) | |
4790 struct face_cache *c; | |
4791 { | |
4792 if (c) | |
4793 { | |
4794 free_realized_faces (c); | |
4795 xfree (c->buckets); | |
4796 xfree (c->faces_by_id); | |
4797 xfree (c); | |
4798 } | |
4799 } | |
4800 | |
4801 | |
4802 /* Cache realized face FACE in face cache C. HASH is the hash value | |
4803 of FACE. If FACE->fontset >= 0, add the new face to the end of the | |
4804 collision list of the face hash table of C. This is done because | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4805 otherwise lookup_face would find FACE for every character, even if |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4806 faces with the same attributes but for specific characters exist. */ |
24995 | 4807 |
4808 static void | |
4809 cache_face (c, face, hash) | |
4810 struct face_cache *c; | |
4811 struct face *face; | |
4812 unsigned hash; | |
4813 { | |
4814 int i = hash % FACE_CACHE_BUCKETS_SIZE; | |
4815 | |
4816 face->hash = hash; | |
4817 | |
4818 if (face->fontset >= 0) | |
4819 { | |
4820 struct face *last = c->buckets[i]; | |
4821 if (last) | |
4822 { | |
4823 while (last->next) | |
4824 last = last->next; | |
4825 last->next = face; | |
4826 face->prev = last; | |
4827 face->next = NULL; | |
4828 } | |
4829 else | |
4830 { | |
4831 c->buckets[i] = face; | |
4832 face->prev = face->next = NULL; | |
4833 } | |
4834 } | |
4835 else | |
4836 { | |
4837 face->prev = NULL; | |
4838 face->next = c->buckets[i]; | |
4839 if (face->next) | |
4840 face->next->prev = face; | |
4841 c->buckets[i] = face; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4842 } |
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4843 |
24995 | 4844 /* Find a free slot in C->faces_by_id and use the index of the free |
4845 slot as FACE->id. */ | |
4846 for (i = 0; i < c->used; ++i) | |
4847 if (c->faces_by_id[i] == NULL) | |
4848 break; | |
4849 face->id = i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4850 |
24995 | 4851 /* Maybe enlarge C->faces_by_id. */ |
4852 if (i == c->used && c->used == c->size) | |
4853 { | |
4854 int new_size = 2 * c->size; | |
4855 int sz = new_size * sizeof *c->faces_by_id; | |
4856 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz); | |
4857 c->size = new_size; | |
4858 } | |
4859 | |
4860 #if GLYPH_DEBUG | |
4861 /* Check that FACE got a unique id. */ | |
4862 { | |
4863 int j, n; | |
4864 struct face *face; | |
4865 | |
4866 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j) | |
4867 for (face = c->buckets[j]; face; face = face->next) | |
4868 if (face->id == i) | |
4869 ++n; | |
4870 | |
4871 xassert (n == 1); | |
4872 } | |
4873 #endif /* GLYPH_DEBUG */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4874 |
24995 | 4875 c->faces_by_id[i] = face; |
4876 if (i == c->used) | |
4877 ++c->used; | |
4878 } | |
4879 | |
4880 | |
4881 /* Remove face FACE from cache C. */ | |
4882 | |
4883 static void | |
4884 uncache_face (c, face) | |
4885 struct face_cache *c; | |
4886 struct face *face; | |
4887 { | |
4888 int i = face->hash % FACE_CACHE_BUCKETS_SIZE; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4889 |
24995 | 4890 if (face->prev) |
4891 face->prev->next = face->next; | |
4892 else | |
4893 c->buckets[i] = face->next; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4894 |
24995 | 4895 if (face->next) |
4896 face->next->prev = face->prev; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4897 |
24995 | 4898 c->faces_by_id[face->id] = NULL; |
4899 if (face->id == c->used) | |
4900 --c->used; | |
4901 } | |
4902 | |
4903 | |
4904 /* Look up a realized face with face attributes ATTR in the face cache | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4905 of frame F. The face will be used to display character C. Value |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4906 is the ID of the face found. If no suitable face is found, realize |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4907 a new one. In that case, if C is a multibyte character, BASE_FACE |
28753
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
4908 is a face that has the same attributes. */ |
24995 | 4909 |
4910 INLINE int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4911 lookup_face (f, attr, c, base_face) |
24995 | 4912 struct frame *f; |
4913 Lisp_Object *attr; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4914 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4915 struct face *base_face; |
24995 | 4916 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4917 struct face_cache *cache = FRAME_FACE_CACHE (f); |
24995 | 4918 unsigned hash; |
4919 int i; | |
4920 struct face *face; | |
4921 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4922 xassert (cache != NULL); |
24995 | 4923 check_lface_attrs (attr); |
4924 | |
4925 /* Look up ATTR in the face cache. */ | |
4926 hash = lface_hash (attr); | |
4927 i = hash % FACE_CACHE_BUCKETS_SIZE; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4928 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4929 for (face = cache->buckets[i]; face; face = face->next) |
24995 | 4930 if (face->hash == hash |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4931 && (!FRAME_WINDOW_P (f) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4932 || FACE_SUITABLE_FOR_CHAR_P (face, c)) |
24995 | 4933 && lface_equal_p (face->lface, attr)) |
4934 break; | |
4935 | |
4936 /* If not found, realize a new face. */ | |
4937 if (face == NULL) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4938 face = realize_face (cache, attr, c, base_face, -1); |
24995 | 4939 |
4940 #if GLYPH_DEBUG | |
4941 xassert (face == FACE_FROM_ID (f, face->id)); | |
28409 | 4942 |
4943 /* When this function is called from face_for_char (in this case, C is | |
4944 a multibyte character), a fontset of a face returned by | |
4945 realize_face is not yet set, i.e. FACE_SUITABLE_FOR_CHAR_P (FACE, | |
4946 C) is not sutisfied. The fontset is set for this face by | |
4947 face_for_char later. */ | |
28349
26f2a2e9a2b5
(lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P.
Gerd Moellmann <gerd@gnu.org>
parents:
28263
diff
changeset
|
4948 #if 0 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4949 if (FRAME_WINDOW_P (f)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4950 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c)); |
28349
26f2a2e9a2b5
(lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P.
Gerd Moellmann <gerd@gnu.org>
parents:
28263
diff
changeset
|
4951 #endif |
24995 | 4952 #endif /* GLYPH_DEBUG */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4953 |
24995 | 4954 return face->id; |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4955 } |
24995 | 4956 |
4957 | |
4958 /* Return the face id of the realized face for named face SYMBOL on | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4959 frame F suitable for displaying character C. */ |
24995 | 4960 |
4961 int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4962 lookup_named_face (f, symbol, c) |
24995 | 4963 struct frame *f; |
4964 Lisp_Object symbol; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4965 int c; |
24995 | 4966 { |
4967 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
4968 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
4969 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
4970 | |
4971 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
4972 bcopy (default_face->lface, attrs, sizeof attrs); | |
4973 merge_face_vectors (symbol_attrs, attrs); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4974 return lookup_face (f, attrs, c, NULL); |
24995 | 4975 } |
4976 | |
4977 | |
4978 /* Return the ID of the realized ASCII face of Lisp face with ID | |
4979 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */ | |
4980 | |
4981 int | |
4982 ascii_face_of_lisp_face (f, lface_id) | |
4983 struct frame *f; | |
4984 int lface_id; | |
4985 { | |
4986 int face_id; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4987 |
24995 | 4988 if (lface_id >= 0 && lface_id < lface_id_to_name_size) |
4989 { | |
4990 Lisp_Object face_name = lface_id_to_name[lface_id]; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4991 face_id = lookup_named_face (f, face_name, 0); |
24995 | 4992 } |
4993 else | |
4994 face_id = -1; | |
4995 | |
4996 return face_id; | |
4997 } | |
4998 | |
4999 | |
5000 /* Return a face for charset ASCII that is like the face with id | |
5001 FACE_ID on frame F, but has a font that is STEPS steps smaller. | |
5002 STEPS < 0 means larger. Value is the id of the face. */ | |
5003 | |
5004 int | |
5005 smaller_face (f, face_id, steps) | |
5006 struct frame *f; | |
5007 int face_id, steps; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5008 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5009 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5010 struct face *face; |
5011 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5012 int pt, last_pt, last_height; | |
5013 int delta; | |
5014 int new_face_id; | |
5015 struct face *new_face; | |
5016 | |
5017 /* If not called for an X frame, just return the original face. */ | |
5018 if (FRAME_TERMCAP_P (f)) | |
5019 return face_id; | |
5020 | |
5021 /* Try in increments of 1/2 pt. */ | |
5022 delta = steps < 0 ? 5 : -5; | |
5023 steps = abs (steps); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5024 |
24995 | 5025 face = FACE_FROM_ID (f, face_id); |
5026 bcopy (face->lface, attrs, sizeof attrs); | |
5027 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5028 new_face_id = face_id; | |
5029 last_height = FONT_HEIGHT (face->font); | |
5030 | |
5031 while (steps | |
5032 && pt + delta > 0 | |
5033 /* Give up if we cannot find a font within 10pt. */ | |
5034 && abs (last_pt - pt) < 100) | |
5035 { | |
5036 /* Look up a face for a slightly smaller/larger font. */ | |
5037 pt += delta; | |
5038 attrs[LFACE_HEIGHT_INDEX] = make_number (pt); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5039 new_face_id = lookup_face (f, attrs, 0, NULL); |
24995 | 5040 new_face = FACE_FROM_ID (f, new_face_id); |
5041 | |
5042 /* If height changes, count that as one step. */ | |
5043 if (FONT_HEIGHT (new_face->font) != last_height) | |
5044 { | |
5045 --steps; | |
5046 last_height = FONT_HEIGHT (new_face->font); | |
5047 last_pt = pt; | |
5048 } | |
5049 } | |
5050 | |
5051 return new_face_id; | |
5052 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5053 #else /* not HAVE_WINDOW_SYSTEM */ |
24995 | 5054 |
5055 return face_id; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5056 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5057 #endif /* not HAVE_WINDOW_SYSTEM */ |
24995 | 5058 } |
5059 | |
5060 | |
5061 /* Return a face for charset ASCII that is like the face with id | |
5062 FACE_ID on frame F, but has height HEIGHT. */ | |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
5063 |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
5064 int |
24995 | 5065 face_with_height (f, face_id, height) |
5066 struct frame *f; | |
5067 int face_id; | |
5068 int height; | |
5069 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5070 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5071 struct face *face; |
5072 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5073 | |
5074 if (FRAME_TERMCAP_P (f) | |
5075 || height <= 0) | |
5076 return face_id; | |
5077 | |
5078 face = FACE_FROM_ID (f, face_id); | |
5079 bcopy (face->lface, attrs, sizeof attrs); | |
5080 attrs[LFACE_HEIGHT_INDEX] = make_number (height); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5081 face_id = lookup_face (f, attrs, 0, NULL); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5082 #endif /* HAVE_WINDOW_SYSTEM */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5083 |
24995 | 5084 return face_id; |
5085 } | |
5086 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5087 /* Return the face id of the realized face for named face SYMBOL on |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5088 frame F suitable for displaying character C, and use attributes of |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5089 the face FACE_ID for attributes that aren't completely specified by |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5090 SYMBOL. This is like lookup_named_face, except that the default |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5091 attributes come from FACE_ID, not from the default face. FACE_ID |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5092 is assumed to be already realized. */ |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5093 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5094 int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5095 lookup_derived_face (f, symbol, c, face_id) |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5096 struct frame *f; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5097 Lisp_Object symbol; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5098 int c; |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5099 int face_id; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5100 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5101 Lisp_Object attrs[LFACE_VECTOR_SIZE]; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5102 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5103 struct face *default_face = FACE_FROM_ID (f, face_id); |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5104 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5105 if (!default_face) |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5106 abort (); |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5107 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5108 get_lface_attributes (f, symbol, symbol_attrs, 1); |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5109 bcopy (default_face->lface, attrs, sizeof attrs); |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5110 merge_face_vectors (symbol_attrs, attrs); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5111 return lookup_face (f, attrs, c, default_face); |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5112 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5113 |
24995 | 5114 |
5115 | |
5116 /*********************************************************************** | |
5117 Font selection | |
5118 ***********************************************************************/ | |
5119 | |
5120 DEFUN ("internal-set-font-selection-order", | |
5121 Finternal_set_font_selection_order, | |
5122 Sinternal_set_font_selection_order, 1, 1, 0, | |
5123 "Set font selection order for face font selection to ORDER.\n\ | |
5124 ORDER must be a list of length 4 containing the symbols `:width',\n\ | |
5125 `:height', `:weight', and `:slant'. Face attributes appearing\n\ | |
5126 first in ORDER are matched first, e.g. if `:height' appears before\n\ | |
5127 `:weight' in ORDER, font selection first tries to find a font with\n\ | |
5128 a suitable height, and then tries to match the font weight.\n\ | |
5129 Value is ORDER.") | |
5130 (order) | |
5131 Lisp_Object order; | |
5132 { | |
5133 Lisp_Object list; | |
5134 int i; | |
5135 int indices[4]; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5136 |
24995 | 5137 CHECK_LIST (order, 0); |
5138 bzero (indices, sizeof indices); | |
5139 i = 0; | |
5140 | |
5141 for (list = order; | |
5142 CONSP (list) && i < DIM (indices); | |
5143 list = XCDR (list), ++i) | |
5144 { | |
5145 Lisp_Object attr = XCAR (list); | |
5146 int xlfd; | |
5147 | |
5148 if (EQ (attr, QCwidth)) | |
5149 xlfd = XLFD_SWIDTH; | |
5150 else if (EQ (attr, QCheight)) | |
5151 xlfd = XLFD_POINT_SIZE; | |
5152 else if (EQ (attr, QCweight)) | |
5153 xlfd = XLFD_WEIGHT; | |
5154 else if (EQ (attr, QCslant)) | |
5155 xlfd = XLFD_SLANT; | |
5156 else | |
5157 break; | |
5158 | |
5159 if (indices[i] != 0) | |
5160 break; | |
5161 indices[i] = xlfd; | |
5162 } | |
5163 | |
5164 if (!NILP (list) | |
5165 || i != DIM (indices) | |
5166 || indices[0] == 0 | |
5167 || indices[1] == 0 | |
5168 || indices[2] == 0 | |
5169 || indices[3] == 0) | |
5170 signal_error ("Invalid font sort order", order); | |
5171 | |
5172 if (bcmp (indices, font_sort_order, sizeof indices) != 0) | |
5173 { | |
5174 bcopy (indices, font_sort_order, sizeof font_sort_order); | |
5175 free_all_realized_faces (Qnil); | |
5176 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5177 |
24995 | 5178 return Qnil; |
5179 } | |
5180 | |
5181 | |
5182 DEFUN ("internal-set-alternative-font-family-alist", | |
5183 Finternal_set_alternative_font_family_alist, | |
5184 Sinternal_set_alternative_font_family_alist, 1, 1, 0, | |
5185 "Define alternative font families to try in face font selection.\n\ | |
5186 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.\n\ | |
5187 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can\n\ | |
5188 be found. Value is ALIST.") | |
5189 (alist) | |
5190 Lisp_Object alist; | |
5191 { | |
5192 CHECK_LIST (alist, 0); | |
5193 Vface_alternative_font_family_alist = alist; | |
5194 free_all_realized_faces (Qnil); | |
5195 return alist; | |
5196 } | |
5197 | |
5198 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5199 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5200 |
5201 /* Value is non-zero if FONT is the name of a scalable font. The | |
5202 X11R6 XLFD spec says that point size, pixel size, and average width | |
5203 are zero for scalable fonts. Intlfonts contain at least one | |
5204 scalable font ("*-muleindian-1") for which this isn't true, so we | |
5205 just test average width. */ | |
5206 | |
5207 static int | |
5208 font_scalable_p (font) | |
5209 struct font_name *font; | |
5210 { | |
5211 char *s = font->fields[XLFD_AVGWIDTH]; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5212 return (*s == '0' && *(s + 1) == '\0') |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5213 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5214 /* Windows implementation of XLFD is slightly broken for backward |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5215 compatibility with previous broken versions, so test for |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5216 wildcards as well as 0. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5217 || *s == '*' |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5218 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5219 ; |
24995 | 5220 } |
5221 | |
5222 | |
5223 /* Value is non-zero if FONT1 is a better match for font attributes | |
5224 VALUES than FONT2. VALUES is an array of face attribute values in | |
5225 font sort order. COMPARE_PT_P zero means don't compare point | |
5226 sizes. */ | |
5227 | |
5228 static int | |
5229 better_font_p (values, font1, font2, compare_pt_p) | |
5230 int *values; | |
5231 struct font_name *font1, *font2; | |
5232 int compare_pt_p; | |
5233 { | |
5234 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5235 |
24995 | 5236 for (i = 0; i < 4; ++i) |
5237 { | |
5238 int xlfd_idx = font_sort_order[i]; | |
5239 | |
5240 if (compare_pt_p || xlfd_idx != XLFD_POINT_SIZE) | |
5241 { | |
5242 int delta1 = abs (values[i] - font1->numeric[xlfd_idx]); | |
5243 int delta2 = abs (values[i] - font2->numeric[xlfd_idx]); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5244 |
24995 | 5245 if (delta1 > delta2) |
5246 return 0; | |
5247 else if (delta1 < delta2) | |
5248 return 1; | |
5249 else | |
5250 { | |
5251 /* The difference may be equal because, e.g., the face | |
5252 specifies `italic' but we have only `regular' and | |
5253 `oblique'. Prefer `oblique' in this case. */ | |
5254 if ((xlfd_idx == XLFD_WEIGHT || xlfd_idx == XLFD_SLANT) | |
5255 && font1->numeric[xlfd_idx] > values[i] | |
5256 && font2->numeric[xlfd_idx] < values[i]) | |
5257 return 1; | |
5258 } | |
5259 } | |
5260 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5261 |
24995 | 5262 return 0; |
5263 } | |
5264 | |
5265 | |
5266 #if SCALABLE_FONTS | |
5267 | |
5268 /* Value is non-zero if FONT is an exact match for face attributes in | |
5269 SPECIFIED. SPECIFIED is an array of face attribute values in font | |
5270 sort order. */ | |
5271 | |
5272 static int | |
5273 exact_face_match_p (specified, font) | |
5274 int *specified; | |
5275 struct font_name *font; | |
5276 { | |
5277 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5278 |
24995 | 5279 for (i = 0; i < 4; ++i) |
5280 if (specified[i] != font->numeric[font_sort_order[i]]) | |
5281 break; | |
5282 | |
5283 return i == 4; | |
5284 } | |
5285 | |
5286 | |
5287 /* Value is the name of a scaled font, generated from scalable font | |
5288 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to. | |
5289 Value is allocated from heap. */ | |
5290 | |
5291 static char * | |
5292 build_scalable_font_name (f, font, specified_pt) | |
5293 struct frame *f; | |
5294 struct font_name *font; | |
5295 int specified_pt; | |
5296 { | |
5297 char point_size[20], pixel_size[20]; | |
5298 int pixel_value; | |
5299 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
5300 double pt; | |
5301 | |
5302 /* If scalable font is for a specific resolution, compute | |
5303 the point size we must specify from the resolution of | |
5304 the display and the specified resolution of the font. */ | |
5305 if (font->numeric[XLFD_RESY] != 0) | |
5306 { | |
5307 pt = resy / font->numeric[XLFD_RESY] * specified_pt + 0.5; | |
5308 pixel_value = font->numeric[XLFD_RESY] / 720.0 * pt; | |
5309 } | |
5310 else | |
5311 { | |
5312 pt = specified_pt; | |
5313 pixel_value = resy / 720.0 * pt; | |
5314 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5315 |
24995 | 5316 /* Set point size of the font. */ |
5317 sprintf (point_size, "%d", (int) pt); | |
5318 font->fields[XLFD_POINT_SIZE] = point_size; | |
5319 font->numeric[XLFD_POINT_SIZE] = pt; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5320 |
24995 | 5321 /* Set pixel size. */ |
5322 sprintf (pixel_size, "%d", pixel_value); | |
5323 font->fields[XLFD_PIXEL_SIZE] = pixel_size; | |
5324 font->numeric[XLFD_PIXEL_SIZE] = pixel_value; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5325 |
24995 | 5326 /* If font doesn't specify its resolution, use the |
5327 resolution of the display. */ | |
5328 if (font->numeric[XLFD_RESY] == 0) | |
5329 { | |
5330 char buffer[20]; | |
5331 sprintf (buffer, "%d", (int) resy); | |
5332 font->fields[XLFD_RESY] = buffer; | |
5333 font->numeric[XLFD_RESY] = resy; | |
5334 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5335 |
24995 | 5336 if (strcmp (font->fields[XLFD_RESX], "0") == 0) |
5337 { | |
5338 char buffer[20]; | |
5339 int resx = FRAME_X_DISPLAY_INFO (f)->resx; | |
5340 sprintf (buffer, "%d", resx); | |
5341 font->fields[XLFD_RESX] = buffer; | |
5342 font->numeric[XLFD_RESX] = resx; | |
5343 } | |
5344 | |
5345 return build_font_name (font); | |
5346 } | |
5347 | |
5348 | |
5349 /* Value is non-zero if we are allowed to use scalable font FONT. We | |
5350 can't run a Lisp function here since this function may be called | |
5351 with input blocked. */ | |
5352 | |
5353 static int | |
5354 may_use_scalable_font_p (font, name) | |
5355 struct font_name *font; | |
5356 char *name; | |
5357 { | |
5358 if (EQ (Vscalable_fonts_allowed, Qt)) | |
5359 return 1; | |
5360 else if (CONSP (Vscalable_fonts_allowed)) | |
5361 { | |
5362 Lisp_Object tail, regexp; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5363 |
24995 | 5364 for (tail = Vscalable_fonts_allowed; CONSP (tail); tail = XCDR (tail)) |
5365 { | |
5366 regexp = XCAR (tail); | |
5367 if (STRINGP (regexp) | |
5368 && fast_c_string_match_ignore_case (regexp, name) >= 0) | |
5369 return 1; | |
5370 } | |
5371 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5372 |
24995 | 5373 return 0; |
5374 } | |
5375 | |
5376 #endif /* SCALABLE_FONTS != 0 */ | |
5377 | |
5378 | |
5379 /* Return the name of the best matching font for face attributes | |
5380 ATTRS in the array of font_name structures FONTS which contains | |
5381 NFONTS elements. Value is a font name which is allocated from | |
5382 the heap. FONTS is freed by this function. */ | |
5383 | |
5384 static char * | |
5385 best_matching_font (f, attrs, fonts, nfonts) | |
5386 struct frame *f; | |
5387 Lisp_Object *attrs; | |
5388 struct font_name *fonts; | |
5389 int nfonts; | |
5390 { | |
5391 char *font_name; | |
5392 struct font_name *best; | |
5393 int i, pt; | |
5394 int specified[4]; | |
5395 int exact_p; | |
5396 | |
5397 if (nfonts == 0) | |
5398 return NULL; | |
5399 | |
5400 /* Make specified font attributes available in `specified', | |
5401 indexed by sort order. */ | |
5402 for (i = 0; i < DIM (font_sort_order); ++i) | |
5403 { | |
5404 int xlfd_idx = font_sort_order[i]; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5405 |
24995 | 5406 if (xlfd_idx == XLFD_SWIDTH) |
5407 specified[i] = face_numeric_swidth (attrs[LFACE_SWIDTH_INDEX]); | |
5408 else if (xlfd_idx == XLFD_POINT_SIZE) | |
5409 specified[i] = pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5410 else if (xlfd_idx == XLFD_WEIGHT) | |
5411 specified[i] = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
5412 else if (xlfd_idx == XLFD_SLANT) | |
5413 specified[i] = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
5414 else | |
5415 abort (); | |
5416 } | |
5417 | |
5418 #if SCALABLE_FONTS | |
5419 | |
5420 /* Set to 1 */ | |
5421 exact_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5422 |
24995 | 5423 /* Start with the first non-scalable font in the list. */ |
5424 for (i = 0; i < nfonts; ++i) | |
5425 if (!font_scalable_p (fonts + i)) | |
5426 break; | |
5427 | |
5428 /* Find the best match among the non-scalable fonts. */ | |
5429 if (i < nfonts) | |
5430 { | |
5431 best = fonts + i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5432 |
24995 | 5433 for (i = 1; i < nfonts; ++i) |
5434 if (!font_scalable_p (fonts + i) | |
5435 && better_font_p (specified, fonts + i, best, 1)) | |
5436 { | |
5437 best = fonts + i; | |
5438 | |
5439 exact_p = exact_face_match_p (specified, best); | |
5440 if (exact_p) | |
5441 break; | |
5442 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5443 |
24995 | 5444 } |
5445 else | |
5446 best = NULL; | |
5447 | |
5448 /* Unless we found an exact match among non-scalable fonts, see if | |
5449 we can find a better match among scalable fonts. */ | |
5450 if (!exact_p) | |
5451 { | |
5452 /* A scalable font is better if | |
5453 | |
5454 1. its weight, slant, swidth attributes are better, or. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5455 |
24995 | 5456 2. the best non-scalable font doesn't have the required |
5457 point size, and the scalable fonts weight, slant, swidth | |
5458 isn't worse. */ | |
5459 | |
5460 int non_scalable_has_exact_height_p; | |
5461 | |
5462 if (best && best->numeric[XLFD_POINT_SIZE] == pt) | |
5463 non_scalable_has_exact_height_p = 1; | |
5464 else | |
5465 non_scalable_has_exact_height_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5466 |
24995 | 5467 for (i = 0; i < nfonts; ++i) |
5468 if (font_scalable_p (fonts + i)) | |
5469 { | |
5470 if (best == NULL | |
5471 || better_font_p (specified, fonts + i, best, 0) | |
5472 || (!non_scalable_has_exact_height_p | |
5473 && !better_font_p (specified, best, fonts + i, 0))) | |
5474 best = fonts + i; | |
5475 } | |
5476 } | |
5477 | |
5478 if (font_scalable_p (best)) | |
5479 font_name = build_scalable_font_name (f, best, pt); | |
5480 else | |
5481 font_name = build_font_name (best); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5482 |
24995 | 5483 #else /* !SCALABLE_FONTS */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5484 |
24995 | 5485 /* Find the best non-scalable font. */ |
5486 best = fonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5487 |
24995 | 5488 for (i = 1; i < nfonts; ++i) |
5489 { | |
5490 xassert (!font_scalable_p (fonts + i)); | |
5491 if (better_font_p (specified, fonts + i, best, 1)) | |
5492 best = fonts + i; | |
5493 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5494 |
24995 | 5495 font_name = build_font_name (best); |
5496 | |
5497 #endif /* !SCALABLE_FONTS */ | |
5498 | |
5499 /* Free font_name structures. */ | |
5500 free_font_names (fonts, nfonts); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5501 |
24995 | 5502 return font_name; |
5503 } | |
5504 | |
5505 | |
5506 /* Try to get a list of fonts on frame F with font family FAMILY and | |
5507 registry/encoding REGISTRY. Return in *FONTS a pointer to a vector | |
5508 of font_name structures for the fonts matched. Value is the number | |
5509 of fonts found. */ | |
5510 | |
5511 static int | |
5512 try_font_list (f, attrs, pattern, family, registry, fonts) | |
5513 struct frame *f; | |
5514 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5515 Lisp_Object pattern, family, registry; |
24995 | 5516 struct font_name **fonts; |
5517 { | |
5518 int nfonts; | |
5519 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5520 if (NILP (family) && STRINGP (attrs[LFACE_FAMILY_INDEX])) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5521 family = attrs[LFACE_FAMILY_INDEX]; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5522 |
24995 | 5523 nfonts = font_list (f, pattern, family, registry, fonts); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5524 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5525 if (nfonts == 0 && !NILP (family)) |
24995 | 5526 { |
5527 Lisp_Object alter; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5528 |
24995 | 5529 /* Try alternative font families from |
5530 Vface_alternative_font_family_alist. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5531 alter = Fassoc (family, Vface_alternative_font_family_alist); |
24995 | 5532 if (CONSP (alter)) |
5533 for (alter = XCDR (alter); | |
5534 CONSP (alter) && nfonts == 0; | |
5535 alter = XCDR (alter)) | |
5536 { | |
5537 if (STRINGP (XCAR (alter))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5538 nfonts = font_list (f, Qnil, XCAR (alter), registry, fonts); |
24995 | 5539 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5540 |
24995 | 5541 /* Try font family of the default face or "fixed". */ |
5542 if (nfonts == 0) | |
5543 { | |
5544 struct face *dflt = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5545 if (dflt) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5546 family = dflt->lface[LFACE_FAMILY_INDEX]; |
24995 | 5547 else |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5548 family = build_string ("fixed"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5549 nfonts = font_list (f, Qnil, family, registry, fonts); |
24995 | 5550 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5551 |
24995 | 5552 /* Try any family with the given registry. */ |
5553 if (nfonts == 0) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5554 nfonts = font_list (f, Qnil, Qnil, registry, fonts); |
24995 | 5555 } |
5556 | |
5557 return nfonts; | |
5558 } | |
5559 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5560 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5561 /* Return the fontset id of the base fontset name or alias name given |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5562 by the fontset attribute of ATTRS. Value is -1 if the fontset |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5563 attribute of ATTRS doesn't name a fontset. */ |
24995 | 5564 |
5565 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5566 face_fontset (attrs) |
24995 | 5567 Lisp_Object *attrs; |
5568 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5569 Lisp_Object name; |
24995 | 5570 int fontset; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5571 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5572 name = attrs[LFACE_FONT_INDEX]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5573 if (!STRINGP (name)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5574 return -1; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5575 return fs_query_fontset (name, 0); |
24995 | 5576 } |
5577 | |
5578 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5579 /* Choose a name of font to use on frame F to display character C with |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5580 Lisp face attributes specified by ATTRS. The font name is |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5581 determined by the font-related attributes in ATTRS and the name |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5582 pattern for C in FONTSET. Value is the font name which is |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5583 allocated from the heap and must be freed by the caller, or NULL if |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5584 we can get no information about the font name of C. It is assured |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5585 that we always get some information for a single byte |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5586 character. */ |
24995 | 5587 |
5588 static char * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5589 choose_face_font (f, attrs, fontset, c) |
24995 | 5590 struct frame *f; |
5591 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5592 int fontset, c; |
24995 | 5593 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5594 Lisp_Object pattern; |
24995 | 5595 char *font_name = NULL; |
5596 struct font_name *fonts; | |
5597 int nfonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5598 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5599 /* Get (foundry and) family name and registry (and encoding) name of |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5600 a font for C. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5601 pattern = fontset_font_pattern (f, fontset, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5602 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5603 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5604 xassert (!SINGLE_BYTE_CHAR_P (c)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5605 return NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5606 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5607 /* If what we got is a name pattern, return it. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5608 if (STRINGP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5609 return xstrdup (XSTRING (pattern)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5610 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5611 /* Family name may be specified both in ATTRS and car part of |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5612 PATTERN. The former has higher priority if C is a single byte |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5613 character. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5614 if (STRINGP (attrs[LFACE_FAMILY_INDEX]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5615 && SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5616 XCAR (pattern) = Qnil; |
24995 | 5617 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5618 /* Get a list of fonts matching that pattern and choose the |
24995 | 5619 best match for the specified face attributes from it. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5620 nfonts = try_font_list (f, attrs, Qnil, XCAR (pattern), XCDR (pattern), |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5621 &fonts); |
24995 | 5622 font_name = best_matching_font (f, attrs, fonts, nfonts); |
5623 return font_name; | |
5624 } | |
5625 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5626 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5627 |
5628 | |
5629 | |
5630 /*********************************************************************** | |
5631 Face Realization | |
5632 ***********************************************************************/ | |
5633 | |
5634 /* Realize basic faces on frame F. Value is zero if frame parameters | |
5635 of F don't contain enough information needed to realize the default | |
5636 face. */ | |
5637 | |
5638 static int | |
5639 realize_basic_faces (f) | |
2342 | 5640 struct frame *f; |
24995 | 5641 { |
5642 int success_p = 0; | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5643 |
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5644 /* Block input there so that we won't be surprised by an X expose |
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5645 event, for instance without having the faces set up. */ |
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5646 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5647 |
24995 | 5648 if (realize_default_face (f)) |
5649 { | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
5650 realize_named_face (f, Qmode_line, MODE_LINE_FACE_ID); |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25389
diff
changeset
|
5651 realize_named_face (f, Qtool_bar, TOOL_BAR_FACE_ID); |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5652 realize_named_face (f, Qfringe, BITMAP_AREA_FACE_ID); |
25546 | 5653 realize_named_face (f, Qheader_line, HEADER_LINE_FACE_ID); |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5654 realize_named_face (f, Qscroll_bar, SCROLL_BAR_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5655 realize_named_face (f, Qborder, BORDER_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5656 realize_named_face (f, Qcursor, CURSOR_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5657 realize_named_face (f, Qmouse, MOUSE_FACE_ID); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
5658 realize_named_face (f, Qmenu, MENU_FACE_ID); |
24995 | 5659 success_p = 1; |
5660 } | |
5661 | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5662 UNBLOCK_INPUT; |
24995 | 5663 return success_p; |
5664 } | |
5665 | |
5666 | |
5667 /* Realize the default face on frame F. If the face is not fully | |
5668 specified, make it fully-specified. Attributes of the default face | |
5669 that are not explicitly specified are taken from frame parameters. */ | |
5670 | |
5671 static int | |
5672 realize_default_face (f) | |
5673 struct frame *f; | |
5674 { | |
5675 struct face_cache *c = FRAME_FACE_CACHE (f); | |
5676 Lisp_Object lface; | |
5677 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5678 Lisp_Object frame_font; | |
5679 struct face *face; | |
5680 int fontset; | |
5681 | |
5682 /* If the `default' face is not yet known, create it. */ | |
5683 lface = lface_from_face_name (f, Qdefault, 0); | |
5684 if (NILP (lface)) | |
5685 { | |
5686 Lisp_Object frame; | |
5687 XSETFRAME (frame, f); | |
5688 lface = Finternal_make_lisp_face (Qdefault, frame); | |
5689 } | |
5690 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5691 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5692 if (FRAME_WINDOW_P (f)) |
24995 | 5693 { |
5694 /* Set frame_font to the value of the `font' frame parameter. */ | |
5695 frame_font = Fassq (Qfont, f->param_alist); | |
5696 xassert (CONSP (frame_font) && STRINGP (XCDR (frame_font))); | |
5697 frame_font = XCDR (frame_font); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5698 set_lface_from_font_name (f, lface, frame_font, 0, 1); |
24995 | 5699 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5700 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5701 |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5702 if (!FRAME_WINDOW_P (f)) |
24995 | 5703 { |
5704 LFACE_FAMILY (lface) = build_string ("default"); | |
5705 LFACE_SWIDTH (lface) = Qnormal; | |
5706 LFACE_HEIGHT (lface) = make_number (1); | |
5707 LFACE_WEIGHT (lface) = Qnormal; | |
5708 LFACE_SLANT (lface) = Qnormal; | |
5709 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5710 |
24995 | 5711 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface))) |
5712 LFACE_UNDERLINE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5713 |
24995 | 5714 if (UNSPECIFIEDP (LFACE_OVERLINE (lface))) |
5715 LFACE_OVERLINE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5716 |
24995 | 5717 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface))) |
5718 LFACE_STRIKE_THROUGH (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5719 |
24995 | 5720 if (UNSPECIFIEDP (LFACE_BOX (lface))) |
5721 LFACE_BOX (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5722 |
24995 | 5723 if (UNSPECIFIEDP (LFACE_INVERSE (lface))) |
5724 LFACE_INVERSE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5725 |
24995 | 5726 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
5727 { | |
5728 /* This function is called so early that colors are not yet | |
5729 set in the frame parameter list. */ | |
5730 Lisp_Object color = Fassq (Qforeground_color, f->param_alist); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5731 |
24995 | 5732 if (CONSP (color) && STRINGP (XCDR (color))) |
5733 LFACE_FOREGROUND (lface) = XCDR (color); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5734 else if (FRAME_WINDOW_P (f)) |
24995 | 5735 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5736 else if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f)) |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
5737 LFACE_FOREGROUND (lface) = build_string (unspecified_fg); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5738 else |
24995 | 5739 abort (); |
5740 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5741 |
24995 | 5742 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
5743 { | |
5744 /* This function is called so early that colors are not yet | |
5745 set in the frame parameter list. */ | |
5746 Lisp_Object color = Fassq (Qbackground_color, f->param_alist); | |
5747 if (CONSP (color) && STRINGP (XCDR (color))) | |
5748 LFACE_BACKGROUND (lface) = XCDR (color); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5749 else if (FRAME_WINDOW_P (f)) |
24995 | 5750 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5751 else if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f)) |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
5752 LFACE_BACKGROUND (lface) = build_string (unspecified_bg); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5753 else |
24995 | 5754 abort (); |
5755 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5756 |
24995 | 5757 if (UNSPECIFIEDP (LFACE_STIPPLE (lface))) |
5758 LFACE_STIPPLE (lface) = Qnil; | |
5759 | |
5760 /* Realize the face; it must be fully-specified now. */ | |
5761 xassert (lface_fully_specified_p (XVECTOR (lface)->contents)); | |
5762 check_lface (lface); | |
5763 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5764 face = realize_face (c, attrs, 0, NULL, DEFAULT_FACE_ID); |
24995 | 5765 return 1; |
5766 } | |
5767 | |
5768 | |
5769 /* Realize basic faces other than the default face in face cache C. | |
5770 SYMBOL is the face name, ID is the face id the realized face must | |
5771 have. The default face must have been realized already. */ | |
5772 | |
5773 static void | |
5774 realize_named_face (f, symbol, id) | |
5775 struct frame *f; | |
5776 Lisp_Object symbol; | |
5777 int id; | |
5778 { | |
5779 struct face_cache *c = FRAME_FACE_CACHE (f); | |
5780 Lisp_Object lface = lface_from_face_name (f, symbol, 0); | |
5781 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5782 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
5783 struct face *new_face; | |
5784 | |
5785 /* The default face must exist and be fully specified. */ | |
5786 get_lface_attributes (f, Qdefault, attrs, 1); | |
5787 check_lface_attrs (attrs); | |
5788 xassert (lface_fully_specified_p (attrs)); | |
5789 | |
5790 /* If SYMBOL isn't know as a face, create it. */ | |
5791 if (NILP (lface)) | |
5792 { | |
5793 Lisp_Object frame; | |
5794 XSETFRAME (frame, f); | |
5795 lface = Finternal_make_lisp_face (symbol, frame); | |
5796 } | |
5797 | |
5798 /* Merge SYMBOL's face with the default face. */ | |
5799 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
5800 merge_face_vectors (symbol_attrs, attrs); | |
5801 | |
5802 /* Realize the face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5803 new_face = realize_face (c, attrs, 0, NULL, id); |
24995 | 5804 } |
5805 | |
5806 | |
5807 /* Realize the fully-specified face with attributes ATTRS in face | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5808 cache CACHE for character C. If C is a multibyte character, |
28753
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5809 BASE_FACE is a face that has the same attributes. Otherwise, |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5810 BASE_FACE is ignored. If FORMER_FACE_ID is non-negative, it is an |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5811 ID of face to remove before caching the new face. Value is a |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5812 pointer to the newly created realized face. */ |
24995 | 5813 |
5814 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5815 realize_face (cache, attrs, c, base_face, former_face_id) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5816 struct face_cache *cache; |
24995 | 5817 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5818 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5819 struct face *base_face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5820 int former_face_id; |
24995 | 5821 { |
5822 struct face *face; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5823 |
24995 | 5824 /* LFACE must be fully specified. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5825 xassert (cache != NULL); |
24995 | 5826 check_lface_attrs (attrs); |
5827 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5828 if (former_face_id >= 0 && cache->used > former_face_id) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5829 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5830 /* Remove the former face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5831 struct face *former_face = cache->faces_by_id[former_face_id]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5832 uncache_face (cache, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5833 free_realized_face (cache->f, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5834 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5835 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5836 if (FRAME_WINDOW_P (cache->f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5837 face = realize_x_face (cache, attrs, c, base_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5838 else if (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5839 face = realize_tty_face (cache, attrs, c); |
24995 | 5840 else |
5841 abort (); | |
5842 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5843 /* Insert the new face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5844 cache_face (cache, face, lface_hash (attrs)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5845 #ifdef HAVE_WINDOW_SYSTEM |
28544
b42146066357
(realize_face): Change FRAME_X_P to FRAME_WINDOW_P.
Jason Rumney <jasonr@gnu.org>
parents:
28529
diff
changeset
|
5846 if (FRAME_WINDOW_P (cache->f) && face->font == NULL) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5847 load_face_font (cache->f, face, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5848 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5849 return face; |
5850 } | |
5851 | |
5852 | |
5853 /* Realize the fully-specified face with attributes ATTRS in face | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5854 cache CACHE for character C. Do it for X frame CACHE->f. If C is |
28753
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5855 a multibyte character, BASE_FACE is a face that has the same |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5856 attributes. Otherwise, BASE_FACE is ignored. If the new face |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5857 doesn't share font with the default face, a fontname is allocated |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5858 from the heap and set in `font_name' of the new face, but it is not |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5859 yet loaded here. Value is a pointer to the newly created realized |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5860 face. */ |
24995 | 5861 |
5862 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5863 realize_x_face (cache, attrs, c, base_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5864 struct face_cache *cache; |
24995 | 5865 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5866 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5867 struct face *base_face; |
24995 | 5868 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5869 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5870 struct face *face, *default_face; |
26875
d6aa11f2a4af
(choose_face_fontset_font): Delete codes for a
Kenichi Handa <handa@m17n.org>
parents:
26759
diff
changeset
|
5871 struct frame *f; |
24995 | 5872 Lisp_Object stipple, overline, strike_through, box; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5873 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5874 xassert (FRAME_WINDOW_P (cache->f)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5875 xassert (SINGLE_BYTE_CHAR_P (c) |
28753
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5876 || base_face); |
24995 | 5877 |
5878 /* Allocate a new realized face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5879 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5880 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5881 f = cache->f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5882 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5883 /* If C is a multibyte character, we share all face attirbutes with |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5884 BASE_FACE including the realized fontset. But, we must load a |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5885 different font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5886 if (!SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5887 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5888 bcopy (base_face, face, sizeof *face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5889 face->gc = 0; |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5890 |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5891 /* Don't try to free the colors copied bitwise from BASE_FACE. */ |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5892 face->foreground_defaulted_p = 1; |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5893 face->background_defaulted_p = 1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5894 face->underline_defaulted_p = 1; |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5895 face->overline_color_defaulted_p = 1; |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5896 face->strike_through_color_defaulted_p = 1; |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5897 face->box_color_defaulted_p = 1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5898 |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5899 /* to force realize_face to load font */ |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5900 face->font = NULL; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5901 return face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5902 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5903 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5904 /* Now we are realizing a face for ASCII (and unibyte) characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5905 |
24995 | 5906 /* Determine the font to use. Most of the time, the font will be |
5907 the same as the font of the default face, so try that first. */ | |
5908 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5909 if (default_face | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5910 && FACE_SUITABLE_FOR_CHAR_P (default_face, c) |
24995 | 5911 && lface_same_font_attributes_p (default_face->lface, attrs)) |
5912 { | |
5913 face->font = default_face->font; | |
5914 face->fontset = default_face->fontset; | |
5915 face->font_info_id = default_face->font_info_id; | |
5916 face->font_name = default_face->font_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5917 face->ascii_face = face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5918 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5919 /* But, as we can't share the fontset, make a new realized |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5920 fontset that has the same base fontset as of the default |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5921 face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5922 face->fontset |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5923 = make_fontset_for_ascii_face (f, default_face->fontset); |
24995 | 5924 } |
5925 else | |
5926 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5927 /* If the face attribute ATTRS specifies a fontset, use it as |
30211
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
5928 the base of a new realized fontset. Otherwise, use the same |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
5929 base fontset as of the default face. The base determines |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
5930 registry and encoding of a font. It may also determine |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
5931 foundry and family. The other fields of font name pattern |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
5932 are constructed from ATTRS. */ |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
5933 int fontset = face_fontset (attrs); |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
5934 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5935 if ((fontset == -1) && default_face) |
30211
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
5936 fontset = default_face->fontset; |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
5937 face->fontset = make_fontset_for_ascii_face (f, fontset); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5938 face->font = NULL; /* to force realize_face to load font */ |
24995 | 5939 } |
5940 | |
5941 /* Load colors, and set remaining attributes. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5942 |
24995 | 5943 load_face_colors (f, face, attrs); |
5944 | |
5945 /* Set up box. */ | |
5946 box = attrs[LFACE_BOX_INDEX]; | |
5947 if (STRINGP (box)) | |
5948 { | |
5949 /* A simple box of line width 1 drawn in color given by | |
5950 the string. */ | |
5951 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX], | |
5952 LFACE_BOX_INDEX); | |
5953 face->box = FACE_SIMPLE_BOX; | |
5954 face->box_line_width = 1; | |
5955 } | |
5956 else if (INTEGERP (box)) | |
5957 { | |
5958 /* Simple box of specified line width in foreground color of the | |
5959 face. */ | |
5960 xassert (XINT (box) > 0); | |
5961 face->box = FACE_SIMPLE_BOX; | |
5962 face->box_line_width = XFASTINT (box); | |
5963 face->box_color = face->foreground; | |
5964 face->box_color_defaulted_p = 1; | |
5965 } | |
5966 else if (CONSP (box)) | |
5967 { | |
5968 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW | |
5969 being one of `raised' or `sunken'. */ | |
5970 face->box = FACE_SIMPLE_BOX; | |
5971 face->box_color = face->foreground; | |
5972 face->box_color_defaulted_p = 1; | |
5973 face->box_line_width = 1; | |
5974 | |
5975 while (CONSP (box)) | |
5976 { | |
5977 Lisp_Object keyword, value; | |
5978 | |
5979 keyword = XCAR (box); | |
5980 box = XCDR (box); | |
5981 | |
5982 if (!CONSP (box)) | |
5983 break; | |
5984 value = XCAR (box); | |
5985 box = XCDR (box); | |
5986 | |
5987 if (EQ (keyword, QCline_width)) | |
5988 { | |
5989 if (INTEGERP (value) && XINT (value) > 0) | |
5990 face->box_line_width = XFASTINT (value); | |
5991 } | |
5992 else if (EQ (keyword, QCcolor)) | |
5993 { | |
5994 if (STRINGP (value)) | |
5995 { | |
5996 face->box_color = load_color (f, face, value, | |
5997 LFACE_BOX_INDEX); | |
5998 face->use_box_color_for_shadows_p = 1; | |
5999 } | |
6000 } | |
6001 else if (EQ (keyword, QCstyle)) | |
6002 { | |
6003 if (EQ (value, Qreleased_button)) | |
6004 face->box = FACE_RAISED_BOX; | |
6005 else if (EQ (value, Qpressed_button)) | |
6006 face->box = FACE_SUNKEN_BOX; | |
6007 } | |
6008 } | |
6009 } | |
6010 | |
6011 /* Text underline, overline, strike-through. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6012 |
24995 | 6013 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt)) |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6014 { |
24995 | 6015 /* Use default color (same as foreground color). */ |
6016 face->underline_p = 1; | |
6017 face->underline_defaulted_p = 1; | |
6018 face->underline_color = 0; | |
6019 } | |
6020 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX])) | |
6021 { | |
6022 /* Use specified color. */ | |
6023 face->underline_p = 1; | |
6024 face->underline_defaulted_p = 0; | |
6025 face->underline_color | |
6026 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX], | |
6027 LFACE_UNDERLINE_INDEX); | |
6028 } | |
6029 else if (NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6030 { | |
6031 face->underline_p = 0; | |
6032 face->underline_defaulted_p = 0; | |
6033 face->underline_color = 0; | |
6034 } | |
6035 | |
6036 overline = attrs[LFACE_OVERLINE_INDEX]; | |
6037 if (STRINGP (overline)) | |
6038 { | |
6039 face->overline_color | |
6040 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX], | |
6041 LFACE_OVERLINE_INDEX); | |
6042 face->overline_p = 1; | |
6043 } | |
6044 else if (EQ (overline, Qt)) | |
6045 { | |
6046 face->overline_color = face->foreground; | |
6047 face->overline_color_defaulted_p = 1; | |
6048 face->overline_p = 1; | |
6049 } | |
6050 | |
6051 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX]; | |
6052 if (STRINGP (strike_through)) | |
6053 { | |
6054 face->strike_through_color | |
6055 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX], | |
6056 LFACE_STRIKE_THROUGH_INDEX); | |
6057 face->strike_through_p = 1; | |
6058 } | |
6059 else if (EQ (strike_through, Qt)) | |
6060 { | |
6061 face->strike_through_color = face->foreground; | |
6062 face->strike_through_color_defaulted_p = 1; | |
6063 face->strike_through_p = 1; | |
6064 } | |
6065 | |
6066 stipple = attrs[LFACE_STIPPLE_INDEX]; | |
6067 if (!NILP (stipple)) | |
6068 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h); | |
6069 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6070 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c)); |
24995 | 6071 return face; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6072 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6073 } |
6074 | |
6075 | |
6076 /* Realize the fully-specified face with attributes ATTRS in face | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6077 cache CACHE for character C. Do it for TTY frame CACHE->f. Value is a |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6078 pointer to the newly created realized face. */ |
24995 | 6079 |
6080 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6081 realize_tty_face (cache, attrs, c) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6082 struct face_cache *cache; |
24995 | 6083 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6084 int c; |
24995 | 6085 { |
6086 struct face *face; | |
6087 int weight, slant; | |
6088 Lisp_Object color; | |
28412
1a817fd04b31
(realize_tty_face): Use find_symbol_value instead
Gerd Moellmann <gerd@gnu.org>
parents:
28409
diff
changeset
|
6089 Lisp_Object tty_defined_color_alist |
1a817fd04b31
(realize_tty_face): Use find_symbol_value instead
Gerd Moellmann <gerd@gnu.org>
parents:
28409
diff
changeset
|
6090 = find_symbol_value (intern ("tty-defined-color-alist")); |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6091 Lisp_Object tty_color_alist = intern ("tty-color-alist"); |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6092 Lisp_Object frame; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6093 int face_colors_defaulted = 0; |
24995 | 6094 |
6095 /* Frame must be a termcap frame. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6096 xassert (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f)); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6097 |
24995 | 6098 /* Allocate a new realized face. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6099 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6100 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty"; |
24995 | 6101 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6102 /* Map face attributes to TTY appearances. We map slant to |
24995 | 6103 dimmed text because we want italic text to appear differently |
6104 and because dimmed text is probably used infrequently. */ | |
6105 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
6106 slant = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
6107 | |
6108 if (weight > XLFD_WEIGHT_MEDIUM) | |
6109 face->tty_bold_p = 1; | |
6110 if (weight < XLFD_WEIGHT_MEDIUM || slant != XLFD_SLANT_ROMAN) | |
6111 face->tty_dim_p = 1; | |
6112 if (!NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6113 face->tty_underline_p = 1; | |
6114 if (!NILP (attrs[LFACE_INVERSE_INDEX])) | |
6115 face->tty_reverse_p = 1; | |
6116 | |
6117 /* Map color names to color indices. */ | |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6118 face->foreground = FACE_TTY_DEFAULT_FG_COLOR; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6119 face->background = FACE_TTY_DEFAULT_BG_COLOR; |
24995 | 6120 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6121 XSETFRAME (frame, cache->f); |
24995 | 6122 color = attrs[LFACE_FOREGROUND_INDEX]; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6123 if (STRINGP (color) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6124 && XSTRING (color)->size |
28412
1a817fd04b31
(realize_tty_face): Use find_symbol_value instead
Gerd Moellmann <gerd@gnu.org>
parents:
28409
diff
changeset
|
6125 && CONSP (tty_defined_color_alist) |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6126 && (color = Fassoc (color, call1 (tty_color_alist, frame)), |
24995 | 6127 CONSP (color))) |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6128 /* Associations in tty-defined-color-alist are of the form |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6129 (NAME INDEX R G B). We need the INDEX part. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6130 face->foreground = XINT (XCAR (XCDR (color))); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6131 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6132 if (face->foreground == FACE_TTY_DEFAULT_FG_COLOR |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6133 && STRINGP (attrs[LFACE_FOREGROUND_INDEX])) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6134 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6135 face->foreground = load_color (cache->f, face, |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6136 attrs[LFACE_FOREGROUND_INDEX], |
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6137 LFACE_FOREGROUND_INDEX); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6138 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6139 #if defined (MSDOS) || defined (WINDOWSNT) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6140 /* If the foreground of the default face is the default color, |
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6141 use the foreground color defined by the frame. */ |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6142 #ifdef MSDOS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6143 if (FRAME_MSDOS_P (cache->f)) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6144 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6145 #endif /* MSDOS */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6146 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6147 if (face->foreground == FACE_TTY_DEFAULT_FG_COLOR |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6148 || face->foreground == FACE_TTY_DEFAULT_COLOR) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6149 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6150 face->foreground = FRAME_FOREGROUND_PIXEL (cache->f); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6151 attrs[LFACE_FOREGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6152 tty_color_name (cache->f, face->foreground); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6153 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6154 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6155 else if (face->foreground == FACE_TTY_DEFAULT_BG_COLOR) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6156 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6157 face->foreground = FRAME_BACKGROUND_PIXEL (cache->f); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6158 attrs[LFACE_FOREGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6159 tty_color_name (cache->f, face->foreground); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6160 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6161 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6162 #ifdef MSDOS |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6163 } |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6164 #endif |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6165 #endif /* MSDOS or WINDOWSNT */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6166 } |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6167 |
24995 | 6168 color = attrs[LFACE_BACKGROUND_INDEX]; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6169 if (STRINGP (color) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6170 && XSTRING (color)->size |
28412
1a817fd04b31
(realize_tty_face): Use find_symbol_value instead
Gerd Moellmann <gerd@gnu.org>
parents:
28409
diff
changeset
|
6171 && CONSP (tty_defined_color_alist) |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6172 && (color = Fassoc (color, call1 (tty_color_alist, frame)), |
24995 | 6173 CONSP (color))) |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6174 /* Associations in tty-defined-color-alist are of the form |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6175 (NAME INDEX R G B). We need the INDEX part. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6176 face->background = XINT (XCAR (XCDR (color))); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6177 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6178 if (face->background == FACE_TTY_DEFAULT_BG_COLOR |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6179 && STRINGP (attrs[LFACE_BACKGROUND_INDEX])) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6180 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6181 face->background = load_color (cache->f, face, |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6182 attrs[LFACE_BACKGROUND_INDEX], |
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6183 LFACE_BACKGROUND_INDEX); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6184 #if defined (MSDOS) || defined (WINDOWSNT) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6185 /* If the background of the default face is the default color, |
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6186 use the background color defined by the frame. */ |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6187 #ifdef MSDOS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6188 if (FRAME_MSDOS_P (cache->f)) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6189 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6190 #endif /* MSDOS */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6191 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6192 if (face->background == FACE_TTY_DEFAULT_BG_COLOR |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6193 || face->background == FACE_TTY_DEFAULT_COLOR) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6194 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6195 face->background = FRAME_BACKGROUND_PIXEL (cache->f); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6196 attrs[LFACE_BACKGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6197 tty_color_name (cache->f, face->background); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6198 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6199 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6200 else if (face->background == FACE_TTY_DEFAULT_FG_COLOR) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6201 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6202 face->background = FRAME_FOREGROUND_PIXEL (cache->f); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6203 attrs[LFACE_BACKGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6204 tty_color_name (cache->f, face->background); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6205 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6206 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6207 #ifdef MSDOS |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6208 } |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6209 #endif |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6210 #endif /* MSDOS or WINDOWSNT */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6211 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6212 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6213 /* Swap colors if face is inverse-video. If the colors are taken |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6214 from the frame colors, they are already inverted, since the |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6215 frame-creation function calls x-handle-reverse-video. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6216 if (face->tty_reverse_p && !face_colors_defaulted) |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6217 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6218 unsigned long tem = face->foreground; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6219 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6220 face->foreground = face->background; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6221 face->background = tem; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6222 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6223 |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6224 if (tty_suppress_bold_inverse_default_colors_p |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6225 && face->tty_bold_p |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6226 && face->background == FACE_TTY_DEFAULT_FG_COLOR |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6227 && face->foreground == FACE_TTY_DEFAULT_BG_COLOR) |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6228 face->tty_bold_p = 0; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6229 |
24995 | 6230 return face; |
6231 } | |
6232 | |
6233 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6234 DEFUN ("tty-suppress-bold-inverse-default-colors", |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6235 Ftty_suppress_bold_inverse_default_colors, |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6236 Stty_suppress_bold_inverse_default_colors, 1, 1, 0, |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6237 "Suppress/allow boldness of faces with inverse default colors.\n\ |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6238 SUPPRESS non-nil means suppress it.\n\ |
28620
8208dba7c326
(Ftty_suppress_bold_inverse_default_colors): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
28544
diff
changeset
|
6239 This affects bold faces on TTYs whose foreground is the default background\n\ |
8208dba7c326
(Ftty_suppress_bold_inverse_default_colors): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
28544
diff
changeset
|
6240 color of the display and whose background is the default foreground color.\n\ |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6241 For such faces, no bold text will be displayed.") |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6242 (suppress) |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6243 Lisp_Object suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6244 { |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6245 tty_suppress_bold_inverse_default_colors_p = !NILP (suppress); |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6246 ++face_change_count; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6247 return suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6248 } |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6249 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6250 |
24995 | 6251 |
6252 /*********************************************************************** | |
6253 Computing Faces | |
6254 ***********************************************************************/ | |
6255 | |
6256 /* Return the ID of the face to use to display character CH with face | |
6257 property PROP on frame F in current_buffer. */ | |
6258 | |
6259 int | |
6260 compute_char_face (f, ch, prop) | |
6261 struct frame *f; | |
6262 int ch; | |
6263 Lisp_Object prop; | |
6264 { | |
6265 int face_id; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6266 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6267 if (NILP (current_buffer->enable_multibyte_characters)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6268 ch = -1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6269 |
24995 | 6270 if (NILP (prop)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6271 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6272 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6273 face_id = FACE_FOR_CHAR (f, face, ch); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6274 } |
24995 | 6275 else |
6276 { | |
6277 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6278 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6279 bcopy (default_face->lface, attrs, sizeof attrs); | |
6280 merge_face_vector_with_property (f, attrs, prop); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6281 face_id = lookup_face (f, attrs, ch, NULL); |
24995 | 6282 } |
6283 | |
6284 return face_id; | |
6285 } | |
6286 | |
6287 | |
6288 /* Return the face ID associated with buffer position POS for | |
6289 displaying ASCII characters. Return in *ENDPTR the position at | |
6290 which a different face is needed, as far as text properties and | |
6291 overlays are concerned. W is a window displaying current_buffer. | |
6292 | |
6293 REGION_BEG, REGION_END delimit the region, so it can be | |
6294 highlighted. | |
6295 | |
6296 LIMIT is a position not to scan beyond. That is to limit the time | |
6297 this function can take. | |
6298 | |
6299 If MOUSE is non-zero, use the character's mouse-face, not its face. | |
6300 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6301 The face returned is suitable for displaying ASCII characters. */ |
24995 | 6302 |
6303 int | |
6304 face_at_buffer_position (w, pos, region_beg, region_end, | |
6305 endptr, limit, mouse) | |
2391 | 6306 struct window *w; |
2342 | 6307 int pos; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6308 int region_beg, region_end; |
2342 | 6309 int *endptr; |
5084
863e092a5891
(compute_char_face): Accept new arg LIMIT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6310 int limit; |
6615
96ddf85642d1
(compute_char_face): New arg MOUSE.
Richard M. Stallman <rms@gnu.org>
parents:
5858
diff
changeset
|
6311 int mouse; |
2342 | 6312 { |
24995 | 6313 struct frame *f = XFRAME (w->frame); |
6314 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6315 Lisp_Object prop, position; |
24995 | 6316 int i, noverlays; |
2342 | 6317 Lisp_Object *overlay_vec; |
2391 | 6318 Lisp_Object frame; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6319 int endpos; |
24995 | 6320 Lisp_Object propname = mouse ? Qmouse_face : Qface; |
6321 Lisp_Object limit1, end; | |
6322 struct face *default_face; | |
6323 int multibyte_p = !NILP (current_buffer->enable_multibyte_characters); | |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6324 |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6325 /* W must display the current buffer. We could write this function |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6326 to use the frame and buffer of W, but right now it doesn't. */ |
25359
14135aa647e2
(face_at_buffer_position): Don't xassert that
Gerd Moellmann <gerd@gnu.org>
parents:
25301
diff
changeset
|
6327 /* xassert (XBUFFER (w->buffer) == current_buffer); */ |
2391 | 6328 |
9284
a969e0eefaf5
(compute_char_face): Use new accessor macros instead of calling XSET directly.
Karl Heuer <kwzh@gnu.org>
parents:
9186
diff
changeset
|
6329 XSETFRAME (frame, f); |
24995 | 6330 XSETFASTINT (position, pos); |
2342 | 6331 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6332 endpos = ZV; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6333 if (pos < region_beg && region_beg < endpos) |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6334 endpos = region_beg; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6335 |
24995 | 6336 /* Get the `face' or `mouse_face' text property at POS, and |
6337 determine the next position at which the property changes. */ | |
6615
96ddf85642d1
(compute_char_face): New arg MOUSE.
Richard M. Stallman <rms@gnu.org>
parents:
5858
diff
changeset
|
6338 prop = Fget_text_property (position, propname, w->buffer); |
24995 | 6339 XSETFASTINT (limit1, (limit < endpos ? limit : endpos)); |
6340 end = Fnext_single_property_change (position, propname, w->buffer, limit1); | |
6341 if (INTEGERP (end)) | |
6342 endpos = XINT (end); | |
6343 | |
6344 /* Look at properties from overlays. */ | |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6345 { |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6346 int next_overlay; |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6347 int len; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6348 |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6349 /* First try with room for 40 overlays. */ |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6350 len = 40; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6351 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); |
11420
8ab99c3646a7
(compute_char_face): Don't use NULL.
Richard M. Stallman <rms@gnu.org>
parents:
11416
diff
changeset
|
6352 noverlays = overlays_at (pos, 0, &overlay_vec, &len, |
24995 | 6353 &next_overlay, NULL); |
6354 | |
6355 /* If there are more than 40, make enough space for all, and try | |
6356 again. */ | |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6357 if (noverlays > len) |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6358 { |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6359 len = noverlays; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6360 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); |
8965
a7947f88d558
(compute_char_face): Pass new arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
8848
diff
changeset
|
6361 noverlays = overlays_at (pos, 0, &overlay_vec, &len, |
24995 | 6362 &next_overlay, NULL); |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6363 } |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6364 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6365 if (next_overlay < endpos) |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6366 endpos = next_overlay; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6367 } |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6368 |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6369 *endptr = endpos; |
2342 | 6370 |
24995 | 6371 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6372 |
24995 | 6373 /* Optimize common cases where we can use the default face. */ |
6374 if (noverlays == 0 | |
6375 && NILP (prop) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6376 && !(pos >= region_beg && pos < region_end)) |
24995 | 6377 return DEFAULT_FACE_ID; |
6378 | |
6379 /* Begin with attributes from the default face. */ | |
6380 bcopy (default_face->lface, attrs, sizeof attrs); | |
6381 | |
6382 /* Merge in attributes specified via text properties. */ | |
6383 if (!NILP (prop)) | |
6384 merge_face_vector_with_property (f, attrs, prop); | |
6385 | |
6386 /* Now merge the overlay data. */ | |
5858
021e58905963
(compute_char_face): Extract overlay-sorting code as a separate function,
Karl Heuer <kwzh@gnu.org>
parents:
5801
diff
changeset
|
6387 noverlays = sort_overlays (overlay_vec, noverlays, w); |
2342 | 6388 for (i = 0; i < noverlays; i++) |
6389 { | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6390 Lisp_Object oend; |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6391 int oendpos; |
9186
45bac5feb065
(compute_char_face): Handle list as overlay face property.
Richard M. Stallman <rms@gnu.org>
parents:
9184
diff
changeset
|
6392 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6393 prop = Foverlay_get (overlay_vec[i], propname); |
24995 | 6394 if (!NILP (prop)) |
6395 merge_face_vector_with_property (f, attrs, prop); | |
2342 | 6396 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6397 oend = OVERLAY_END (overlay_vec[i]); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6398 oendpos = OVERLAY_POSITION (oend); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6399 if (oendpos < endpos) |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6400 endpos = oendpos; |
2342 | 6401 } |
6402 | |
24995 | 6403 /* If in the region, merge in the region face. */ |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6404 if (pos >= region_beg && pos < region_end) |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6405 { |
24995 | 6406 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
6407 merge_face_vectors (XVECTOR (region_face)->contents, attrs); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6408 |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6409 if (region_end < endpos) |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6410 endpos = region_end; |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6411 } |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6412 |
2342 | 6413 *endptr = endpos; |
6414 | |
24995 | 6415 /* Look up a realized face with the given face attributes, |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6416 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6417 return lookup_face (f, attrs, 0, NULL); |
2342 | 6418 } |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6419 |
24995 | 6420 |
6421 /* Compute the face at character position POS in Lisp string STRING on | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6422 window W, for ASCII characters. |
24995 | 6423 |
6424 If STRING is an overlay string, it comes from position BUFPOS in | |
6425 current_buffer, otherwise BUFPOS is zero to indicate that STRING is | |
6426 not an overlay string. W must display the current buffer. | |
6427 REGION_BEG and REGION_END give the start and end positions of the | |
6428 region; both are -1 if no region is visible. BASE_FACE_ID is the | |
6429 id of the basic face to merge with. It is usually equal to | |
25546 | 6430 DEFAULT_FACE_ID but can be MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID |
24995 | 6431 for strings displayed in the mode or top line. |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6432 |
24995 | 6433 Set *ENDPTR to the next position where to check for faces in |
6434 STRING; -1 if the face is constant from POS to the end of the | |
6435 string. | |
6436 | |
6437 Value is the id of the face to use. The face returned is suitable | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6438 for displaying ASCII characters. */ |
24995 | 6439 |
6440 int | |
6441 face_at_string_position (w, string, pos, bufpos, region_beg, | |
6442 region_end, endptr, base_face_id) | |
6443 struct window *w; | |
6444 Lisp_Object string; | |
6445 int pos, bufpos; | |
6446 int region_beg, region_end; | |
6447 int *endptr; | |
6448 enum face_id base_face_id; | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6449 { |
24995 | 6450 Lisp_Object prop, position, end, limit; |
6451 struct frame *f = XFRAME (WINDOW_FRAME (w)); | |
6452 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6453 struct face *base_face; | |
6454 int multibyte_p = STRING_MULTIBYTE (string); | |
6455 | |
6456 /* Get the value of the face property at the current position within | |
6457 STRING. Value is nil if there is no face property. */ | |
6458 XSETFASTINT (position, pos); | |
6459 prop = Fget_text_property (position, Qface, string); | |
6460 | |
6461 /* Get the next position at which to check for faces. Value of end | |
6462 is nil if face is constant all the way to the end of the string. | |
6463 Otherwise it is a string position where to check faces next. | |
6464 Limit is the maximum position up to which to check for property | |
6465 changes in Fnext_single_property_change. Strings are usually | |
6466 short, so set the limit to the end of the string. */ | |
6467 XSETFASTINT (limit, XSTRING (string)->size); | |
6468 end = Fnext_single_property_change (position, Qface, string, limit); | |
6469 if (INTEGERP (end)) | |
6470 *endptr = XFASTINT (end); | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6471 else |
24995 | 6472 *endptr = -1; |
6473 | |
6474 base_face = FACE_FROM_ID (f, base_face_id); | |
6475 xassert (base_face); | |
6476 | |
6477 /* Optimize the default case that there is no face property and we | |
6478 are not in the region. */ | |
6479 if (NILP (prop) | |
6480 && (base_face_id != DEFAULT_FACE_ID | |
6481 /* BUFPOS <= 0 means STRING is not an overlay string, so | |
6482 that the region doesn't have to be taken into account. */ | |
6483 || bufpos <= 0 | |
6484 || bufpos < region_beg | |
6485 || bufpos >= region_end) | |
6486 && (multibyte_p | |
6487 /* We can't realize faces for different charsets differently | |
6488 if we don't have fonts, so we can stop here if not working | |
6489 on a window-system frame. */ | |
6490 || !FRAME_WINDOW_P (f) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6491 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0))) |
24995 | 6492 return base_face->id; |
6493 | |
6494 /* Begin with attributes from the base face. */ | |
6495 bcopy (base_face->lface, attrs, sizeof attrs); | |
6496 | |
6497 /* Merge in attributes specified via text properties. */ | |
6498 if (!NILP (prop)) | |
6499 merge_face_vector_with_property (f, attrs, prop); | |
6500 | |
6501 /* If in the region, merge in the region face. */ | |
6502 if (bufpos | |
6503 && bufpos >= region_beg | |
6504 && bufpos < region_end) | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6505 { |
24995 | 6506 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
6507 merge_face_vectors (XVECTOR (region_face)->contents, attrs); | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6508 } |
24995 | 6509 |
6510 /* Look up a realized face with the given face attributes, | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6511 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6512 return lookup_face (f, attrs, 0, NULL); |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6513 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6514 |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6515 |
2336 | 6516 |
24995 | 6517 /*********************************************************************** |
6518 Tests | |
6519 ***********************************************************************/ | |
6520 | |
6521 #if GLYPH_DEBUG | |
6522 | |
6523 /* Print the contents of the realized face FACE to stderr. */ | |
6524 | |
6525 static void | |
6526 dump_realized_face (face) | |
6527 struct face *face; | |
2336 | 6528 { |
24995 | 6529 fprintf (stderr, "ID: %d\n", face->id); |
6530 #ifdef HAVE_X_WINDOWS | |
6531 fprintf (stderr, "gc: %d\n", (int) face->gc); | |
6532 #endif | |
6533 fprintf (stderr, "foreground: 0x%lx (%s)\n", | |
6534 face->foreground, | |
6535 XSTRING (face->lface[LFACE_FOREGROUND_INDEX])->data); | |
6536 fprintf (stderr, "background: 0x%lx (%s)\n", | |
6537 face->background, | |
6538 XSTRING (face->lface[LFACE_BACKGROUND_INDEX])->data); | |
6539 fprintf (stderr, "font_name: %s (%s)\n", | |
6540 face->font_name, | |
6541 XSTRING (face->lface[LFACE_FAMILY_INDEX])->data); | |
6542 #ifdef HAVE_X_WINDOWS | |
6543 fprintf (stderr, "font = %p\n", face->font); | |
6544 #endif | |
6545 fprintf (stderr, "font_info_id = %d\n", face->font_info_id); | |
6546 fprintf (stderr, "fontset: %d\n", face->fontset); | |
6547 fprintf (stderr, "underline: %d (%s)\n", | |
6548 face->underline_p, | |
6549 XSTRING (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))->data); | |
6550 fprintf (stderr, "hash: %d\n", face->hash); | |
6551 fprintf (stderr, "charset: %d\n", face->charset); | |
6552 } | |
6553 | |
6554 | |
6555 DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, "") | |
6556 (n) | |
6557 Lisp_Object n; | |
6558 { | |
6559 if (NILP (n)) | |
2336 | 6560 { |
24995 | 6561 int i; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6562 |
24995 | 6563 fprintf (stderr, "font selection order: "); |
6564 for (i = 0; i < DIM (font_sort_order); ++i) | |
6565 fprintf (stderr, "%d ", font_sort_order[i]); | |
6566 fprintf (stderr, "\n"); | |
6567 | |
6568 fprintf (stderr, "alternative fonts: "); | |
6569 debug_print (Vface_alternative_font_family_alist); | |
6570 fprintf (stderr, "\n"); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6571 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6572 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i) |
24995 | 6573 Fdump_face (make_number (i)); |
2336 | 6574 } |
24995 | 6575 else |
6576 { | |
6577 struct face *face; | |
6578 CHECK_NUMBER (n, 0); | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6579 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n)); |
24995 | 6580 if (face == NULL) |
6581 error ("Not a valid face"); | |
6582 dump_realized_face (face); | |
6583 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6584 |
2336 | 6585 return Qnil; |
6586 } | |
6587 | |
6588 | |
24995 | 6589 DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources, |
6590 0, 0, 0, "") | |
6591 () | |
2336 | 6592 { |
24995 | 6593 fprintf (stderr, "number of colors = %d\n", ncolors_allocated); |
6594 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated); | |
6595 fprintf (stderr, "number of GCs = %d\n", ngcs); | |
2336 | 6596 return Qnil; |
6597 } | |
24995 | 6598 |
6599 #endif /* GLYPH_DEBUG != 0 */ | |
6600 | |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6601 |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6602 |
24995 | 6603 /*********************************************************************** |
6604 Initialization | |
6605 ***********************************************************************/ | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
6606 |
2336 | 6607 void |
2391 | 6608 syms_of_xfaces () |
2336 | 6609 { |
2391 | 6610 Qface = intern ("face"); |
6611 staticpro (&Qface); | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6612 Qbitmap_spec_p = intern ("bitmap-spec-p"); |
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6613 staticpro (&Qbitmap_spec_p); |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6614 Qframe_update_face_colors = intern ("frame-update-face-colors"); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6615 staticpro (&Qframe_update_face_colors); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6616 |
24995 | 6617 /* Lisp face attribute keywords. */ |
6618 QCfamily = intern (":family"); | |
6619 staticpro (&QCfamily); | |
6620 QCheight = intern (":height"); | |
6621 staticpro (&QCheight); | |
6622 QCweight = intern (":weight"); | |
6623 staticpro (&QCweight); | |
6624 QCslant = intern (":slant"); | |
6625 staticpro (&QCslant); | |
6626 QCunderline = intern (":underline"); | |
6627 staticpro (&QCunderline); | |
6628 QCinverse_video = intern (":inverse-video"); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6629 staticpro (&QCinverse_video); |
24995 | 6630 QCreverse_video = intern (":reverse-video"); |
6631 staticpro (&QCreverse_video); | |
6632 QCforeground = intern (":foreground"); | |
6633 staticpro (&QCforeground); | |
6634 QCbackground = intern (":background"); | |
6635 staticpro (&QCbackground); | |
6636 QCstipple = intern (":stipple");; | |
6637 staticpro (&QCstipple); | |
6638 QCwidth = intern (":width"); | |
6639 staticpro (&QCwidth); | |
6640 QCfont = intern (":font"); | |
6641 staticpro (&QCfont); | |
6642 QCbold = intern (":bold"); | |
6643 staticpro (&QCbold); | |
6644 QCitalic = intern (":italic"); | |
6645 staticpro (&QCitalic); | |
6646 QCoverline = intern (":overline"); | |
6647 staticpro (&QCoverline); | |
6648 QCstrike_through = intern (":strike-through"); | |
6649 staticpro (&QCstrike_through); | |
6650 QCbox = intern (":box"); | |
6651 staticpro (&QCbox); | |
6652 | |
6653 /* Symbols used for Lisp face attribute values. */ | |
6654 QCcolor = intern (":color"); | |
6655 staticpro (&QCcolor); | |
6656 QCline_width = intern (":line-width"); | |
6657 staticpro (&QCline_width); | |
6658 QCstyle = intern (":style"); | |
6659 staticpro (&QCstyle); | |
6660 Qreleased_button = intern ("released-button"); | |
6661 staticpro (&Qreleased_button); | |
6662 Qpressed_button = intern ("pressed-button"); | |
6663 staticpro (&Qpressed_button); | |
6664 Qnormal = intern ("normal"); | |
6665 staticpro (&Qnormal); | |
6666 Qultra_light = intern ("ultra-light"); | |
6667 staticpro (&Qultra_light); | |
6668 Qextra_light = intern ("extra-light"); | |
6669 staticpro (&Qextra_light); | |
6670 Qlight = intern ("light"); | |
6671 staticpro (&Qlight); | |
6672 Qsemi_light = intern ("semi-light"); | |
6673 staticpro (&Qsemi_light); | |
6674 Qsemi_bold = intern ("semi-bold"); | |
6675 staticpro (&Qsemi_bold); | |
6676 Qbold = intern ("bold"); | |
6677 staticpro (&Qbold); | |
6678 Qextra_bold = intern ("extra-bold"); | |
6679 staticpro (&Qextra_bold); | |
6680 Qultra_bold = intern ("ultra-bold"); | |
6681 staticpro (&Qultra_bold); | |
6682 Qoblique = intern ("oblique"); | |
6683 staticpro (&Qoblique); | |
6684 Qitalic = intern ("italic"); | |
6685 staticpro (&Qitalic); | |
6686 Qreverse_oblique = intern ("reverse-oblique"); | |
6687 staticpro (&Qreverse_oblique); | |
6688 Qreverse_italic = intern ("reverse-italic"); | |
6689 staticpro (&Qreverse_italic); | |
6690 Qultra_condensed = intern ("ultra-condensed"); | |
6691 staticpro (&Qultra_condensed); | |
6692 Qextra_condensed = intern ("extra-condensed"); | |
6693 staticpro (&Qextra_condensed); | |
6694 Qcondensed = intern ("condensed"); | |
6695 staticpro (&Qcondensed); | |
6696 Qsemi_condensed = intern ("semi-condensed"); | |
6697 staticpro (&Qsemi_condensed); | |
6698 Qsemi_expanded = intern ("semi-expanded"); | |
6699 staticpro (&Qsemi_expanded); | |
6700 Qexpanded = intern ("expanded"); | |
6701 staticpro (&Qexpanded); | |
6702 Qextra_expanded = intern ("extra-expanded"); | |
6703 staticpro (&Qextra_expanded); | |
6704 Qultra_expanded = intern ("ultra-expanded"); | |
6705 staticpro (&Qultra_expanded); | |
6706 Qbackground_color = intern ("background-color"); | |
6707 staticpro (&Qbackground_color); | |
6708 Qforeground_color = intern ("foreground-color"); | |
6709 staticpro (&Qforeground_color); | |
6710 Qunspecified = intern ("unspecified"); | |
6711 staticpro (&Qunspecified); | |
6712 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6713 Qface_alias = intern ("face-alias"); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6714 staticpro (&Qface_alias); |
24995 | 6715 Qdefault = intern ("default"); |
6716 staticpro (&Qdefault); | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25389
diff
changeset
|
6717 Qtool_bar = intern ("tool-bar"); |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25389
diff
changeset
|
6718 staticpro (&Qtool_bar); |
24995 | 6719 Qregion = intern ("region"); |
6720 staticpro (&Qregion); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6721 Qfringe = intern ("fringe"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6722 staticpro (&Qfringe); |
25546 | 6723 Qheader_line = intern ("header-line"); |
6724 staticpro (&Qheader_line); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6725 Qscroll_bar = intern ("scroll-bar"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6726 staticpro (&Qscroll_bar); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
6727 Qmenu = intern ("menu"); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
6728 staticpro (&Qmenu); |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6729 Qcursor = intern ("cursor"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6730 staticpro (&Qcursor); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6731 Qborder = intern ("border"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6732 staticpro (&Qborder); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6733 Qmouse = intern ("mouse"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6734 staticpro (&Qmouse); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6735 Qtty_color_desc = intern ("tty-color-desc"); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6736 staticpro (&Qtty_color_desc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6737 Qtty_color_by_index = intern ("tty-color-by-index"); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6738 staticpro (&Qtty_color_by_index); |
24995 | 6739 |
30304
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
6740 Vface_alternative_font_family_alist = Qnil; |
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
6741 staticpro (&Vface_alternative_font_family_alist); |
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
6742 |
24995 | 6743 defsubr (&Sinternal_make_lisp_face); |
6744 defsubr (&Sinternal_lisp_face_p); | |
6745 defsubr (&Sinternal_set_lisp_face_attribute); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6746 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 6747 defsubr (&Sinternal_set_lisp_face_attribute_from_resource); |
27137
0ade9883b546
(syms_of_xfaces): defsubr Scolor_gray_p and
Eli Zaretskii <eliz@gnu.org>
parents:
27120
diff
changeset
|
6748 #endif |
27120
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
6749 defsubr (&Scolor_gray_p); |
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
6750 defsubr (&Scolor_supported_p); |
24995 | 6751 defsubr (&Sinternal_get_lisp_face_attribute); |
6752 defsubr (&Sinternal_lisp_face_attribute_values); | |
6753 defsubr (&Sinternal_lisp_face_equal_p); | |
6754 defsubr (&Sinternal_lisp_face_empty_p); | |
6755 defsubr (&Sinternal_copy_lisp_face); | |
6756 defsubr (&Sinternal_merge_in_global_face); | |
6757 defsubr (&Sface_font); | |
6758 defsubr (&Sframe_face_alist); | |
6759 defsubr (&Sinternal_set_font_selection_order); | |
6760 defsubr (&Sinternal_set_alternative_font_family_alist); | |
6761 #if GLYPH_DEBUG | |
6762 defsubr (&Sdump_face); | |
6763 defsubr (&Sshow_face_resources); | |
6764 #endif /* GLYPH_DEBUG */ | |
6765 defsubr (&Sclear_face_cache); | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6766 defsubr (&Stty_suppress_bold_inverse_default_colors); |
24995 | 6767 |
29711
913fab478495
(syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
Gerd Moellmann <gerd@gnu.org>
parents:
29599
diff
changeset
|
6768 #if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
6769 defsubr (&Sdump_colors); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
6770 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
6771 |
25270 | 6772 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit, |
6773 "*Limit for font matching.\n\ | |
6774 If an integer > 0, font matching functions won't load more than\n\ | |
6775 that number of fonts when searching for a matching font."); | |
6776 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT); | |
6777 | |
24995 | 6778 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults, |
6779 "List of global face definitions (for internal use only.)"); | |
6780 Vface_new_frame_defaults = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6781 |
24995 | 6782 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple, |
6783 "*Default stipple pattern used on monochrome displays.\n\ | |
6784 This stipple pattern is used on monochrome displays\n\ | |
6785 instead of shades of gray for a face background color.\n\ | |
6786 See `set-face-stipple' for possible values for this variable."); | |
6787 Vface_default_stipple = build_string ("gray3"); | |
6788 | |
6789 #if SCALABLE_FONTS | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6790 |
24995 | 6791 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed, |
6792 "Allowed scalable fonts.\n\ | |
6793 A value of nil means don't allow any scalable fonts.\n\ | |
6794 A value of t means allow any scalable font.\n\ | |
6795 Otherwise, value must be a list of regular expressions. A font may be\n\ | |
6796 scaled if its name matches a regular expression in the list."); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6797 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6798 /* Windows uses mainly truetype fonts, so disallowing scalable fonts |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6799 by default limits the fonts available severely. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6800 Vscalable_fonts_allowed = Qt; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6801 #else |
24995 | 6802 Vscalable_fonts_allowed = Qnil; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6803 #endif |
24995 | 6804 #endif /* SCALABLE_FONTS */ |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6805 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6806 #ifdef HAVE_WINDOW_SYSTEM |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6807 defsubr (&Sbitmap_spec_p); |
24995 | 6808 defsubr (&Sx_list_fonts); |
6809 defsubr (&Sinternal_face_x_get_resource); | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6810 defsubr (&Sx_family_fonts); |
24995 | 6811 defsubr (&Sx_font_family_list); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6812 #endif /* HAVE_WINDOW_SYSTEM */ |
2336 | 6813 } |