Mercurial > emacs
annotate src/xfaces.c @ 31411:920b03e019bf
(R_ALLOC_DECLARE): Removed because unused.
(r_alloc, r_re_alloc, r_alloc_free): Use POINTER_TYPE and size_t
in prototypes.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 06 Sep 2000 21:24:56 +0000 |
parents | b176433657cc |
children | 67f5b4186ed2 |
rev | line source |
---|---|
24995 | 1 /* xfaces.c -- "Face" primitives. |
30698
75ff6aa32bf0
(face_at_buffer_position): Update call to overlays_at.
Miles Bader <miles@gnu.org>
parents:
30601
diff
changeset
|
2 Copyright (C) 1993, 1994, 1998, 1999, 2000 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 |
31178 | 68 15. A face name or list of face names from which to inherit attributes. |
69 | |
24995 | 70 Faces are frame-local by nature because Emacs allows to define the |
71 same named face (face names are symbols) differently for different | |
72 frames. Each frame has an alist of face definitions for all named | |
73 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
|
74 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
|
75 attributes mentioned above. |
24995 | 76 |
77 There is also a global face alist `Vface_new_frame_defaults'. Face | |
78 definitions from this list are used to initialize faces of newly | |
79 created frames. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
80 |
24995 | 81 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
|
82 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
|
83 the 14th are called `fully-specified'. |
24995 | 84 |
85 | |
86 Face merging. | |
87 | |
88 The display style of a given character in the text is determined by | |
89 combining several faces. This process is called `face merging'. | |
90 Any aspect of the display style that isn't specified by overlays or | |
91 text properties is taken from the `default' face. Since it is made | |
92 sure that the default face is always fully-specified, face merging | |
93 always results in a fully-specified face. | |
94 | |
95 | |
96 Face realization. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
97 |
24995 | 98 After all face attributes for a character have been determined by |
99 merging faces of that character, that face is `realized'. The | |
100 realization process maps face attributes to what is physically | |
101 available on the system where Emacs runs. The result is a | |
102 `realized face' in form of a struct face which is stored in the | |
103 face cache of the frame on which it was realized. | |
104 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
105 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
|
106 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
|
107 other words, for characters that have different font |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
108 specifications, different realized faces are needed to display |
24995 | 109 them. |
110 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
111 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
|
112 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
|
113 characters share the same font in a fontset. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
114 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
115 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
|
116 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
|
117 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
|
118 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
|
119 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
|
120 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
121 Thus, all realzied face have a realized fontset. |
24995 | 122 |
123 | |
124 Unibyte text. | |
125 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
126 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
|
127 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
|
128 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
|
129 and raw 8-bit characters. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
130 |
24995 | 131 |
132 Font selection. | |
133 | |
134 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
|
135 given (character, face) combination. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
136 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
137 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
|
138 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
|
139 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
|
140 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
|
141 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
|
142 default fontset determines a pattern for multibyte characters. |
24995 | 143 |
144 Available fonts on the system on which Emacs runs are then matched | |
145 against the font pattern. The result of font selection is the best | |
146 match for the given face attributes in this font list. | |
147 | |
148 Font selection can be influenced by the user. | |
149 | |
150 1. The user can specify the relative importance he gives the face | |
151 attributes width, height, weight, and slant by setting | |
152 face-font-selection-order (faces.el) to a list of face attribute | |
153 names. The default is '(:width :height :weight :slant), and means | |
154 that font selection first tries to find a good match for the font | |
155 width specified by a face, then---within fonts with that | |
156 width---tries to find a best match for the specified font height, | |
157 etc. | |
158 | |
159 2. Setting face-alternative-font-family-alist allows the user to | |
160 specify alternative font families to try if a family specified by a | |
161 face doesn't exist. | |
162 | |
163 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
164 Character compositition. |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
165 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
166 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
|
167 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
|
168 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
|
169 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
|
170 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
|
171 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
|
172 the same. |
24995 | 173 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
174 |
24995 | 175 Initialization of basic faces. |
176 | |
177 The faces `default', `modeline' are considered `basic faces'. | |
178 When redisplay happens the first time for a newly created frame, | |
179 basic faces are realized for CHARSET_ASCII. Frame parameters are | |
180 used to fill in unspecified attributes of the default face. */ | |
181 | |
182 /* Define SCALABLE_FONTS to a non-zero value to enable scalable | |
183 font use. Define it to zero to disable scalable font use. | |
184 | |
185 Use of too many or too large scalable fonts can crash XFree86 | |
186 servers. That's why I've put the code dealing with scalable fonts | |
187 in #if's. */ | |
188 | |
189 #define SCALABLE_FONTS 1 | |
2342 | 190 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25890
diff
changeset
|
191 #include <config.h> |
2336 | 192 #include <sys/types.h> |
193 #include <sys/stat.h> | |
194 #include "lisp.h" | |
17047 | 195 #include "charset.h" |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
196 #include "frame.h" |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
197 |
29897
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
198 #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
|
199 #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
|
200 #endif |
9572 | 201 #ifdef HAVE_X_WINDOWS |
2336 | 202 #include "xterm.h" |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
203 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
204 #include <Xm/Xm.h> |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
205 #include <Xm/XmStrDefs.h> |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
206 #endif /* USE_MOTIF */ |
9572 | 207 #endif |
24995 | 208 |
9572 | 209 #ifdef MSDOS |
210 #include "dosfns.h" | |
211 #endif | |
24995 | 212 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
213 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
214 #include "w32term.h" |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
215 #include "fontset.h" |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
216 /* 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
|
217 code with #ifdef blocks. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
218 #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
|
219 #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
|
220 #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
|
221 #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
|
222 #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
|
223 #define GCGraphicsExposures 0 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
224 /* 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
|
225 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
|
226 #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
|
227 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
228 |
2336 | 229 #include "buffer.h" |
2391 | 230 #include "dispextern.h" |
2438 | 231 #include "blockinput.h" |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
232 #include "window.h" |
8848 | 233 #include "intervals.h" |
2336 | 234 |
9572 | 235 #ifdef HAVE_X_WINDOWS |
24995 | 236 |
237 /* 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
|
238 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
|
239 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
|
240 #included. */ |
24995 | 241 |
3436
291f28da7ea1
Test XOS_NEEDS_TIME_H, not HPUX, for including time.hj.
Richard M. Stallman <rms@gnu.org>
parents:
3401
diff
changeset
|
242 #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
|
243 #include <time.h> |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
244 #undef USG |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
245 #include <X11/Xos.h> |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
246 #define USG |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
247 #define __TIMEVAL__ |
24995 | 248 #else /* not XOS_NEEDS_TIME_H */ |
2336 | 249 #include <X11/Xos.h> |
24995 | 250 #endif /* not XOS_NEEDS_TIME_H */ |
251 | |
9572 | 252 #endif /* HAVE_X_WINDOWS */ |
24995 | 253 |
254 #include <stdio.h> | |
255 #include <ctype.h> | |
256 #include "keyboard.h" | |
257 | |
258 #ifndef max | |
259 #define max(A, B) ((A) > (B) ? (A) : (B)) | |
260 #define min(A, B) ((A) < (B) ? (A) : (B)) | |
261 #define abs(X) ((X) < 0 ? -(X) : (X)) | |
262 #endif | |
263 | |
264 /* Non-zero if face attribute ATTR is unspecified. */ | |
265 | |
266 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified) | |
267 | |
268 /* Value is the number of elements of VECTOR. */ | |
269 | |
270 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR)) | |
271 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
272 /* Make a copy of string S on the stack using alloca. Value is a pointer |
24995 | 273 to the copy. */ |
274 | |
275 #define STRDUPA(S) strcpy ((char *) alloca (strlen ((S)) + 1), (S)) | |
276 | |
277 /* Make a copy of the contents of Lisp string S on the stack using | |
278 alloca. Value is a pointer to the copy. */ | |
279 | |
280 #define LSTRDUPA(S) STRDUPA (XSTRING ((S))->data) | |
281 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
282 /* Size of hash table of realized faces in face caches (should be a |
24995 | 283 prime number). */ |
284 | |
285 #define FACE_CACHE_BUCKETS_SIZE 1001 | |
286 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
287 /* A definition of XColor for non-X frames. */ |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
288 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
289 #ifndef HAVE_X_WINDOWS |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
290 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
291 typedef struct |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
292 { |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
293 unsigned long pixel; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
294 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
|
295 char flags; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
296 char pad; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
297 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
298 XColor; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
299 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
300 #endif /* not HAVE_X_WINDOWS */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
301 |
24995 | 302 /* Keyword symbols used for face attribute names. */ |
303 | |
304 Lisp_Object QCfamily, QCheight, QCweight, QCslant, QCunderline; | |
305 Lisp_Object QCinverse_video, QCforeground, QCbackground, QCstipple; | |
306 Lisp_Object QCwidth, QCfont, QCbold, QCitalic; | |
307 Lisp_Object QCreverse_video; | |
31178 | 308 Lisp_Object QCoverline, QCstrike_through, QCbox, QCinherit; |
24995 | 309 |
310 /* Symbols used for attribute values. */ | |
311 | |
312 Lisp_Object Qnormal, Qbold, Qultra_light, Qextra_light, Qlight; | |
313 Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold; | |
314 Lisp_Object Qoblique, Qitalic, Qreverse_oblique, Qreverse_italic; | |
315 Lisp_Object Qultra_condensed, Qextra_condensed, Qcondensed; | |
316 Lisp_Object Qsemi_condensed, Qsemi_expanded, Qexpanded, Qextra_expanded; | |
317 Lisp_Object Qultra_expanded; | |
318 Lisp_Object Qreleased_button, Qpressed_button; | |
319 Lisp_Object QCstyle, QCcolor, QCline_width; | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
320 Lisp_Object Qunspecified; |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
321 |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
322 char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg"; |
24995 | 323 |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
324 /* 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
|
325 has changed, frame_update_face_colors. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
326 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
327 Lisp_Object Qframe_update_face_colors; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
328 |
24995 | 329 /* Names of basic faces. */ |
330 | |
26574
5510d0cc07c3
Don't duplicate Qmode_line definition done elsewhere.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
331 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
|
332 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
|
333 extern Lisp_Object Qmode_line; |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
334 |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
335 /* 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
|
336 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
|
337 the aliased face. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
338 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
339 Lisp_Object Qface_alias; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
340 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
341 /* Names of frame parameters related to faces. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
342 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
343 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
|
344 extern Lisp_Object Qborder_color, Qcursor_color, Qmouse_color; |
24995 | 345 |
346 /* Default stipple pattern used on monochrome displays. This stipple | |
347 pattern is used on monochrome displays instead of shades of gray | |
348 for a face background color. See `set-face-stipple' for possible | |
349 values for this variable. */ | |
350 | |
351 Lisp_Object Vface_default_stipple; | |
352 | |
353 /* Alist of alternative font families. Each element is of the form | |
354 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded, | |
355 try FAMILY1, then FAMILY2, ... */ | |
356 | |
357 Lisp_Object Vface_alternative_font_family_alist; | |
358 | |
359 /* Allowed scalable fonts. A value of nil means don't allow any | |
360 scalable fonts. A value of t means allow the use of any scalable | |
361 font. Otherwise, value must be a list of regular expressions. A | |
362 font may be scaled if its name matches a regular expression in the | |
363 list. */ | |
364 | |
365 #if SCALABLE_FONTS | |
366 Lisp_Object Vscalable_fonts_allowed; | |
367 #endif | |
368 | |
25270 | 369 /* Maximum number of fonts to consider in font_list. If not an |
370 integer > 0, DEFAULT_FONT_LIST_LIMIT is used instead. */ | |
371 | |
372 Lisp_Object Vfont_list_limit; | |
373 #define DEFAULT_FONT_LIST_LIMIT 100 | |
374 | |
24995 | 375 /* The symbols `foreground-color' and `background-color' which can be |
376 used as part of a `face' property. This is for compatibility with | |
377 Emacs 20.2. */ | |
378 | |
379 Lisp_Object Qforeground_color, Qbackground_color; | |
380 | |
381 /* The symbols `face' and `mouse-face' used as text properties. */ | |
2342 | 382 |
23730
c71c3ac4b80a
(Qmouse_face): Replace definition with extern decl.
Richard M. Stallman <rms@gnu.org>
parents:
21766
diff
changeset
|
383 Lisp_Object Qface; |
24995 | 384 extern Lisp_Object Qmouse_face; |
385 | |
386 /* Error symbol for wrong_type_argument in load_pixmap. */ | |
387 | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
388 Lisp_Object Qbitmap_spec_p; |
2391 | 389 |
24995 | 390 /* Alist of global face definitions. Each element is of the form |
391 (FACE . LFACE) where FACE is a symbol naming a face and LFACE | |
392 is a Lisp vector of face attributes. These faces are used | |
393 to initialize faces for new frames. */ | |
394 | |
395 Lisp_Object Vface_new_frame_defaults; | |
396 | |
397 /* The next ID to assign to Lisp faces. */ | |
398 | |
399 static int next_lface_id; | |
400 | |
401 /* A vector mapping Lisp face Id's to face names. */ | |
402 | |
403 static Lisp_Object *lface_id_to_name; | |
404 static int lface_id_to_name_size; | |
405 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
406 /* TTY color-related functions (defined in tty-colors.el). */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
407 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
408 Lisp_Object Qtty_color_desc, Qtty_color_by_index; |
24995 | 409 |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
410 /* The name of the function used to compute colors on TTYs. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
411 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
412 Lisp_Object Qtty_color_alist; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
413 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
414 /* An alist of defined terminal colors and their RGB values. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
415 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
416 Lisp_Object Vtty_defined_color_alist; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
417 |
24995 | 418 /* Counter for calls to clear_face_cache. If this counter reaches |
419 CLEAR_FONT_TABLE_COUNT, and a frame has more than | |
420 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */ | |
421 | |
422 static int clear_font_table_count; | |
423 #define CLEAR_FONT_TABLE_COUNT 100 | |
424 #define CLEAR_FONT_TABLE_NFONTS 10 | |
425 | |
426 /* Non-zero means face attributes have been changed since the last | |
427 redisplay. Used in redisplay_internal. */ | |
428 | |
429 int face_change_count; | |
430 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
431 /* 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
|
432 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
|
433 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
|
434 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
|
435 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
436 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
|
437 |
24995 | 438 /* The total number of colors currently allocated. */ |
439 | |
440 #if GLYPH_DEBUG | |
441 static int ncolors_allocated; | |
442 static int npixmaps_allocated; | |
443 static int ngcs; | |
444 #endif | |
445 | |
446 | |
2336 | 447 |
24995 | 448 /* Function prototypes. */ |
449 | |
450 struct font_name; | |
451 struct table_entry; | |
452 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
453 static void map_tty_color P_ ((struct frame *, struct face *, |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
454 enum lface_attribute_index, int *)); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
455 static Lisp_Object resolve_face_name P_ ((Lisp_Object)); |
24995 | 456 static int may_use_scalable_font_p P_ ((struct font_name *, char *)); |
457 static void set_font_frame_param P_ ((Lisp_Object, Lisp_Object)); | |
458 static int better_font_p P_ ((int *, struct font_name *, struct font_name *, | |
459 int)); | |
460 static int first_font_matching P_ ((struct frame *f, char *, | |
461 struct font_name *)); | |
462 static int x_face_list_fonts P_ ((struct frame *, char *, | |
463 struct font_name *, int, int, int)); | |
464 static int font_scalable_p P_ ((struct font_name *)); | |
465 static int get_lface_attributes P_ ((struct frame *, Lisp_Object, Lisp_Object *, int)); | |
466 static int load_pixmap P_ ((struct frame *, Lisp_Object, unsigned *, unsigned *)); | |
467 static unsigned char *xstrlwr P_ ((unsigned char *)); | |
468 static void signal_error P_ ((char *, Lisp_Object)); | |
469 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
|
470 static void load_face_font P_ ((struct frame *, struct face *, int)); |
24995 | 471 static void load_face_colors P_ ((struct frame *, struct face *, Lisp_Object *)); |
472 static void free_face_colors P_ ((struct frame *, struct face *)); | |
473 static int face_color_gray_p P_ ((struct frame *, char *)); | |
474 static char *build_font_name P_ ((struct font_name *)); | |
475 static void free_font_names P_ ((struct font_name *, int)); | |
476 static int sorted_font_list P_ ((struct frame *, char *, | |
477 int (*cmpfn) P_ ((const void *, const void *)), | |
478 struct font_name **)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
479 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
|
480 Lisp_Object, struct font_name **)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
481 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
|
482 Lisp_Object, Lisp_Object, struct font_name **)); |
24995 | 483 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
|
484 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
|
485 struct face *, int)); |
24995 | 486 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
|
487 Lisp_Object *, int, struct face *)); |
24995 | 488 static struct face *realize_tty_face P_ ((struct face_cache *, |
489 Lisp_Object *, int)); | |
490 static int realize_basic_faces P_ ((struct frame *)); | |
491 static int realize_default_face P_ ((struct frame *)); | |
492 static void realize_named_face P_ ((struct frame *, Lisp_Object, int)); | |
493 static int lface_fully_specified_p P_ ((Lisp_Object *)); | |
494 static int lface_equal_p P_ ((Lisp_Object *, Lisp_Object *)); | |
495 static unsigned hash_string_case_insensitive P_ ((Lisp_Object)); | |
496 static unsigned lface_hash P_ ((Lisp_Object *)); | |
497 static int lface_same_font_attributes_p P_ ((Lisp_Object *, Lisp_Object *)); | |
498 static struct face_cache *make_face_cache P_ ((struct frame *)); | |
499 static void free_realized_face P_ ((struct frame *, struct face *)); | |
500 static void clear_face_gcs P_ ((struct face_cache *)); | |
501 static void free_face_cache P_ ((struct face_cache *)); | |
502 static int face_numeric_weight P_ ((Lisp_Object)); | |
503 static int face_numeric_slant P_ ((Lisp_Object)); | |
504 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
|
505 static int face_fontset P_ ((Lisp_Object *)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
506 static char *choose_face_font P_ ((struct frame *, Lisp_Object *, int, int)); |
31259
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
507 static void default_face_vector P_ ((Lisp_Object *, Lisp_Object*)); |
31178 | 508 static void merge_face_vectors P_ ((struct frame *, Lisp_Object *, Lisp_Object*, Lisp_Object)); |
509 static void merge_face_inheritance P_ ((struct frame *f, Lisp_Object, | |
510 Lisp_Object *, Lisp_Object)); | |
24995 | 511 static void merge_face_vector_with_property P_ ((struct frame *, Lisp_Object *, |
512 Lisp_Object)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
513 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
|
514 Lisp_Object, int, int)); |
24995 | 515 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
|
516 static struct face *make_realized_face P_ ((Lisp_Object *)); |
24995 | 517 static void free_realized_faces P_ ((struct face_cache *)); |
518 static char *best_matching_font P_ ((struct frame *, Lisp_Object *, | |
519 struct font_name *, int)); | |
520 static void cache_face P_ ((struct face_cache *, struct face *, unsigned)); | |
521 static void uncache_face P_ ((struct face_cache *, struct face *)); | |
522 static int xlfd_numeric_slant P_ ((struct font_name *)); | |
523 static int xlfd_numeric_weight P_ ((struct font_name *)); | |
524 static int xlfd_numeric_swidth P_ ((struct font_name *)); | |
525 static Lisp_Object xlfd_symbolic_slant P_ ((struct font_name *)); | |
526 static Lisp_Object xlfd_symbolic_weight P_ ((struct font_name *)); | |
527 static Lisp_Object xlfd_symbolic_swidth P_ ((struct font_name *)); | |
528 static int xlfd_fixed_p P_ ((struct font_name *)); | |
529 static int xlfd_numeric_value P_ ((struct table_entry *, int, struct font_name *, | |
530 int, int)); | |
531 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
|
532 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
|
533 Lisp_Object)); |
24995 | 534 static struct table_entry *xlfd_lookup_field_contents P_ ((struct table_entry *, int, |
535 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
|
536 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
537 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 538 |
539 static int split_font_name P_ ((struct frame *, struct font_name *, int)); | |
540 static int xlfd_point_size P_ ((struct frame *, struct font_name *)); | |
541 static void sort_fonts P_ ((struct frame *, struct font_name *, int, | |
542 int (*cmpfn) P_ ((const void *, const void *)))); | |
543 static GC x_create_gc P_ ((struct frame *, unsigned long, XGCValues *)); | |
544 static void x_free_gc P_ ((struct frame *, GC)); | |
545 static void clear_font_table P_ ((struct frame *)); | |
546 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
547 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
548 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
|
549 #endif /* WINDOWSNT */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
550 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
551 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 552 |
553 | |
554 /*********************************************************************** | |
555 Utilities | |
556 ***********************************************************************/ | |
557 | |
558 #ifdef HAVE_X_WINDOWS | |
559 | |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
560 #ifdef DEBUG_X_COLORS |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
561 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
562 /* 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
|
563 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
|
564 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
|
565 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
|
566 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
|
567 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
|
568 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
|
569 single display/screen. --gerd. */ |
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 /* Reference counts for pixel colors. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
572 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
573 int color_count[256]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
574 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
575 /* Register color PIXEL as allocated. */ |
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 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
578 register_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
579 unsigned long pixel; |
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 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
582 ++color_count[pixel]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
583 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
584 |
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 /* Register color PIXEL as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
587 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
588 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
589 unregister_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
590 unsigned long pixel; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
591 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
592 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
593 if (color_count[pixel] > 0) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
594 --color_count[pixel]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
595 else |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
596 abort (); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
597 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
598 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
599 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
600 /* Register N colors from PIXELS as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
601 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
602 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
603 unregister_colors (pixels, n) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
604 unsigned long *pixels; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
605 int n; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
606 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
607 int i; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
608 for (i = 0; i < n; ++i) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
609 unregister_color (pixels[i]); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
610 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
611 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
612 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
613 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
|
614 "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
|
615 () |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
616 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
617 int i, n; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
618 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
619 fputc ('\n', stderr); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
620 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
621 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
|
622 if (color_count[i]) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
623 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
624 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
|
625 ++n; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
626 if (n % 5 == 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
627 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
628 else |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
629 fputc ('\t', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
630 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
631 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
632 if (n % 5 != 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
633 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
634 return Qnil; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
635 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
636 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
637 |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
638 #endif /* DEBUG_X_COLORS */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
639 |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
640 /* 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
|
641 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
|
642 is called. */ |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
643 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
644 void |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
645 x_free_colors (f, pixels, npixels) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
646 struct frame *f; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
647 unsigned long *pixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
648 int npixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
649 { |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
650 int class = FRAME_X_DISPLAY_INFO (f)->visual->class; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
651 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
652 /* 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
|
653 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
|
654 if (class != StaticColor && class != StaticGray && class != TrueColor) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
655 { |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
656 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
|
657 pixels, npixels, 0); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
658 #ifdef DEBUG_X_COLORS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
659 unregister_colors (pixels, npixels); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
660 #endif |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
661 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
662 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
663 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
664 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
665 /* 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
|
666 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
|
667 is called. */ |
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 void |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
670 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
|
671 Display *dpy; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
672 Screen *screen; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
673 Colormap cmap; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
674 unsigned long *pixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
675 int npixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
676 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
677 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
|
678 int class = dpyinfo->visual->class; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
679 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
680 /* 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
|
681 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
|
682 if (class != StaticColor && class != StaticGray && class != TrueColor) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
683 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
684 XFreeColors (dpy, cmap, pixels, npixels, 0); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
685 #ifdef DEBUG_X_COLORS |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
686 unregister_colors (pixels, npixels); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
687 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
688 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
689 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
690 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
691 |
24995 | 692 /* Create and return a GC for use on frame F. GC values and mask |
693 are given by XGCV and MASK. */ | |
694 | |
695 static INLINE GC | |
696 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
|
697 struct frame *f; |
24995 | 698 unsigned long mask; |
699 XGCValues *xgcv; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
700 { |
2336 | 701 GC gc; |
24995 | 702 BLOCK_INPUT; |
703 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv); | |
704 UNBLOCK_INPUT; | |
705 IF_DEBUG (++ngcs); | |
706 return gc; | |
707 } | |
708 | |
709 | |
710 /* Free GC which was used on frame F. */ | |
711 | |
712 static INLINE void | |
713 x_free_gc (f, gc) | |
714 struct frame *f; | |
715 GC gc; | |
716 { | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
717 BLOCK_INPUT; |
24995 | 718 xassert (--ngcs >= 0); |
719 XFreeGC (FRAME_X_DISPLAY (f), gc); | |
720 UNBLOCK_INPUT; | |
721 } | |
722 | |
723 #endif /* HAVE_X_WINDOWS */ | |
724 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
725 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
726 /* W32 emulation of GCs */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
727 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
728 static INLINE GC |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
729 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
|
730 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
731 unsigned long mask; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
732 XGCValues *xgcv; |
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 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
735 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
736 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
|
737 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
738 IF_DEBUG (++ngcs); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
739 return gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
740 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
741 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
742 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
743 /* 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
|
744 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
745 static INLINE void |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
746 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
|
747 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
748 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
749 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
750 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
751 xassert (--ngcs >= 0); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
752 xfree (gc); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
753 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
754 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
755 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
756 #endif /* WINDOWSNT */ |
24995 | 757 |
758 /* Like stricmp. Used to compare parts of font names which are in | |
759 ISO8859-1. */ | |
760 | |
761 int | |
762 xstricmp (s1, s2) | |
763 unsigned char *s1, *s2; | |
764 { | |
765 while (*s1 && *s2) | |
766 { | |
767 unsigned char c1 = tolower (*s1); | |
768 unsigned char c2 = tolower (*s2); | |
769 if (c1 != c2) | |
770 return c1 < c2 ? -1 : 1; | |
771 ++s1, ++s2; | |
772 } | |
773 | |
774 if (*s1 == 0) | |
775 return *s2 == 0 ? 0 : -1; | |
776 return 1; | |
777 } | |
778 | |
779 | |
780 /* Like strlwr, which might not always be available. */ | |
781 | |
782 static unsigned char * | |
783 xstrlwr (s) | |
784 unsigned char *s; | |
785 { | |
786 unsigned char *p = s; | |
787 | |
788 for (p = s; *p; ++p) | |
789 *p = tolower (*p); | |
790 | |
791 return s; | |
792 } | |
793 | |
794 | |
795 /* Signal `error' with message S, and additional argument ARG. */ | |
796 | |
797 static void | |
798 signal_error (s, arg) | |
799 char *s; | |
800 Lisp_Object arg; | |
801 { | |
802 Fsignal (Qerror, Fcons (build_string (s), Fcons (arg, Qnil))); | |
803 } | |
804 | |
805 | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
806 /* 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
|
807 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
|
808 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
|
809 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
|
810 Lisp function definitions. */ |
24995 | 811 |
812 static INLINE struct frame * | |
813 frame_or_selected_frame (frame, nparam) | |
814 Lisp_Object frame; | |
815 int nparam; | |
816 { | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
817 if (NILP (frame)) |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
818 frame = selected_frame; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
819 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
820 CHECK_LIVE_FRAME (frame, nparam); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
821 return XFRAME (frame); |
24995 | 822 } |
823 | |
824 | |
825 /*********************************************************************** | |
826 Frames and faces | |
827 ***********************************************************************/ | |
828 | |
829 /* 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
|
830 |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
831 void |
24995 | 832 init_frame_faces (f) |
833 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
|
834 { |
24995 | 835 /* Make a face cache, if F doesn't have one. */ |
836 if (FRAME_FACE_CACHE (f) == NULL) | |
837 FRAME_FACE_CACHE (f) = make_face_cache (f); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
838 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
839 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 840 /* 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
|
841 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
|
842 { |
24995 | 843 if (FRAME_X_IMAGE_CACHE (f) == NULL) |
844 FRAME_X_IMAGE_CACHE (f) = make_image_cache (); | |
845 ++FRAME_X_IMAGE_CACHE (f)->refcount; | |
846 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
847 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 848 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
849 /* Realize basic faces. Must have enough information in frame |
24995 | 850 parameters to realize basic faces at this point. */ |
851 #ifdef HAVE_X_WINDOWS | |
852 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f)) | |
853 #endif | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
854 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
855 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
|
856 #endif |
24995 | 857 if (!realize_basic_faces (f)) |
858 abort (); | |
859 } | |
860 | |
861 | |
862 /* Free face cache of frame F. Called from Fdelete_frame. */ | |
863 | |
864 void | |
865 free_frame_faces (f) | |
866 struct frame *f; | |
867 { | |
868 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
|
869 |
24995 | 870 if (face_cache) |
871 { | |
872 free_face_cache (face_cache); | |
873 FRAME_FACE_CACHE (f) = NULL; | |
874 } | |
875 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
876 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
877 if (FRAME_WINDOW_P (f)) |
24995 | 878 { |
879 struct image_cache *image_cache = FRAME_X_IMAGE_CACHE (f); | |
880 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
|
881 { |
24995 | 882 --image_cache->refcount; |
883 if (image_cache->refcount == 0) | |
884 free_image_cache (f); | |
885 } | |
886 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
887 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 888 } |
889 | |
890 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
891 /* 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
|
892 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
|
893 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
|
894 of named faces. */ |
24995 | 895 |
896 void | |
897 recompute_basic_faces (f) | |
898 struct frame *f; | |
899 { | |
900 if (FRAME_FACE_CACHE (f)) | |
901 { | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
902 clear_face_cache (0); |
26601
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
903 if (!realize_basic_faces (f)) |
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
904 abort (); |
24995 | 905 } |
906 } | |
907 | |
908 | |
909 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means | |
910 try to free unused fonts, too. */ | |
911 | |
912 void | |
913 clear_face_cache (clear_fonts_p) | |
914 int clear_fonts_p; | |
915 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
916 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 917 Lisp_Object tail, frame; |
918 struct frame *f; | |
919 | |
920 if (clear_fonts_p | |
921 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT) | |
922 { | |
923 /* From time to time see if we can unload some fonts. This also | |
924 frees all realized faces on all frames. Fonts needed by | |
925 faces will be loaded again when faces are realized again. */ | |
926 clear_font_table_count = 0; | |
927 | |
928 FOR_EACH_FRAME (tail, frame) | |
929 { | |
930 f = XFRAME (frame); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
931 if (FRAME_WINDOW_P (f) |
24995 | 932 && 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
|
933 { |
24995 | 934 free_all_realized_faces (frame); |
935 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
|
936 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
937 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
938 } |
24995 | 939 else |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
940 { |
24995 | 941 /* Clear GCs of realized faces. */ |
942 FOR_EACH_FRAME (tail, frame) | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
943 { |
24995 | 944 f = XFRAME (frame); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
945 if (FRAME_WINDOW_P (f)) |
24995 | 946 { |
947 clear_face_gcs (FRAME_FACE_CACHE (f)); | |
948 clear_image_cache (f, 0); | |
949 } | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
950 } |
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
951 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
952 #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
|
953 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
954 |
24995 | 955 |
956 DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0, | |
957 "Clear face caches on all frames.\n\ | |
958 Optional THOROUGHLY non-nil means try to free unused fonts, too.") | |
959 (thorougly) | |
960 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
|
961 { |
24995 | 962 clear_face_cache (!NILP (thorougly)); |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
963 ++face_change_count; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
964 ++windows_or_buffers_changed; |
24995 | 965 return Qnil; |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
966 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
967 |
24995 | 968 |
969 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
970 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 971 |
972 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
973 /* 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
|
974 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
|
975 from time to time. */ |
24995 | 976 |
977 static void | |
978 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
|
979 struct frame *f; |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
980 { |
24995 | 981 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); |
982 int i; | |
983 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
984 xassert (FRAME_WINDOW_P (f)); |
24995 | 985 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
986 /* Free those fonts that are not used by the frame F as the default. */ |
24995 | 987 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
|
988 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
989 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
|
990 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
991 if (!font_info->name |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
992 || font_info->font == FRAME_FONT (f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
993 continue; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
994 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
995 /* Free names. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
996 if (font_info->full_name != font_info->name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
997 xfree (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
998 xfree (font_info->name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
999 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1000 /* Free the font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1001 BLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1002 #ifdef HAVE_X_WINDOWS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1003 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
|
1004 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1005 #ifdef WINDOWSNT |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1006 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
|
1007 #endif |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1008 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1009 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1010 /* Mark font table slot free. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1011 font_info->font = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1012 font_info->name = font_info->full_name = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1013 } |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1014 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1015 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1016 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1017 |
1018 | |
1019 | |
1020 /*********************************************************************** | |
1021 X Pixmaps | |
1022 ***********************************************************************/ | |
1023 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1024 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1025 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1026 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
|
1027 "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
|
1028 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
|
1029 (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
|
1030 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
|
1031 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
|
1032 (WIDTH + 7)/8 bytes.") |
14090
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1033 (object) |
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1034 Lisp_Object object; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1035 { |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1036 int pixmap_p = 0; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1037 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1038 if (STRINGP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1039 /* 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
|
1040 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1041 else if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1042 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1043 /* 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
|
1044 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
|
1045 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
|
1046 Lisp_Object width, height, data; |
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 height = width = data = Qnil; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1049 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1050 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1051 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1052 width = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1053 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1054 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1055 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1056 height = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1057 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1058 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1059 data = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1060 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1061 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1062 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1063 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1064 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1065 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
|
1066 / 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
|
1067 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
|
1068 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1069 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1070 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1071 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1072 return pixmap_p ? Qt : Qnil; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1073 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1074 |
24995 | 1075 |
1076 /* Load a bitmap according to NAME (which is either a file name or a | |
1077 pixmap spec) for use on frame F. Value is the bitmap_id (see | |
1078 xfns.c). If NAME is nil, return with a bitmap id of zero. If | |
1079 bitmap cannot be loaded, display a message saying so, and return | |
1080 zero. Store the bitmap width in *W_PTR and its height in *H_PTR, | |
1081 if these pointers are not null. */ | |
1082 | |
1083 static int | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1084 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
|
1085 FRAME_PTR f; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1086 Lisp_Object name; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1087 unsigned int *w_ptr, *h_ptr; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1088 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1089 int bitmap_id; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1090 Lisp_Object tem; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1091 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1092 if (NILP (name)) |
24995 | 1093 return 0; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1094 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1095 tem = Fbitmap_spec_p (name); |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1096 if (NILP (tem)) |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1097 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
|
1098 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1099 BLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1100 if (CONSP (name)) |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1101 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1102 /* Decode a bitmap spec into a bitmap. */ |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1103 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1104 int h, w; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1105 Lisp_Object bits; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1106 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1107 w = XINT (Fcar (name)); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1108 h = XINT (Fcar (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1109 bits = Fcar (Fcdr (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1110 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1111 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
|
1112 w, h); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1113 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1114 else |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1115 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1116 /* 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
|
1117 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
|
1118 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1119 UNBLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1120 |
9902
32ed712a45a3
(load_pixmap): Handle bitmap_id < 0. F is a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9671
diff
changeset
|
1121 if (bitmap_id < 0) |
24995 | 1122 { |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1123 add_to_log ("Invalid or undefined bitmap %s", name, Qnil); |
24995 | 1124 bitmap_id = 0; |
1125 | |
1126 if (w_ptr) | |
1127 *w_ptr = 0; | |
1128 if (h_ptr) | |
1129 *h_ptr = 0; | |
1130 } | |
1131 else | |
1132 { | |
1133 #if GLYPH_DEBUG | |
1134 ++npixmaps_allocated; | |
1135 #endif | |
1136 if (w_ptr) | |
1137 *w_ptr = x_bitmap_width (f, bitmap_id); | |
1138 | |
1139 if (h_ptr) | |
1140 *h_ptr = x_bitmap_height (f, bitmap_id); | |
1141 } | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1142 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1143 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
|
1144 } |
9572 | 1145 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1146 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1147 |
9572 | 1148 |
2336 | 1149 |
24995 | 1150 /*********************************************************************** |
1151 Minimum font bounds | |
1152 ***********************************************************************/ | |
1153 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1154 #ifdef HAVE_WINDOW_SYSTEM |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1155 |
25062
050561b336aa
(load_face_colors): Load background color if setting
Gerd Moellmann <gerd@gnu.org>
parents:
24995
diff
changeset
|
1156 /* 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
|
1157 changes. */ |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1158 |
6879
471aebc1b151
(frame_update_line_height): Don't call x_set_window_size.
Richard M. Stallman <rms@gnu.org>
parents:
6784
diff
changeset
|
1159 int |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1160 frame_update_line_height (f) |
24995 | 1161 struct frame *f; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1162 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1163 int line_height, changed_p; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1164 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1165 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
|
1166 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
|
1167 FRAME_LINE_HEIGHT (f) = line_height; |
24995 | 1168 return changed_p; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1169 } |
24995 | 1170 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1171 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1172 |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
1173 |
24995 | 1174 /*********************************************************************** |
1175 Fonts | |
1176 ***********************************************************************/ | |
1177 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1178 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1179 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1180 /* 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
|
1181 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
|
1182 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
|
1183 |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1184 static void |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1185 load_face_font (f, face, c) |
24995 | 1186 struct frame *f; |
1187 struct face *face; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1188 int c; |
24995 | 1189 { |
1190 struct font_info *font_info = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1191 char *font_name; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1192 |
24995 | 1193 face->font_info_id = -1; |
1194 face->font = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1195 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1196 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
|
1197 if (!font_name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1198 return; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1199 |
24995 | 1200 BLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1201 font_info = FS_LOAD_FACE_FONT (f, c, font_name, face); |
24995 | 1202 UNBLOCK_INPUT; |
1203 | |
1204 if (font_info) | |
1205 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1206 face->font_info_id = font_info->font_idx; |
24995 | 1207 face->font = font_info->font; |
1208 face->font_name = font_info->full_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1209 if (face->gc) |
24995 | 1210 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1211 x_free_gc (f, face->gc); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1212 face->gc = 0; |
24995 | 1213 } |
1214 } | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1215 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1216 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
|
1217 build_string (font_name), Qnil); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1218 xfree (font_name); |
24995 | 1219 } |
1220 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1221 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1222 |
1223 | |
1224 | |
1225 /*********************************************************************** | |
1226 X Colors | |
1227 ***********************************************************************/ | |
1228 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1229 /* 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
|
1230 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1231 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1232 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
|
1233 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1234 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1235 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1236 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1237 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1238 Lisp_Object color_desc; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
1239 unsigned long color_idx = FACE_TTY_DEFAULT_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
1240 unsigned long 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
|
1241 int status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1242 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1243 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
|
1244 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1245 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1246 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1247 XSETFRAME (frame, f); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1248 status = 0; |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1249 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
|
1250 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
|
1251 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1252 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
|
1253 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
|
1254 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1255 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
|
1256 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
|
1257 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
|
1258 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1259 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1260 } |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1261 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
|
1262 /* 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
|
1263 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
|
1264 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
|
1265 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
|
1266 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1267 } |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1268 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
|
1269 { |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1270 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
|
1271 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
|
1272 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
|
1273 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
|
1274 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1275 |
27743
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1276 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
|
1277 status = 1; |
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1278 |
27695
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1279 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
|
1280 color_def->red = red; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1281 color_def->green = green; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1282 color_def->blue = blue; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1283 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1284 return status; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1285 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1286 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1287 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1288 /* 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
|
1289 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
|
1290 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
|
1291 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1292 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
|
1293 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1294 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1295 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
|
1296 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1297 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1298 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1299 int alloc; |
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 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
|
1302 return tty_defined_color (f, color_name, color_def, alloc); |
24995 | 1303 #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
|
1304 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
|
1305 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
|
1306 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1307 #ifdef WINDOWSNT |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1308 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
|
1309 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
|
1310 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1311 #ifdef macintosh |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1312 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
|
1313 /* 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
|
1314 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
|
1315 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1316 else |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1317 abort (); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1318 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1319 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1320 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1321 /* 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
|
1322 Lisp string. */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1323 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1324 Lisp_Object |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1325 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
|
1326 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1327 int idx; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1328 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1329 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
|
1330 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1331 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1332 Lisp_Object coldesc; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1333 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1334 XSETFRAME (frame, f); |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1335 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
|
1336 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1337 if (!NILP (coldesc)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1338 return XCAR (coldesc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1339 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1340 #ifdef MSDOS |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1341 /* 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
|
1342 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
|
1343 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
|
1344 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
|
1345 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1346 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1347 if (idx == FACE_TTY_DEFAULT_FG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1348 return build_string (unspecified_fg); |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1349 if (idx == FACE_TTY_DEFAULT_BG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1350 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
|
1351 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1352 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1353 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
|
1354 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1355 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1356 return Qunspecified; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1357 } |
24995 | 1358 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1359 |
24995 | 1360 /* Return non-zero if COLOR_NAME is a shade of gray (or white or |
1361 black) on frame F. The algorithm is taken from 20.2 faces.el. */ | |
1362 | |
1363 static int | |
1364 face_color_gray_p (f, color_name) | |
1365 struct frame *f; | |
1366 char *color_name; | |
1367 { | |
1368 XColor color; | |
1369 int gray_p; | |
1370 | |
1371 if (defined_color (f, color_name, &color, 0)) | |
1372 gray_p = ((abs (color.red - color.green) | |
1373 < max (color.red, color.green) / 20) | |
1374 && (abs (color.green - color.blue) | |
1375 < max (color.green, color.blue) / 20) | |
1376 && (abs (color.blue - color.red) | |
1377 < max (color.blue, color.red) / 20)); | |
1378 else | |
1379 gray_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1380 |
24995 | 1381 return gray_p; |
1382 } | |
1383 | |
1384 | |
1385 /* Return non-zero if color COLOR_NAME can be displayed on frame F. | |
1386 BACKGROUND_P non-zero means the color will be used as background | |
1387 color. */ | |
1388 | |
1389 static int | |
1390 face_color_supported_p (f, color_name, background_p) | |
1391 struct frame *f; | |
1392 char *color_name; | |
1393 int background_p; | |
1394 { | |
1395 Lisp_Object frame; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1396 XColor not_used; |
24995 | 1397 |
1398 XSETFRAME (frame, f); | |
26972
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1399 return (FRAME_WINDOW_P (f) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1400 ? (!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
|
1401 || xstricmp (color_name, "black") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1402 || xstricmp (color_name, "white") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1403 || (background_p |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1404 && 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
|
1405 || (!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
|
1406 && 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
|
1407 : 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
|
1408 } |
24995 | 1409 |
1410 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1411 DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0, |
24995 | 1412 "Return non-nil if COLOR is a shade of gray (or white or black).\n\ |
1413 FRAME specifies the frame and thus the display for interpreting COLOR.\n\ | |
1414 If FRAME is nil or omitted, use the selected frame.") | |
1415 (color, frame) | |
1416 Lisp_Object color, frame; | |
1417 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1418 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1419 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1420 CHECK_FRAME (frame, 0); |
24995 | 1421 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
|
1422 f = XFRAME (frame); |
24995 | 1423 return face_color_gray_p (f, XSTRING (color)->data) ? Qt : Qnil; |
1424 } | |
1425 | |
1426 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1427 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
|
1428 Scolor_supported_p, 2, 3, 0, |
24995 | 1429 "Return non-nil if COLOR can be displayed on FRAME.\n\ |
1430 BACKGROUND-P non-nil means COLOR is used as a background.\n\ | |
1431 If FRAME is nil or omitted, use the selected frame.\n\ | |
1432 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
|
1433 (color, frame, background_p) |
24995 | 1434 Lisp_Object frame, color, background_p; |
1435 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1436 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1437 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1438 CHECK_FRAME (frame, 0); |
24995 | 1439 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
|
1440 f = XFRAME (frame); |
24995 | 1441 if (face_color_supported_p (f, XSTRING (color)->data, !NILP (background_p))) |
1442 return Qt; | |
1443 return Qnil; | |
1444 } | |
1445 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1446 |
24995 | 1447 /* Load color with name NAME for use by face FACE on frame F. |
1448 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX, | |
1449 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX, | |
1450 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the | |
1451 pixel color. If color cannot be loaded, display a message, and | |
1452 return the foreground, background or underline color of F, but | |
1453 record that fact in flags of the face so that we don't try to free | |
1454 these colors. */ | |
1455 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
1456 unsigned long |
24995 | 1457 load_color (f, face, name, target_index) |
1458 struct frame *f; | |
1459 struct face *face; | |
1460 Lisp_Object name; | |
1461 enum lface_attribute_index target_index; | |
1462 { | |
1463 XColor color; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1464 |
24995 | 1465 xassert (STRINGP (name)); |
1466 xassert (target_index == LFACE_FOREGROUND_INDEX | |
1467 || target_index == LFACE_BACKGROUND_INDEX | |
1468 || target_index == LFACE_UNDERLINE_INDEX | |
1469 || target_index == LFACE_OVERLINE_INDEX | |
1470 || target_index == LFACE_STRIKE_THROUGH_INDEX | |
1471 || target_index == LFACE_BOX_INDEX); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1472 |
24995 | 1473 /* if the color map is full, defined_color will return a best match |
1474 to the values in an existing cell. */ | |
1475 if (!defined_color (f, XSTRING (name)->data, &color, 1)) | |
1476 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1477 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
|
1478 |
24995 | 1479 switch (target_index) |
1480 { | |
1481 case LFACE_FOREGROUND_INDEX: | |
1482 face->foreground_defaulted_p = 1; | |
1483 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1484 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1485 |
24995 | 1486 case LFACE_BACKGROUND_INDEX: |
1487 face->background_defaulted_p = 1; | |
1488 color.pixel = FRAME_BACKGROUND_PIXEL (f); | |
1489 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1490 |
24995 | 1491 case LFACE_UNDERLINE_INDEX: |
1492 face->underline_defaulted_p = 1; | |
1493 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1494 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1495 |
24995 | 1496 case LFACE_OVERLINE_INDEX: |
1497 face->overline_color_defaulted_p = 1; | |
1498 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1499 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1500 |
24995 | 1501 case LFACE_STRIKE_THROUGH_INDEX: |
1502 face->strike_through_color_defaulted_p = 1; | |
1503 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1504 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1505 |
24995 | 1506 case LFACE_BOX_INDEX: |
1507 face->box_color_defaulted_p = 1; | |
1508 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1509 break; | |
1510 | |
1511 default: | |
1512 abort (); | |
1513 } | |
1514 } | |
1515 #if GLYPH_DEBUG | |
1516 else | |
1517 ++ncolors_allocated; | |
1518 #endif | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1519 |
24995 | 1520 return color.pixel; |
1521 } | |
1522 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1523 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1524 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1525 |
1526 /* Load colors for face FACE which is used on frame F. Colors are | |
1527 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX | |
1528 of ATTRS. If the background color specified is not supported on F, | |
1529 try to emulate gray colors with a stipple from Vface_default_stipple. */ | |
1530 | |
1531 static void | |
1532 load_face_colors (f, face, attrs) | |
1533 struct frame *f; | |
1534 struct face *face; | |
1535 Lisp_Object *attrs; | |
1536 { | |
1537 Lisp_Object fg, bg; | |
1538 | |
1539 bg = attrs[LFACE_BACKGROUND_INDEX]; | |
1540 fg = attrs[LFACE_FOREGROUND_INDEX]; | |
1541 | |
1542 /* Swap colors if face is inverse-video. */ | |
1543 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt)) | |
1544 { | |
1545 Lisp_Object tmp; | |
1546 tmp = fg; | |
1547 fg = bg; | |
1548 bg = tmp; | |
1549 } | |
1550 | |
1551 /* Check for support for foreground, not for background because | |
1552 face_color_supported_p is smart enough to know that grays are | |
1553 "supported" as background because we are supposed to use stipple | |
1554 for them. */ | |
1555 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
|
1556 && !NILP (Fbitmap_spec_p (Vface_default_stipple))) |
24995 | 1557 { |
1558 x_destroy_bitmap (f, face->stipple); | |
1559 face->stipple = load_pixmap (f, Vface_default_stipple, | |
1560 &face->pixmap_w, &face->pixmap_h); | |
1561 } | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1562 |
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1563 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX); |
24995 | 1564 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX); |
1565 } | |
1566 | |
1567 | |
1568 /* Free color PIXEL on frame F. */ | |
1569 | |
1570 void | |
1571 unload_color (f, pixel) | |
1572 struct frame *f; | |
1573 unsigned long pixel; | |
1574 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1575 #ifdef HAVE_X_WINDOWS |
24995 | 1576 BLOCK_INPUT; |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1577 x_free_colors (f, &pixel, 1); |
24995 | 1578 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1579 #endif |
24995 | 1580 } |
1581 | |
1582 | |
1583 /* Free colors allocated for FACE. */ | |
1584 | |
1585 static void | |
1586 free_face_colors (f, face) | |
1587 struct frame *f; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1588 struct face *face; |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1589 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1590 #ifdef HAVE_X_WINDOWS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1591 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1592 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1593 if (!face->foreground_defaulted_p) |
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 x_free_colors (f, &face->foreground, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1596 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1597 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1598 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1599 if (!face->background_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1600 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1601 x_free_colors (f, &face->background, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1602 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1603 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1604 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1605 if (face->underline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1606 && !face->underline_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1607 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1608 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
|
1609 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1610 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1611 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1612 if (face->overline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1613 && !face->overline_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1614 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1615 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
|
1616 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1617 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1618 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1619 if (face->strike_through_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1620 && !face->strike_through_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1621 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1622 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
|
1623 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1624 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1625 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1626 if (face->box != FACE_NO_BOX |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1627 && !face->box_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1628 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1629 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
|
1630 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1631 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1632 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1633 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1634 #endif /* HAVE_X_WINDOWS */ |
24995 | 1635 } |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1636 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1637 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1638 |
1639 | |
1640 | |
1641 /*********************************************************************** | |
1642 XLFD Font Names | |
1643 ***********************************************************************/ | |
1644 | |
1645 /* An enumerator for each field of an XLFD font name. */ | |
1646 | |
1647 enum xlfd_field | |
1648 { | |
1649 XLFD_FOUNDRY, | |
1650 XLFD_FAMILY, | |
1651 XLFD_WEIGHT, | |
1652 XLFD_SLANT, | |
1653 XLFD_SWIDTH, | |
1654 XLFD_ADSTYLE, | |
1655 XLFD_PIXEL_SIZE, | |
1656 XLFD_POINT_SIZE, | |
1657 XLFD_RESX, | |
1658 XLFD_RESY, | |
1659 XLFD_SPACING, | |
1660 XLFD_AVGWIDTH, | |
1661 XLFD_REGISTRY, | |
1662 XLFD_ENCODING, | |
1663 XLFD_LAST | |
1664 }; | |
1665 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1666 /* An enumerator for each possible slant value of a font. Taken from |
24995 | 1667 the XLFD specification. */ |
1668 | |
1669 enum xlfd_slant | |
1670 { | |
1671 XLFD_SLANT_UNKNOWN, | |
1672 XLFD_SLANT_ROMAN, | |
1673 XLFD_SLANT_ITALIC, | |
1674 XLFD_SLANT_OBLIQUE, | |
1675 XLFD_SLANT_REVERSE_ITALIC, | |
1676 XLFD_SLANT_REVERSE_OBLIQUE, | |
1677 XLFD_SLANT_OTHER | |
1678 }; | |
1679 | |
1680 /* Relative font weight according to XLFD documentation. */ | |
1681 | |
1682 enum xlfd_weight | |
1683 { | |
1684 XLFD_WEIGHT_UNKNOWN, | |
1685 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */ | |
1686 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */ | |
1687 XLFD_WEIGHT_LIGHT, /* 30 */ | |
1688 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */ | |
1689 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1690 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */ | |
1691 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */ | |
1692 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */ | |
1693 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */ | |
1694 }; | |
1695 | |
1696 /* Relative proportionate width. */ | |
1697 | |
1698 enum xlfd_swidth | |
1699 { | |
1700 XLFD_SWIDTH_UNKNOWN, | |
1701 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */ | |
1702 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */ | |
1703 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */ | |
1704 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */ | |
1705 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1706 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */ | |
1707 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */ | |
1708 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */ | |
1709 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */ | |
1710 }; | |
1711 | |
1712 /* Structure used for tables mapping XLFD weight, slant, and width | |
1713 names to numeric and symbolic values. */ | |
1714 | |
1715 struct table_entry | |
1716 { | |
1717 char *name; | |
1718 int numeric; | |
1719 Lisp_Object *symbol; | |
1720 }; | |
1721 | |
1722 /* Table of XLFD slant names and their numeric and symbolic | |
1723 representations. This table must be sorted by slant names in | |
1724 ascending order. */ | |
1725 | |
1726 static struct table_entry slant_table[] = | |
1727 { | |
1728 {"i", XLFD_SLANT_ITALIC, &Qitalic}, | |
1729 {"o", XLFD_SLANT_OBLIQUE, &Qoblique}, | |
1730 {"ot", XLFD_SLANT_OTHER, &Qitalic}, | |
1731 {"r", XLFD_SLANT_ROMAN, &Qnormal}, | |
1732 {"ri", XLFD_SLANT_REVERSE_ITALIC, &Qreverse_italic}, | |
1733 {"ro", XLFD_SLANT_REVERSE_OBLIQUE, &Qreverse_oblique} | |
1734 }; | |
1735 | |
1736 /* Table of XLFD weight names. This table must be sorted by weight | |
1737 names in ascending order. */ | |
1738 | |
1739 static struct table_entry weight_table[] = | |
1740 { | |
1741 {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}, | |
1742 {"bold", XLFD_WEIGHT_BOLD, &Qbold}, | |
1743 {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1744 {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1745 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light}, | |
1746 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1747 {"heavy", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1748 {"light", XLFD_WEIGHT_LIGHT, &Qlight}, | |
1749 {"medium", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1750 {"normal", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1751 {"regular", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1752 {"semibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1753 {"semilight", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1754 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT, &Qultra_light}, | |
1755 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold} | |
1756 }; | |
1757 | |
1758 /* Table of XLFD width names. This table must be sorted by width | |
1759 names in ascending order. */ | |
1760 | |
1761 static struct table_entry swidth_table[] = | |
1762 { | |
1763 {"compressed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1764 {"condensed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1765 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1766 {"expanded", XLFD_SWIDTH_EXPANDED, &Qexpanded}, | |
1767 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED, &Qextra_condensed}, | |
1768 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded}, | |
1769 {"medium", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1770 {"narrow", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1771 {"normal", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1772 {"regular", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1773 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED, &Qsemi_condensed}, | |
1774 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1775 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED, &Qultra_condensed}, | |
1776 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED, &Qultra_expanded}, | |
1777 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded} | |
1778 }; | |
1779 | |
1780 /* Structure used to hold the result of splitting font names in XLFD | |
1781 format into their fields. */ | |
1782 | |
1783 struct font_name | |
1784 { | |
1785 /* The original name which is modified destructively by | |
1786 split_font_name. The pointer is kept here to be able to free it | |
1787 if it was allocated from the heap. */ | |
1788 char *name; | |
1789 | |
1790 /* Font name fields. Each vector element points into `name' above. | |
1791 Fields are NUL-terminated. */ | |
1792 char *fields[XLFD_LAST]; | |
1793 | |
1794 /* Numeric values for those fields that interest us. See | |
1795 split_font_name for which these are. */ | |
1796 int numeric[XLFD_LAST]; | |
1797 }; | |
1798 | |
1799 /* The frame in effect when sorting font names. Set temporarily in | |
1800 sort_fonts so that it is available in font comparison functions. */ | |
1801 | |
1802 static struct frame *font_frame; | |
1803 | |
1804 /* Order by which font selection chooses fonts. The default values | |
1805 mean `first, find a best match for the font width, then for the | |
1806 font height, then for weight, then for slant.' This variable can be | |
1807 set via set-face-font-sort-order. */ | |
1808 | |
1809 static int font_sort_order[4]; | |
1810 | |
1811 | |
1812 /* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries. | |
1813 TABLE must be sorted by TABLE[i]->name in ascending order. Value | |
1814 is a pointer to the matching table entry or null if no table entry | |
1815 matches. */ | |
1816 | |
1817 static struct table_entry * | |
1818 xlfd_lookup_field_contents (table, dim, font, field_index) | |
1819 struct table_entry *table; | |
1820 int dim; | |
1821 struct font_name *font; | |
1822 int field_index; | |
1823 { | |
1824 /* Function split_font_name converts fields to lower-case, so there | |
1825 is no need to use xstrlwr or xstricmp here. */ | |
1826 char *s = font->fields[field_index]; | |
1827 int low, mid, high, cmp; | |
1828 | |
1829 low = 0; | |
1830 high = dim - 1; | |
1831 | |
1832 while (low <= high) | |
1833 { | |
1834 mid = (low + high) / 2; | |
1835 cmp = strcmp (table[mid].name, s); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1836 |
24995 | 1837 if (cmp < 0) |
1838 low = mid + 1; | |
1839 else if (cmp > 0) | |
1840 high = mid - 1; | |
1841 else | |
1842 return table + mid; | |
1843 } | |
1844 | |
1845 return NULL; | |
1846 } | |
1847 | |
1848 | |
1849 /* Return a numeric representation for font name field | |
1850 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1851 has DIM entries. Value is the numeric value found or DFLT if no | |
1852 table entry matches. This function is used to translate weight, | |
1853 slant, and swidth names of XLFD font names to numeric values. */ | |
1854 | |
1855 static INLINE int | |
1856 xlfd_numeric_value (table, dim, font, field_index, dflt) | |
1857 struct table_entry *table; | |
1858 int dim; | |
1859 struct font_name *font; | |
1860 int field_index; | |
1861 int dflt; | |
1862 { | |
1863 struct table_entry *p; | |
1864 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1865 return p ? p->numeric : dflt; | |
1866 } | |
1867 | |
1868 | |
1869 /* Return a symbolic representation for font name field | |
1870 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1871 has DIM entries. Value is the symbolic value found or DFLT if no | |
1872 table entry matches. This function is used to translate weight, | |
1873 slant, and swidth names of XLFD font names to symbols. */ | |
1874 | |
1875 static INLINE Lisp_Object | |
1876 xlfd_symbolic_value (table, dim, font, field_index, dflt) | |
1877 struct table_entry *table; | |
1878 int dim; | |
1879 struct font_name *font; | |
1880 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
|
1881 Lisp_Object dflt; |
24995 | 1882 { |
1883 struct table_entry *p; | |
1884 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1885 return p ? *p->symbol : dflt; | |
1886 } | |
1887 | |
1888 | |
1889 /* Return a numeric value for the slant of the font given by FONT. */ | |
1890 | |
1891 static INLINE int | |
1892 xlfd_numeric_slant (font) | |
1893 struct font_name *font; | |
1894 { | |
1895 return xlfd_numeric_value (slant_table, DIM (slant_table), | |
1896 font, XLFD_SLANT, XLFD_SLANT_ROMAN); | |
1897 } | |
1898 | |
1899 | |
1900 /* Return a symbol representing the weight of the font given by FONT. */ | |
1901 | |
1902 static INLINE Lisp_Object | |
1903 xlfd_symbolic_slant (font) | |
1904 struct font_name *font; | |
1905 { | |
1906 return xlfd_symbolic_value (slant_table, DIM (slant_table), | |
1907 font, XLFD_SLANT, Qnormal); | |
1908 } | |
1909 | |
1910 | |
1911 /* Return a numeric value for the weight of the font given by FONT. */ | |
1912 | |
1913 static INLINE int | |
1914 xlfd_numeric_weight (font) | |
1915 struct font_name *font; | |
1916 { | |
1917 return xlfd_numeric_value (weight_table, DIM (weight_table), | |
1918 font, XLFD_WEIGHT, XLFD_WEIGHT_MEDIUM); | |
1919 } | |
1920 | |
1921 | |
1922 /* Return a symbol representing the slant of the font given by FONT. */ | |
1923 | |
1924 static INLINE Lisp_Object | |
1925 xlfd_symbolic_weight (font) | |
1926 struct font_name *font; | |
1927 { | |
1928 return xlfd_symbolic_value (weight_table, DIM (weight_table), | |
1929 font, XLFD_WEIGHT, Qnormal); | |
1930 } | |
1931 | |
1932 | |
1933 /* Return a numeric value for the swidth of the font whose XLFD font | |
1934 name fields are found in FONT. */ | |
1935 | |
1936 static INLINE int | |
1937 xlfd_numeric_swidth (font) | |
1938 struct font_name *font; | |
1939 { | |
1940 return xlfd_numeric_value (swidth_table, DIM (swidth_table), | |
1941 font, XLFD_SWIDTH, XLFD_SWIDTH_MEDIUM); | |
1942 } | |
1943 | |
1944 | |
1945 /* Return a symbolic value for the swidth of FONT. */ | |
1946 | |
1947 static INLINE Lisp_Object | |
1948 xlfd_symbolic_swidth (font) | |
1949 struct font_name *font; | |
1950 { | |
1951 return xlfd_symbolic_value (swidth_table, DIM (swidth_table), | |
1952 font, XLFD_SWIDTH, Qnormal); | |
1953 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1954 |
24995 | 1955 |
1956 /* Look up the entry of SYMBOL in the vector TABLE which has DIM | |
1957 entries. Value is a pointer to the matching table entry or null if | |
1958 no element of TABLE contains SYMBOL. */ | |
1959 | |
1960 static struct table_entry * | |
1961 face_value (table, dim, symbol) | |
1962 struct table_entry *table; | |
1963 int dim; | |
1964 Lisp_Object symbol; | |
1965 { | |
1966 int i; | |
1967 | |
1968 xassert (SYMBOLP (symbol)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1969 |
24995 | 1970 for (i = 0; i < dim; ++i) |
1971 if (EQ (*table[i].symbol, symbol)) | |
1972 break; | |
1973 | |
1974 return i < dim ? table + i : NULL; | |
1975 } | |
1976 | |
1977 | |
1978 /* Return a numeric value for SYMBOL in the vector TABLE which has DIM | |
1979 entries. Value is -1 if SYMBOL is not found in TABLE. */ | |
1980 | |
1981 static INLINE int | |
1982 face_numeric_value (table, dim, symbol) | |
1983 struct table_entry *table; | |
1984 int dim; | |
1985 Lisp_Object symbol; | |
1986 { | |
1987 struct table_entry *p = face_value (table, dim, symbol); | |
1988 return p ? p->numeric : -1; | |
1989 } | |
1990 | |
1991 | |
1992 /* Return a numeric value representing the weight specified by Lisp | |
1993 symbol WEIGHT. Value is one of the enumerators of enum | |
1994 xlfd_weight. */ | |
1995 | |
1996 static INLINE int | |
1997 face_numeric_weight (weight) | |
1998 Lisp_Object weight; | |
1999 { | |
2000 return face_numeric_value (weight_table, DIM (weight_table), weight); | |
2001 } | |
2002 | |
2003 | |
2004 /* Return a numeric value representing the slant specified by Lisp | |
2005 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */ | |
2006 | |
2007 static INLINE int | |
2008 face_numeric_slant (slant) | |
2009 Lisp_Object slant; | |
2010 { | |
2011 return face_numeric_value (slant_table, DIM (slant_table), slant); | |
2012 } | |
2013 | |
2014 | |
2015 /* Return a numeric value representing the swidth specified by Lisp | |
2016 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */ | |
2017 | |
2018 static int | |
2019 face_numeric_swidth (width) | |
2020 Lisp_Object width; | |
2021 { | |
2022 return face_numeric_value (swidth_table, DIM (swidth_table), width); | |
2023 } | |
2024 | |
2025 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2026 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2027 |
2028 /* Return non-zero if FONT is the name of a fixed-pitch font. */ | |
2029 | |
2030 static INLINE int | |
2031 xlfd_fixed_p (font) | |
2032 struct font_name *font; | |
2033 { | |
2034 /* Function split_font_name converts fields to lower-case, so there | |
2035 is no need to use tolower here. */ | |
2036 return *font->fields[XLFD_SPACING] != 'p'; | |
2037 } | |
2038 | |
2039 | |
2040 /* Return the point size of FONT on frame F, measured in 1/10 pt. | |
2041 | |
2042 The actual height of the font when displayed on F depends on the | |
2043 resolution of both the font and frame. For example, a 10pt font | |
2044 designed for a 100dpi display will display larger than 10pt on a | |
2045 75dpi display. (It's not unusual to use fonts not designed for the | |
2046 display one is using. For example, some intlfonts are available in | |
2047 72dpi versions, only.) | |
2048 | |
2049 Value is the real point size of FONT on frame F, or 0 if it cannot | |
2050 be determined. */ | |
2051 | |
2052 static INLINE int | |
2053 xlfd_point_size (f, font) | |
2054 struct frame *f; | |
2055 struct font_name *font; | |
2056 { | |
2057 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
2058 double font_resy = atoi (font->fields[XLFD_RESY]); | |
2059 double font_pt = atoi (font->fields[XLFD_POINT_SIZE]); | |
2060 int real_pt; | |
2061 | |
2062 if (font_resy == 0 || font_pt == 0) | |
2063 real_pt = 0; | |
2064 else | |
2065 real_pt = (font_resy / resy) * font_pt + 0.5; | |
2066 | |
2067 return real_pt; | |
2068 } | |
2069 | |
2070 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2071 /* 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
|
2072 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
|
2073 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
|
2074 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2075 static INLINE int |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2076 pixel_point_size (f, pixel) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2077 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2078 int pixel; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2079 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2080 double resy = FRAME_X_DISPLAY_INFO (f)->resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2081 double real_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2082 int int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2083 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2084 /* 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
|
2085 real_pt = pixel * 72 / resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2086 int_pt = real_pt + 0.5; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2087 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2088 return int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2089 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2090 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2091 |
24995 | 2092 /* Split XLFD font name FONT->name destructively into NUL-terminated, |
2093 lower-case fields in FONT->fields. NUMERIC_P non-zero means | |
2094 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH, | |
2095 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is | |
2096 zero if the font name doesn't have the format we expect. The | |
2097 expected format is a font name that starts with a `-' and has | |
2098 XLFD_LAST fields separated by `-'. (The XLFD specification allows | |
2099 forms of font names where certain field contents are enclosed in | |
2100 square brackets. We don't support that, for now. */ | |
2101 | |
2102 static int | |
2103 split_font_name (f, font, numeric_p) | |
2104 struct frame *f; | |
2105 struct font_name *font; | |
2106 int numeric_p; | |
2107 { | |
2108 int i = 0; | |
2109 int success_p; | |
2110 | |
2111 if (*font->name == '-') | |
2112 { | |
2113 char *p = xstrlwr (font->name) + 1; | |
2114 | |
2115 while (i < XLFD_LAST) | |
2116 { | |
2117 font->fields[i] = p; | |
2118 ++i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2119 |
24995 | 2120 while (*p && *p != '-') |
2121 ++p; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2122 |
24995 | 2123 if (*p != '-') |
2124 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2125 |
24995 | 2126 *p++ = 0; |
2127 } | |
2128 } | |
2129 | |
2130 success_p = i == XLFD_LAST; | |
2131 | |
2132 /* If requested, and font name was in the expected format, | |
2133 compute numeric values for some fields. */ | |
2134 if (numeric_p && success_p) | |
2135 { | |
2136 font->numeric[XLFD_POINT_SIZE] = xlfd_point_size (f, font); | |
2137 font->numeric[XLFD_RESY] = atoi (font->fields[XLFD_RESY]); | |
2138 font->numeric[XLFD_SLANT] = xlfd_numeric_slant (font); | |
2139 font->numeric[XLFD_WEIGHT] = xlfd_numeric_weight (font); | |
2140 font->numeric[XLFD_SWIDTH] = xlfd_numeric_swidth (font); | |
2141 } | |
2142 | |
2143 return success_p; | |
2144 } | |
2145 | |
2146 | |
2147 /* Build an XLFD font name from font name fields in FONT. Value is a | |
2148 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
|
2149 |
24995 | 2150 static char * |
2151 build_font_name (font) | |
2152 struct font_name *font; | |
2153 { | |
2154 int i; | |
2155 int size = 100; | |
2156 char *font_name = (char *) xmalloc (size); | |
2157 int total_length = 0; | |
2158 | |
2159 for (i = 0; i < XLFD_LAST; ++i) | |
2160 { | |
2161 /* Add 1 because of the leading `-'. */ | |
2162 int len = strlen (font->fields[i]) + 1; | |
2163 | |
2164 /* Reallocate font_name if necessary. Add 1 for the final | |
2165 NUL-byte. */ | |
2166 if (total_length + len + 1 >= size) | |
2167 { | |
2168 int new_size = max (2 * size, size + len + 1); | |
2169 int sz = new_size * sizeof *font_name; | |
2170 font_name = (char *) xrealloc (font_name, sz); | |
2171 size = new_size; | |
2172 } | |
2173 | |
2174 font_name[total_length] = '-'; | |
2175 bcopy (font->fields[i], font_name + total_length + 1, len - 1); | |
2176 total_length += len; | |
2177 } | |
2178 | |
2179 font_name[total_length] = 0; | |
2180 return font_name; | |
2181 } | |
2182 | |
2183 | |
2184 /* Free an array FONTS of N font_name structures. This frees FONTS | |
2185 itself and all `name' fields in its elements. */ | |
2186 | |
2187 static INLINE void | |
2188 free_font_names (fonts, n) | |
2189 struct font_name *fonts; | |
2190 int n; | |
2191 { | |
2192 while (n) | |
2193 xfree (fonts[--n].name); | |
2194 xfree (fonts); | |
2195 } | |
2196 | |
2197 | |
2198 /* Sort vector FONTS of font_name structures which contains NFONTS | |
2199 elements using qsort and comparison function CMPFN. F is the frame | |
2200 on which the fonts will be used. The global variable font_frame | |
2201 is temporarily set to F to make it available in CMPFN. */ | |
2202 | |
2203 static INLINE void | |
2204 sort_fonts (f, fonts, nfonts, cmpfn) | |
2205 struct frame *f; | |
2206 struct font_name *fonts; | |
2207 int nfonts; | |
2208 int (*cmpfn) P_ ((const void *, const void *)); | |
2209 { | |
2210 font_frame = f; | |
2211 qsort (fonts, nfonts, sizeof *fonts, cmpfn); | |
2212 font_frame = NULL; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2213 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2214 |
24995 | 2215 |
2216 /* Get fonts matching PATTERN on frame F. If F is null, use the first | |
2217 display in x_display_list. FONTS is a pointer to a vector of | |
2218 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try | |
2219 alternative patterns from Valternate_fontname_alist if no fonts are | |
2220 found matching PATTERN. SCALABLE_FONTS_P non-zero means include | |
2221 scalable fonts. | |
2222 | |
2223 For all fonts found, set FONTS[i].name to the name of the font, | |
2224 allocated via xmalloc, and split font names into fields. Ignore | |
2225 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
|
2226 |
24995 | 2227 This is similar to x_list_fonts. The differences are: |
2228 | |
2229 1. It avoids consing. | |
2230 2. It never calls XLoadQueryFont. */ | |
2231 | |
2232 static int | |
2233 x_face_list_fonts (f, pattern, fonts, nfonts, try_alternatives_p, | |
2234 scalable_fonts_p) | |
2235 struct frame *f; | |
2236 char *pattern; | |
2237 struct font_name *fonts; | |
2238 int nfonts, try_alternatives_p; | |
2239 int scalable_fonts_p; | |
2240 { | |
2241 int n, i, j; | |
2242 char **names; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2243 #ifdef HAVE_X_WINDOWS |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2244 Display *dpy = f ? FRAME_X_DISPLAY (f) : x_display_list->display; |
24995 | 2245 |
2246 /* Get the list of fonts matching PATTERN from the X server. */ | |
2247 BLOCK_INPUT; | |
2248 names = XListFonts (dpy, pattern, nfonts, &n); | |
2249 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2250 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2251 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2252 /* 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
|
2253 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
|
2254 Lisp_Object lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2255 Lisp_Object lpattern, tem; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2256 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2257 n = 0; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2258 names = NULL; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2259 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2260 lpattern = build_string (pattern); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2261 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2262 /* 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
|
2263 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2264 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
|
2265 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2266 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2267 /* Count fonts returned */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2268 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
|
2269 n++; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2270 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2271 /* Allocate array. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2272 if (n) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2273 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
|
2274 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2275 /* 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
|
2276 tem = lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2277 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
|
2278 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2279 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
|
2280 tem = XCDR (tem); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2281 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2282 #endif |
24995 | 2283 |
2284 if (names) | |
2285 { | |
2286 /* Make a copy of the font names we got from X, and | |
2287 split them into fields. */ | |
2288 for (i = j = 0; i < n; ++i) | |
2289 { | |
2290 /* Make a copy of the font name. */ | |
2291 fonts[j].name = xstrdup (names[i]); | |
2292 | |
2293 /* Ignore fonts having a name that we can't parse. */ | |
2294 if (!split_font_name (f, fonts + j, 1)) | |
2295 xfree (fonts[j].name); | |
2296 else if (font_scalable_p (fonts + j)) | |
2297 { | |
2298 #if SCALABLE_FONTS | |
2299 if (!scalable_fonts_p | |
2300 || !may_use_scalable_font_p (fonts + j, names[i])) | |
2301 xfree (fonts[j].name); | |
2302 else | |
2303 ++j; | |
2304 #else /* !SCALABLE_FONTS */ | |
2305 /* Always ignore scalable fonts. */ | |
2306 xfree (fonts[j].name); | |
2307 #endif /* !SCALABLE_FONTS */ | |
2308 } | |
2309 else | |
2310 ++j; | |
2311 } | |
2312 | |
2313 n = j; | |
2314 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2315 #ifdef HAVE_X_WINDOWS |
24995 | 2316 /* Free font names. */ |
2317 BLOCK_INPUT; | |
2318 XFreeFontNames (names); | |
2319 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2320 #endif |
24995 | 2321 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2322 |
24995 | 2323 |
2324 /* If no fonts found, try patterns from Valternate_fontname_alist. */ | |
2325 if (n == 0 && try_alternatives_p) | |
2326 { | |
2327 Lisp_Object list = Valternate_fontname_alist; | |
2328 | |
2329 while (CONSP (list)) | |
2330 { | |
2331 Lisp_Object entry = XCAR (list); | |
2332 if (CONSP (entry) | |
2333 && STRINGP (XCAR (entry)) | |
2334 && strcmp (XSTRING (XCAR (entry))->data, pattern) == 0) | |
2335 break; | |
2336 list = XCDR (list); | |
2337 } | |
2338 | |
2339 if (CONSP (list)) | |
2340 { | |
2341 Lisp_Object patterns = XCAR (list); | |
2342 Lisp_Object name; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2343 |
24995 | 2344 while (CONSP (patterns) |
2345 /* If list is screwed up, give up. */ | |
2346 && (name = XCAR (patterns), | |
2347 STRINGP (name)) | |
2348 /* Ignore patterns equal to PATTERN because we tried that | |
2349 already with no success. */ | |
2350 && (strcmp (XSTRING (name)->data, pattern) == 0 | |
2351 || (n = x_face_list_fonts (f, XSTRING (name)->data, | |
2352 fonts, nfonts, 0, | |
2353 scalable_fonts_p), | |
2354 n == 0))) | |
2355 patterns = XCDR (patterns); | |
2356 } | |
2357 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2358 |
24995 | 2359 return n; |
2360 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2361 |
24995 | 2362 |
2363 /* Determine the first font matching PATTERN on frame F. Return in | |
2364 *FONT the matching font name, split into fields. Value is non-zero | |
2365 if a match was found. */ | |
2366 | |
2367 static int | |
2368 first_font_matching (f, pattern, font) | |
2369 struct frame *f; | |
2370 char *pattern; | |
2371 struct font_name *font; | |
2372 { | |
2373 int nfonts = 100; | |
2374 struct font_name *fonts; | |
2375 | |
2376 fonts = (struct font_name *) xmalloc (nfonts * sizeof *fonts); | |
2377 nfonts = x_face_list_fonts (f, pattern, fonts, nfonts, 1, 0); | |
2378 | |
2379 if (nfonts > 0) | |
2380 { | |
2381 bcopy (&fonts[0], font, sizeof *font); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2382 |
24995 | 2383 fonts[0].name = NULL; |
2384 free_font_names (fonts, nfonts); | |
2385 } | |
2386 | |
2387 return nfonts > 0; | |
2388 } | |
2389 | |
2390 | |
2391 /* Determine fonts matching PATTERN on frame F. Sort resulting fonts | |
2392 using comparison function CMPFN. Value is the number of fonts | |
2393 found. If value is non-zero, *FONTS is set to a vector of | |
2394 font_name structures allocated from the heap containing matching | |
2395 fonts. Each element of *FONTS contains a name member that is also | |
2396 allocated from the heap. Font names in these structures are split | |
2397 into fields. Use free_font_names to free such an array. */ | |
2398 | |
2399 static int | |
2400 sorted_font_list (f, pattern, cmpfn, fonts) | |
2401 struct frame *f; | |
2402 char *pattern; | |
2403 int (*cmpfn) P_ ((const void *, const void *)); | |
2404 struct font_name **fonts; | |
2405 { | |
2406 int nfonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2407 |
24995 | 2408 /* Get the list of fonts matching pattern. 100 should suffice. */ |
25270 | 2409 nfonts = DEFAULT_FONT_LIST_LIMIT; |
2410 if (INTEGERP (Vfont_list_limit) && XINT (Vfont_list_limit) > 0) | |
2411 nfonts = XFASTINT (Vfont_list_limit); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2412 |
24995 | 2413 *fonts = (struct font_name *) xmalloc (nfonts * sizeof **fonts); |
2414 #if SCALABLE_FONTS | |
2415 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1, 1); | |
2416 #else | |
2417 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1, 0); | |
2418 #endif | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2419 |
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2420 /* Sort the resulting array and return it in *FONTS. If no |
24995 | 2421 fonts were found, make sure to set *FONTS to null. */ |
2422 if (nfonts) | |
2423 sort_fonts (f, *fonts, nfonts, cmpfn); | |
2424 else | |
2425 { | |
2426 xfree (*fonts); | |
2427 *fonts = NULL; | |
2428 } | |
2429 | |
2430 return nfonts; | |
2431 } | |
2432 | |
2433 | |
2434 /* Compare two font_name structures *A and *B. Value is analogous to | |
2435 strcmp. Sort order is given by the global variable | |
2436 font_sort_order. Font names are sorted so that, everything else | |
2437 being equal, fonts with a resolution closer to that of the frame on | |
2438 which they are used are listed first. The global variable | |
2439 font_frame is the frame on which we operate. */ | |
2440 | |
2441 static int | |
2442 cmp_font_names (a, b) | |
2443 const void *a, *b; | |
2444 { | |
2445 struct font_name *x = (struct font_name *) a; | |
2446 struct font_name *y = (struct font_name *) b; | |
2447 int cmp; | |
2448 | |
2449 /* All strings have been converted to lower-case by split_font_name, | |
2450 so we can use strcmp here. */ | |
2451 cmp = strcmp (x->fields[XLFD_FAMILY], y->fields[XLFD_FAMILY]); | |
2452 if (cmp == 0) | |
2453 { | |
2454 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2455 |
24995 | 2456 for (i = 0; i < DIM (font_sort_order) && cmp == 0; ++i) |
2457 { | |
2458 int j = font_sort_order[i]; | |
2459 cmp = x->numeric[j] - y->numeric[j]; | |
2460 } | |
2461 | |
2462 if (cmp == 0) | |
2463 { | |
2464 /* Everything else being equal, we prefer fonts with an | |
2465 y-resolution closer to that of the frame. */ | |
2466 int resy = FRAME_X_DISPLAY_INFO (font_frame)->resy; | |
2467 int x_resy = x->numeric[XLFD_RESY]; | |
2468 int y_resy = y->numeric[XLFD_RESY]; | |
2469 cmp = abs (resy - x_resy) - abs (resy - y_resy); | |
2470 } | |
2471 } | |
2472 | |
2473 return cmp; | |
2474 } | |
2475 | |
2476 | |
2477 /* 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
|
2478 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
|
2479 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
|
2480 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
|
2481 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
|
2482 Value is the number of fonts found. */ |
24995 | 2483 |
2484 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2485 font_list (f, pattern, family, registry, fonts) |
24995 | 2486 struct frame *f; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2487 Lisp_Object pattern, family, registry; |
24995 | 2488 struct font_name **fonts; |
2489 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2490 char *pattern_str, *family_str, *registry_str; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2491 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2492 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2493 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2494 family_str = (NILP (family) ? "*" : (char *) XSTRING (family)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2495 registry_str = (NILP (registry) ? "*" : (char *) XSTRING (registry)->data); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2496 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2497 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
|
2498 + strlen (registry_str) |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2499 + 10); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2500 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
|
2501 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
|
2502 strcat (pattern_str, "-*-"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2503 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
|
2504 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
|
2505 { |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2506 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
|
2507 strcat (pattern_str, "-*"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2508 else |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2509 strcat (pattern_str, "*-*"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2510 } |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2511 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2512 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2513 pattern_str = (char *) XSTRING (pattern)->data; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2514 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2515 return sorted_font_list (f, pattern_str, cmp_font_names, fonts); |
24995 | 2516 } |
2517 | |
2518 | |
2519 /* 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
|
2520 x-family-fonts and x-font-family-list to remove duplicate font |
24995 | 2521 entries. */ |
2522 | |
2523 static void | |
2524 remove_duplicates (list) | |
2525 Lisp_Object list; | |
2526 { | |
2527 Lisp_Object tail = list; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2528 |
24995 | 2529 while (!NILP (tail) && !NILP (XCDR (tail))) |
2530 { | |
2531 Lisp_Object next = XCDR (tail); | |
2532 if (!NILP (Fequal (XCAR (next), XCAR (tail)))) | |
2533 XCDR (tail) = XCDR (next); | |
2534 else | |
2535 tail = XCDR (tail); | |
2536 } | |
2537 } | |
2538 | |
2539 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2540 DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0, |
24995 | 2541 "Return a list of available fonts of family FAMILY on FRAME.\n\ |
2542 If FAMILY is omitted or nil, list all families.\n\ | |
2543 Otherwise, FAMILY must be a string, possibly containing wildcards\n\ | |
2544 `?' and `*'.\n\ | |
2545 If FRAME is omitted or nil, use the selected frame.\n\ | |
2546 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT\n\ | |
25270 | 2547 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].\n\ |
24995 | 2548 FAMILY is the font family name. POINT-SIZE is the size of the\n\ |
2549 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the\n\ | |
2550 width, weight and slant of the font. These symbols are the same as for\n\ | |
2551 face attributes. FIXED-P is non-nil if the font is fixed-pitch.\n\ | |
25270 | 2552 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string\n\ |
2553 giving the registry and encoding of the font.\n\ | |
24995 | 2554 The result list is sorted according to the current setting of\n\ |
2555 the face font sort order.") | |
2556 (family, frame) | |
2557 Lisp_Object family, frame; | |
2558 { | |
2559 struct frame *f = check_x_frame (frame); | |
2560 struct font_name *fonts; | |
2561 int i, nfonts; | |
2562 Lisp_Object result; | |
2563 struct gcpro gcpro1; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2564 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2565 if (!NILP (family)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2566 CHECK_STRING (family, 1); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2567 |
24995 | 2568 result = Qnil; |
2569 GCPRO1 (result); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2570 nfonts = font_list (f, Qnil, family, Qnil, &fonts); |
24995 | 2571 for (i = nfonts - 1; i >= 0; --i) |
2572 { | |
25270 | 2573 Lisp_Object v = Fmake_vector (make_number (8), Qnil); |
2574 char *tem; | |
24995 | 2575 |
2576 ASET (v, 0, build_string (fonts[i].fields[XLFD_FAMILY])); | |
2577 ASET (v, 1, xlfd_symbolic_swidth (fonts + i)); | |
2578 ASET (v, 2, make_number (xlfd_point_size (f, fonts + i))); | |
2579 ASET (v, 3, xlfd_symbolic_weight (fonts + i)); | |
2580 ASET (v, 4, xlfd_symbolic_slant (fonts + i)); | |
2581 ASET (v, 5, xlfd_fixed_p (fonts + i) ? Qt : Qnil); | |
25270 | 2582 tem = build_font_name (fonts + i); |
2583 ASET (v, 6, build_string (tem)); | |
2584 sprintf (tem, "%s-%s", fonts[i].fields[XLFD_REGISTRY], | |
2585 fonts[i].fields[XLFD_ENCODING]); | |
2586 ASET (v, 7, build_string (tem)); | |
2587 xfree (tem); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2588 |
24995 | 2589 result = Fcons (v, result); |
2590 } | |
2591 | |
2592 remove_duplicates (result); | |
2593 free_font_names (fonts, nfonts); | |
2594 UNGCPRO; | |
2595 return result; | |
2596 } | |
2597 | |
2598 | |
2599 DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list, | |
2600 0, 1, 0, | |
2601 "Return a list of available font families on FRAME.\n\ | |
2602 If FRAME is omitted or nil, use the selected frame.\n\ | |
2603 Value is a list of conses (FAMILY . FIXED-P) where FAMILY\n\ | |
2604 is a font family, and FIXED-P is non-nil if fonts of that family\n\ | |
2605 are fixed-pitch.") | |
2606 (frame) | |
2607 Lisp_Object frame; | |
2608 { | |
2609 struct frame *f = check_x_frame (frame); | |
2610 int nfonts, i; | |
2611 struct font_name *fonts; | |
2612 Lisp_Object result; | |
2613 struct gcpro gcpro1; | |
25270 | 2614 int count = specpdl_ptr - specpdl; |
2615 int limit; | |
2616 | |
2617 /* Let's consider all fonts. Increase the limit for matching | |
2618 fonts until we have them all. */ | |
2619 for (limit = 500;;) | |
2620 { | |
2621 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
|
2622 nfonts = font_list (f, Qnil, Qnil, Qnil, &fonts); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2623 |
25270 | 2624 if (nfonts == limit) |
2625 { | |
2626 free_font_names (fonts, nfonts); | |
2627 limit *= 2; | |
2628 } | |
2629 else | |
2630 break; | |
2631 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2632 |
24995 | 2633 result = Qnil; |
2634 GCPRO1 (result); | |
2635 for (i = nfonts - 1; i >= 0; --i) | |
2636 result = Fcons (Fcons (build_string (fonts[i].fields[XLFD_FAMILY]), | |
2637 xlfd_fixed_p (fonts + i) ? Qt : Qnil), | |
2638 result); | |
2639 | |
2640 remove_duplicates (result); | |
2641 free_font_names (fonts, nfonts); | |
2642 UNGCPRO; | |
25270 | 2643 return unbind_to (count, result); |
24995 | 2644 } |
2645 | |
2646 | |
2647 DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0, | |
2648 "Return a list of the names of available fonts matching PATTERN.\n\ | |
2649 If optional arguments FACE and FRAME are specified, return only fonts\n\ | |
2650 the same size as FACE on FRAME.\n\ | |
2651 PATTERN is a string, perhaps with wildcard characters;\n\ | |
2652 the * character matches any substring, and\n\ | |
2653 the ? character matches any single character.\n\ | |
2654 PATTERN is case-insensitive.\n\ | |
2655 FACE is a face name--a symbol.\n\ | |
2656 \n\ | |
2657 The return value is a list of strings, suitable as arguments to\n\ | |
2658 set-face-font.\n\ | |
2659 \n\ | |
2660 Fonts Emacs can't use may or may not be excluded\n\ | |
2661 even if they match PATTERN and FACE.\n\ | |
2662 The optional fourth argument MAXIMUM sets a limit on how many\n\ | |
2663 fonts to match. The first MAXIMUM fonts are reported.\n\ | |
2664 The optional fifth argument WIDTH, if specified, is a number of columns\n\ | |
2665 occupied by a character of a font. In that case, return only fonts\n\ | |
2666 the WIDTH times as wide as FACE on FRAME.") | |
2667 (pattern, face, frame, maximum, width) | |
2668 Lisp_Object pattern, face, frame, maximum, width; | |
2669 { | |
2670 struct frame *f; | |
2671 int size; | |
2672 int maxnames; | |
2673 | |
2674 check_x (); | |
2675 CHECK_STRING (pattern, 0); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2676 |
24995 | 2677 if (NILP (maximum)) |
2678 maxnames = 2000; | |
2679 else | |
2680 { | |
2681 CHECK_NATNUM (maximum, 0); | |
2682 maxnames = XINT (maximum); | |
2683 } | |
2684 | |
2685 if (!NILP (width)) | |
2686 CHECK_NUMBER (width, 4); | |
2687 | |
2688 /* We can't simply call check_x_frame because this function may be | |
2689 called before any frame is created. */ | |
2690 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
|
2691 if (!FRAME_WINDOW_P (f)) |
24995 | 2692 { |
2693 /* Perhaps we have not yet created any frame. */ | |
2694 f = NULL; | |
2695 face = Qnil; | |
2696 } | |
2697 | |
2698 /* Determine the width standard for comparison with the fonts we find. */ | |
2699 | |
2700 if (NILP (face)) | |
2701 size = 0; | |
2702 else | |
2703 { | |
2704 /* This is of limited utility since it works with character | |
2705 widths. Keep it for compatibility. --gerd. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2706 int face_id = lookup_named_face (f, face, 0); |
24995 | 2707 struct face *face = FACE_FROM_ID (f, face_id); |
2708 | |
2709 if (face->font) | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2710 size = FONT_WIDTH (face->font); |
24995 | 2711 else |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2712 size = FONT_WIDTH (FRAME_FONT (f)); |
24995 | 2713 |
2714 if (!NILP (width)) | |
2715 size *= XINT (width); | |
2716 } | |
2717 | |
2718 { | |
2719 Lisp_Object args[2]; | |
2720 | |
2721 args[0] = x_list_fonts (f, pattern, size, maxnames); | |
2722 if (f == NULL) | |
2723 /* We don't have to check fontsets. */ | |
2724 return args[0]; | |
2725 args[1] = list_fontsets (f, pattern, size); | |
2726 return Fnconc (2, args); | |
2727 } | |
2728 } | |
2729 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2730 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 2731 |
2732 | |
2733 | |
2734 /*********************************************************************** | |
2735 Lisp Faces | |
2736 ***********************************************************************/ | |
2737 | |
2738 /* Access face attributes of face FACE, a Lisp vector. */ | |
2739 | |
2740 #define LFACE_FAMILY(LFACE) \ | |
2741 XVECTOR (LFACE)->contents[LFACE_FAMILY_INDEX] | |
2742 #define LFACE_HEIGHT(LFACE) \ | |
2743 XVECTOR (LFACE)->contents[LFACE_HEIGHT_INDEX] | |
2744 #define LFACE_WEIGHT(LFACE) \ | |
2745 XVECTOR (LFACE)->contents[LFACE_WEIGHT_INDEX] | |
2746 #define LFACE_SLANT(LFACE) \ | |
2747 XVECTOR (LFACE)->contents[LFACE_SLANT_INDEX] | |
2748 #define LFACE_UNDERLINE(LFACE) \ | |
2749 XVECTOR (LFACE)->contents[LFACE_UNDERLINE_INDEX] | |
2750 #define LFACE_INVERSE(LFACE) \ | |
2751 XVECTOR (LFACE)->contents[LFACE_INVERSE_INDEX] | |
2752 #define LFACE_FOREGROUND(LFACE) \ | |
2753 XVECTOR (LFACE)->contents[LFACE_FOREGROUND_INDEX] | |
2754 #define LFACE_BACKGROUND(LFACE) \ | |
2755 XVECTOR (LFACE)->contents[LFACE_BACKGROUND_INDEX] | |
2756 #define LFACE_STIPPLE(LFACE) \ | |
2757 XVECTOR (LFACE)->contents[LFACE_STIPPLE_INDEX] | |
2758 #define LFACE_SWIDTH(LFACE) \ | |
2759 XVECTOR (LFACE)->contents[LFACE_SWIDTH_INDEX] | |
2760 #define LFACE_OVERLINE(LFACE) \ | |
2761 XVECTOR (LFACE)->contents[LFACE_OVERLINE_INDEX] | |
2762 #define LFACE_STRIKE_THROUGH(LFACE) \ | |
2763 XVECTOR (LFACE)->contents[LFACE_STRIKE_THROUGH_INDEX] | |
2764 #define LFACE_BOX(LFACE) \ | |
2765 XVECTOR (LFACE)->contents[LFACE_BOX_INDEX] | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2766 #define LFACE_FONT(LFACE) \ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2767 XVECTOR (LFACE)->contents[LFACE_FONT_INDEX] |
31178 | 2768 #define LFACE_INHERIT(LFACE) \ |
2769 XVECTOR (LFACE)->contents[LFACE_INHERIT_INDEX] | |
24995 | 2770 |
2771 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size | |
2772 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */ | |
2773 | |
2774 #define LFACEP(LFACE) \ | |
2775 (VECTORP (LFACE) \ | |
2776 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \ | |
2777 && EQ (XVECTOR (LFACE)->contents[0], Qface)) | |
2778 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2779 |
24995 | 2780 #if GLYPH_DEBUG |
2781 | |
2782 /* Check consistency of Lisp face attribute vector ATTRS. */ | |
2783 | |
2784 static void | |
2785 check_lface_attrs (attrs) | |
2786 Lisp_Object *attrs; | |
2787 { | |
2788 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX]) | |
2789 || STRINGP (attrs[LFACE_FAMILY_INDEX])); | |
2790 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX]) | |
2791 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX])); | |
2792 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX]) | |
31178 | 2793 || INTEGERP (attrs[LFACE_HEIGHT_INDEX]) |
2794 || FLOATP (attrs[LFACE_HEIGHT_INDEX]) | |
2795 || FUNCTIONP (attrs[LFACE_HEIGHT_INDEX])); | |
24995 | 2796 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX]) |
2797 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX])); | |
2798 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX]) | |
2799 || SYMBOLP (attrs[LFACE_SLANT_INDEX])); | |
2800 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX]) | |
2801 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX]) | |
2802 || STRINGP (attrs[LFACE_UNDERLINE_INDEX])); | |
2803 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX]) | |
2804 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX]) | |
2805 || STRINGP (attrs[LFACE_OVERLINE_INDEX])); | |
2806 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2807 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2808 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX])); | |
2809 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX]) | |
2810 || SYMBOLP (attrs[LFACE_BOX_INDEX]) | |
2811 || STRINGP (attrs[LFACE_BOX_INDEX]) | |
2812 || INTEGERP (attrs[LFACE_BOX_INDEX]) | |
2813 || CONSP (attrs[LFACE_BOX_INDEX])); | |
2814 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX]) | |
2815 || SYMBOLP (attrs[LFACE_INVERSE_INDEX])); | |
2816 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX]) | |
2817 || STRINGP (attrs[LFACE_FOREGROUND_INDEX])); | |
2818 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX]) | |
2819 || STRINGP (attrs[LFACE_BACKGROUND_INDEX])); | |
31178 | 2820 xassert (UNSPECIFIEDP (attrs[LFACE_INHERIT_INDEX]) |
2821 || NILP (attrs[LFACE_INHERIT_INDEX]) | |
2822 || SYMBOLP (attrs[LFACE_INHERIT_INDEX]) | |
2823 || CONSP (attrs[LFACE_INHERIT_INDEX])); | |
24995 | 2824 #ifdef HAVE_WINDOW_SYSTEM |
2825 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX]) | |
2826 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX]) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
2827 || !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
|
2828 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
|
2829 || NILP (attrs[LFACE_FONT_INDEX]) |
2f636fd2f714
(check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
Gerd Moellmann <gerd@gnu.org>
parents:
28230
diff
changeset
|
2830 || STRINGP (attrs[LFACE_FONT_INDEX])); |
24995 | 2831 #endif |
2832 } | |
2833 | |
2834 | |
2835 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */ | |
2836 | |
2837 static void | |
2838 check_lface (lface) | |
2839 Lisp_Object lface; | |
2840 { | |
2841 if (!NILP (lface)) | |
2842 { | |
2843 xassert (LFACEP (lface)); | |
2844 check_lface_attrs (XVECTOR (lface)->contents); | |
2845 } | |
2846 } | |
2847 | |
2848 #else /* GLYPH_DEBUG == 0 */ | |
2849 | |
2850 #define check_lface_attrs(attrs) (void) 0 | |
2851 #define check_lface(lface) (void) 0 | |
2852 | |
2853 #endif /* GLYPH_DEBUG == 0 */ | |
2854 | |
2855 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2856 /* 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
|
2857 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
|
2858 return that face's name. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2859 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2860 static Lisp_Object |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2861 resolve_face_name (face_name) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2862 Lisp_Object face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2863 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2864 Lisp_Object aliased; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2865 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2866 if (STRINGP (face_name)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2867 face_name = intern (XSTRING (face_name)->data); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2868 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2869 for (;;) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2870 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2871 aliased = Fget (face_name, Qface_alias); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2872 if (NILP (aliased)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2873 break; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2874 else |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2875 face_name = aliased; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2876 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2877 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2878 return face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2879 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2880 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2881 |
24995 | 2882 /* Return the face definition of FACE_NAME on frame F. F null means |
2883 return the global definition. FACE_NAME may be a string or a | |
2884 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
|
2885 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
|
2886 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
|
2887 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
|
2888 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
|
2889 name. */ |
24995 | 2890 |
2891 static INLINE Lisp_Object | |
2892 lface_from_face_name (f, face_name, signal_p) | |
2893 struct frame *f; | |
2894 Lisp_Object face_name; | |
2895 int signal_p; | |
2896 { | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2897 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2898 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2899 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
|
2900 |
24995 | 2901 if (f) |
2902 lface = assq_no_quit (face_name, f->face_alist); | |
2903 else | |
2904 lface = assq_no_quit (face_name, Vface_new_frame_defaults); | |
2905 | |
2906 if (CONSP (lface)) | |
2907 lface = XCDR (lface); | |
2908 else if (signal_p) | |
2909 signal_error ("Invalid face", face_name); | |
2910 | |
2911 check_lface (lface); | |
2912 return lface; | |
2913 } | |
2914 | |
2915 | |
2916 /* Get face attributes of face FACE_NAME from frame-local faces on | |
2917 frame F. Store the resulting attributes in ATTRS which must point | |
2918 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P | |
2919 is non-zero, signal an error if FACE_NAME does not name a face. | |
2920 Otherwise, value is zero if FACE_NAME is not a face. */ | |
2921 | |
2922 static INLINE int | |
2923 get_lface_attributes (f, face_name, attrs, signal_p) | |
2924 struct frame *f; | |
2925 Lisp_Object face_name; | |
2926 Lisp_Object *attrs; | |
2927 int signal_p; | |
2928 { | |
2929 Lisp_Object lface; | |
2930 int success_p; | |
2931 | |
2932 lface = lface_from_face_name (f, face_name, signal_p); | |
2933 if (!NILP (lface)) | |
2934 { | |
2935 bcopy (XVECTOR (lface)->contents, attrs, | |
2936 LFACE_VECTOR_SIZE * sizeof *attrs); | |
2937 success_p = 1; | |
2938 } | |
2939 else | |
2940 success_p = 0; | |
2941 | |
2942 return success_p; | |
2943 } | |
2944 | |
2945 | |
2946 /* Non-zero if all attributes in face attribute vector ATTRS are | |
2947 specified, i.e. are non-nil. */ | |
2948 | |
2949 static int | |
2950 lface_fully_specified_p (attrs) | |
2951 Lisp_Object *attrs; | |
2952 { | |
2953 int i; | |
2954 | |
2955 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
31202
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
2956 if (i != LFACE_FONT_INDEX && i != LFACE_INHERIT_INDEX) |
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
2957 if (UNSPECIFIEDP (attrs[i])) |
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
2958 break; |
24995 | 2959 |
2960 return i == LFACE_VECTOR_SIZE; | |
2961 } | |
2962 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2963 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2964 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2965 /* 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
|
2966 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
|
2967 unspecified attributes of LFACE. The exception is `font' |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2968 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
|
2969 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2970 If FONTNAME is not available on frame F, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2971 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
|
2972 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
|
2973 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
|
2974 in LFACE and return 1. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2975 Otherwise, return 1. */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2976 |
24995 | 2977 static int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2978 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
|
2979 struct frame *f; |
24995 | 2980 Lisp_Object lface; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2981 Lisp_Object fontname; |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2982 int force_p, may_fail_p; |
24995 | 2983 { |
2984 struct font_name font; | |
2985 char *buffer; | |
2986 int pt; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2987 int have_xlfd_p; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2988 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2989 char *font_name = XSTRING (fontname)->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2990 struct font_info *font_info; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2991 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2992 /* 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
|
2993 fontset = fs_query_fontset (fontname, 0); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2994 if (fontset >= 0) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2995 font_name = XSTRING (fontset_ascii (fontset))->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2996 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2997 /* 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
|
2998 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
|
2999 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
|
3000 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
|
3001 later. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3002 BLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3003 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
|
3004 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3005 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3006 if (!font_info) |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3007 { |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3008 if (may_fail_p) |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3009 return 0; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3010 abort (); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3011 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3012 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3013 font.name = STRDUPA (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3014 have_xlfd_p = split_font_name (f, &font, 1); |
24995 | 3015 |
3016 /* 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
|
3017 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
|
3018 name conforming to XLFD, set normal values. */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3019 |
24995 | 3020 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface))) |
3021 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3022 Lisp_Object val; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3023 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3024 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3025 buffer = (char *) alloca (strlen (font.fields[XLFD_FAMILY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3026 + strlen (font.fields[XLFD_FOUNDRY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3027 + 2); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3028 sprintf (buffer, "%s-%s", font.fields[XLFD_FOUNDRY], |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3029 font.fields[XLFD_FAMILY]); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3030 val = build_string (buffer); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3031 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3032 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3033 val = build_string ("*"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3034 LFACE_FAMILY (lface) = val; |
24995 | 3035 } |
3036 | |
3037 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface))) | |
3038 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3039 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3040 pt = xlfd_point_size (f, &font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3041 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3042 pt = pixel_point_size (f, font_info->height * 10); |
24995 | 3043 xassert (pt > 0); |
3044 LFACE_HEIGHT (lface) = make_number (pt); | |
3045 } | |
3046 | |
3047 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3048 LFACE_SWIDTH (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3049 = have_xlfd_p ? xlfd_symbolic_swidth (&font) : Qnormal; |
24995 | 3050 |
3051 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3052 LFACE_WEIGHT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3053 = have_xlfd_p ? xlfd_symbolic_weight (&font) : Qnormal; |
24995 | 3054 |
3055 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3056 LFACE_SLANT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3057 = have_xlfd_p ? xlfd_symbolic_slant (&font) : Qnormal; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3058 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3059 LFACE_FONT (lface) = fontname; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3060 |
24995 | 3061 return 1; |
3062 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3063 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3064 |
3065 | |
31178 | 3066 /* Merges the face height FROM with the face height TO, and returns the |
3067 merged height. If FROM is an invalid height, then INVALID is | |
3068 returned instead. FROM may be a either an absolute face height or a | |
3069 `relative' height, and TO must be an absolute height. The returned | |
3070 value is always an absolute height. GCPRO is a lisp value that will | |
3071 be protected from garbage-collection if this function makes a call | |
3072 into lisp. */ | |
3073 | |
3074 Lisp_Object | |
3075 merge_face_heights (from, to, invalid, gcpro) | |
3076 Lisp_Object from, to, invalid, gcpro; | |
3077 { | |
3078 int result = 0; | |
3079 | |
3080 if (INTEGERP (from)) | |
3081 result = XINT (from); | |
3082 else if (NUMBERP (from)) | |
3083 result = XFLOATINT (from) * XINT (to); | |
3084 #if 0 /* Probably not so useful. */ | |
3085 else if (CONSP (from) && CONSP (XCDR (from))) | |
3086 { | |
3087 if (EQ (XCAR(from), Qplus) || EQ (XCAR(from), Qminus)) | |
3088 { | |
3089 if (INTEGERP (XCAR (XCDR (from)))) | |
3090 { | |
3091 int inc = XINT (XCAR (XCDR (from))); | |
3092 if (EQ (XCAR (from), Qminus)) | |
3093 inc = -inc; | |
3094 | |
3095 result = XFASTINT (to); | |
3096 if (result + inc > 0) | |
3097 /* Note that `underflows' don't mean FROM is invalid, so | |
3098 we just pin the result at TO if it would otherwise be | |
3099 negative or 0. */ | |
3100 result += inc; | |
3101 } | |
3102 } | |
3103 } | |
3104 #endif | |
3105 else if (FUNCTIONP (from)) | |
3106 { | |
3107 /* Call function with current height as argument. | |
3108 From is the new height. */ | |
3109 Lisp_Object args[2], height; | |
3110 struct gcpro gcpro1; | |
3111 | |
3112 GCPRO1 (gcpro); | |
3113 | |
3114 args[0] = from; | |
3115 args[1] = to; | |
3116 height = call_function (2, args); | |
3117 | |
3118 UNGCPRO; | |
3119 | |
3120 if (NUMBERP (height)) | |
3121 result = XFLOATINT (height); | |
3122 } | |
3123 | |
3124 if (result > 0) | |
3125 return make_number (result); | |
3126 else | |
3127 return invalid; | |
3128 } | |
3129 | |
3130 | |
31259
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3131 /* Default any unspecified face attributes in LFACE from DEFAULTS. |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3132 Unlike merge_face_vectors, below, this function simply fills in any |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3133 unspecified attributes in LFACE from the those in DEFAULTS, and will |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3134 not do face inheritance or make relative attributes absolute. */ |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3135 |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3136 static INLINE void |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3137 default_face_vector (lface, defaults) |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3138 Lisp_Object *lface, *defaults; |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3139 { |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3140 int i; |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3141 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3142 if (UNSPECIFIEDP (lface[i])) |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3143 lface[i] = defaults[i]; |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3144 } |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3145 |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3146 |
31178 | 3147 /* Merge two Lisp face attribute vectors on frame F, FROM and TO, and |
31259
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3148 store the resulting attributes in TO, which must be already be |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3149 completely specified and contain only absolute attributes. Every |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3150 specified attribute of FROM overrides the corresponding attribute of |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3151 TO; relative attributes in FROM are merged with the absolute value in |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3152 TO and replace it. CYCLE_CHECK is used internally to detect loops in |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3153 face inheritance; it should be Qnil when called from other places. */ |
24995 | 3154 |
3155 static INLINE void | |
31178 | 3156 merge_face_vectors (f, from, to, cycle_check) |
3157 struct frame *f; | |
24995 | 3158 Lisp_Object *from, *to; |
31178 | 3159 Lisp_Object cycle_check; |
24995 | 3160 { |
3161 int i; | |
31178 | 3162 |
3163 /* If FROM inherits from some other faces, merge their attributes into | |
3164 TO before merging FROM's direct attributes. Note that an :inherit | |
3165 attribute of `unspecified' is the same as one of nil; we never | |
3166 merge :inherit attributes, so nil is more correct, but lots of | |
3167 other code uses `unspecified' as a generic value for face attributes. */ | |
3168 if (!UNSPECIFIEDP (from[LFACE_INHERIT_INDEX]) | |
3169 && !NILP (from[LFACE_INHERIT_INDEX])) | |
3170 merge_face_inheritance (f, from[LFACE_INHERIT_INDEX], to, cycle_check); | |
3171 | |
31221 | 3172 /* If TO specifies a :font attribute, and FROM specifies some |
3173 font-related attribute, we need to clear TO's :font attribute | |
3174 (because it will be inconsistent with whatever FROM specifies, and | |
3175 FROM takes precedence). */ | |
3176 if (!NILP (to[LFACE_FONT_INDEX]) | |
3177 && (!UNSPECIFIEDP (from[LFACE_FAMILY_INDEX]) | |
3178 || !UNSPECIFIEDP (from[LFACE_HEIGHT_INDEX]) | |
3179 || !UNSPECIFIEDP (from[LFACE_WEIGHT_INDEX]) | |
3180 || !UNSPECIFIEDP (from[LFACE_SLANT_INDEX]) | |
3181 || !UNSPECIFIEDP (from[LFACE_SWIDTH_INDEX]))) | |
3182 to[LFACE_FONT_INDEX] = Qnil; | |
3183 | |
24995 | 3184 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) |
3185 if (!UNSPECIFIEDP (from[i])) | |
31178 | 3186 if (i == LFACE_HEIGHT_INDEX && !INTEGERP (from[i])) |
3187 to[i] = merge_face_heights (from[i], to[i], to[i], cycle_check); | |
3188 else | |
3189 to[i] = from[i]; | |
3190 | |
3191 /* TO is always an absolute face, which should inherit from nothing. | |
3192 We blindly copy the :inherit attribute above and fix it up here. */ | |
3193 to[LFACE_INHERIT_INDEX] = Qnil; | |
3194 } | |
3195 | |
31202
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
3196 |
31178 | 3197 /* Checks the `cycle check' variable CHECK to see if it indicates that |
3198 EL is part of a cycle; CHECK must be either Qnil or a value returned | |
3199 by an earlier use of CYCLE_CHECK. SUSPICIOUS is the number of | |
3200 elements after which a cycle might be suspected; after that many | |
3201 elements, this macro begins consing in order to keep more precise | |
3202 track of elements. | |
3203 | |
3204 Returns NIL if a cycle was detected, otherwise a new value for CHECK | |
3205 that includes EL. | |
3206 | |
3207 CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so | |
3208 the caller should make sure that's ok. */ | |
31202
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
3209 |
31178 | 3210 #define CYCLE_CHECK(check, el, suspicious) \ |
3211 (NILP (check) \ | |
3212 ? make_number (0) \ | |
3213 : INTEGERP (check) \ | |
3214 ? (XFASTINT (check) < (suspicious) \ | |
3215 ? make_number (XFASTINT (check) + 1) \ | |
3216 : Fcons (el, Qnil)) \ | |
3217 : Fmemq ((el), (check)) \ | |
3218 ? Qnil \ | |
3219 : Fcons ((el), (check))) | |
3220 | |
31221 | 3221 |
3222 /* Merge face attributes from the face on frame F whose name is | |
3223 INHERITS, into the vector of face attributes TO; INHERITS may also be | |
3224 a list of face names, in which case they are applied in order. | |
3225 CYCLE_CHECK is used to detect loops in face inheritance. | |
3226 Returns true if any of the inherited attributes are `font-related'. */ | |
3227 | |
31178 | 3228 static void |
3229 merge_face_inheritance (f, inherit, to, cycle_check) | |
3230 struct frame *f; | |
3231 Lisp_Object inherit; | |
3232 Lisp_Object *to; | |
3233 Lisp_Object cycle_check; | |
3234 { | |
3235 if (SYMBOLP (inherit) && !EQ (inherit, Qunspecified)) | |
3236 /* Inherit from the named face INHERIT. */ | |
3237 { | |
3238 Lisp_Object lface; | |
3239 | |
3240 /* Make sure we're not in an inheritance loop. */ | |
3241 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15); | |
3242 if (NILP (cycle_check)) | |
3243 /* Cycle detected, ignore any further inheritance. */ | |
3244 return; | |
3245 | |
3246 lface = lface_from_face_name (f, inherit, 0); | |
3247 if (!NILP (lface)) | |
3248 merge_face_vectors (f, XVECTOR (lface)->contents, to, cycle_check); | |
3249 } | |
3250 else if (CONSP (inherit)) | |
3251 /* Handle a list of inherited faces by calling ourselves recursively | |
3252 on each element. Note that we only do so for symbol elements, so | |
3253 it's not possible to infinitely recurse. */ | |
3254 { | |
3255 while (CONSP (inherit)) | |
3256 { | |
3257 if (SYMBOLP (XCAR (inherit))) | |
3258 merge_face_inheritance (f, XCAR (inherit), to, cycle_check); | |
3259 | |
3260 /* Check for a circular inheritance list. */ | |
3261 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15); | |
3262 if (NILP (cycle_check)) | |
3263 /* Cycle detected. */ | |
3264 break; | |
3265 | |
3266 inherit = XCDR (inherit); | |
3267 } | |
3268 } | |
24995 | 3269 } |
3270 | |
3271 | |
3272 /* Given a Lisp face attribute vector TO and a Lisp object PROP that | |
3273 is a face property, determine the resulting face attributes on | |
3274 frame F, and store them in TO. PROP may be a single face | |
3275 specification or a list of such specifications. Each face | |
3276 specification can be | |
3277 | |
3278 1. A symbol or string naming a Lisp face. | |
3279 | |
3280 2. A property list of the form (KEYWORD VALUE ...) where each | |
3281 KEYWORD is a face attribute name, and value is an appropriate value | |
3282 for that attribute. | |
3283 | |
3284 3. Conses or the form (FOREGROUND-COLOR . COLOR) or | |
3285 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is | |
3286 for compatibility with 20.2. | |
3287 | |
3288 Face specifications earlier in lists take precedence over later | |
3289 specifications. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3290 |
24995 | 3291 static void |
3292 merge_face_vector_with_property (f, to, prop) | |
3293 struct frame *f; | |
3294 Lisp_Object *to; | |
3295 Lisp_Object prop; | |
3296 { | |
3297 if (CONSP (prop)) | |
3298 { | |
3299 Lisp_Object first = XCAR (prop); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3300 |
24995 | 3301 if (EQ (first, Qforeground_color) |
3302 || EQ (first, Qbackground_color)) | |
3303 { | |
3304 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR | |
3305 . COLOR). COLOR must be a string. */ | |
3306 Lisp_Object color_name = XCDR (prop); | |
3307 Lisp_Object color = first; | |
3308 | |
3309 if (STRINGP (color_name)) | |
3310 { | |
3311 if (EQ (color, Qforeground_color)) | |
3312 to[LFACE_FOREGROUND_INDEX] = color_name; | |
3313 else | |
3314 to[LFACE_BACKGROUND_INDEX] = color_name; | |
3315 } | |
3316 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3317 add_to_log ("Invalid face color", color_name, Qnil); |
24995 | 3318 } |
3319 else if (SYMBOLP (first) | |
3320 && *XSYMBOL (first)->name->data == ':') | |
3321 { | |
3322 /* Assume this is the property list form. */ | |
3323 while (CONSP (prop) && CONSP (XCDR (prop))) | |
3324 { | |
3325 Lisp_Object keyword = XCAR (prop); | |
3326 Lisp_Object value = XCAR (XCDR (prop)); | |
3327 | |
3328 if (EQ (keyword, QCfamily)) | |
3329 { | |
3330 if (STRINGP (value)) | |
3331 to[LFACE_FAMILY_INDEX] = value; | |
3332 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3333 add_to_log ("Invalid face font family", value, Qnil); |
24995 | 3334 } |
3335 else if (EQ (keyword, QCheight)) | |
3336 { | |
31178 | 3337 Lisp_Object new_height = |
3338 merge_face_heights (value, to[LFACE_HEIGHT_INDEX], | |
3339 Qnil, Qnil); | |
3340 | |
3341 if (NILP (new_height)) | |
3342 add_to_log ("Invalid face font height", value, Qnil); | |
24995 | 3343 else |
31178 | 3344 to[LFACE_HEIGHT_INDEX] = new_height; |
24995 | 3345 } |
3346 else if (EQ (keyword, QCweight)) | |
3347 { | |
3348 if (SYMBOLP (value) | |
3349 && face_numeric_weight (value) >= 0) | |
3350 to[LFACE_WEIGHT_INDEX] = value; | |
3351 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3352 add_to_log ("Invalid face weight", value, Qnil); |
24995 | 3353 } |
3354 else if (EQ (keyword, QCslant)) | |
3355 { | |
3356 if (SYMBOLP (value) | |
3357 && face_numeric_slant (value) >= 0) | |
3358 to[LFACE_SLANT_INDEX] = value; | |
3359 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3360 add_to_log ("Invalid face slant", value, Qnil); |
24995 | 3361 } |
3362 else if (EQ (keyword, QCunderline)) | |
3363 { | |
3364 if (EQ (value, Qt) | |
3365 || NILP (value) | |
3366 || STRINGP (value)) | |
3367 to[LFACE_UNDERLINE_INDEX] = value; | |
3368 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3369 add_to_log ("Invalid face underline", value, Qnil); |
24995 | 3370 } |
3371 else if (EQ (keyword, QCoverline)) | |
3372 { | |
3373 if (EQ (value, Qt) | |
3374 || NILP (value) | |
3375 || STRINGP (value)) | |
3376 to[LFACE_OVERLINE_INDEX] = value; | |
3377 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3378 add_to_log ("Invalid face overline", value, Qnil); |
24995 | 3379 } |
3380 else if (EQ (keyword, QCstrike_through)) | |
3381 { | |
3382 if (EQ (value, Qt) | |
3383 || NILP (value) | |
3384 || STRINGP (value)) | |
3385 to[LFACE_STRIKE_THROUGH_INDEX] = value; | |
3386 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3387 add_to_log ("Invalid face strike-through", value, Qnil); |
24995 | 3388 } |
3389 else if (EQ (keyword, QCbox)) | |
3390 { | |
3391 if (EQ (value, Qt)) | |
3392 value = make_number (1); | |
3393 if (INTEGERP (value) | |
3394 || STRINGP (value) | |
3395 || CONSP (value) | |
3396 || NILP (value)) | |
3397 to[LFACE_BOX_INDEX] = value; | |
3398 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3399 add_to_log ("Invalid face box", value, Qnil); |
24995 | 3400 } |
3401 else if (EQ (keyword, QCinverse_video) | |
3402 || EQ (keyword, QCreverse_video)) | |
3403 { | |
3404 if (EQ (value, Qt) || NILP (value)) | |
3405 to[LFACE_INVERSE_INDEX] = value; | |
3406 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3407 add_to_log ("Invalid face inverse-video", value, Qnil); |
24995 | 3408 } |
3409 else if (EQ (keyword, QCforeground)) | |
3410 { | |
3411 if (STRINGP (value)) | |
3412 to[LFACE_FOREGROUND_INDEX] = value; | |
3413 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3414 add_to_log ("Invalid face foreground", value, Qnil); |
24995 | 3415 } |
3416 else if (EQ (keyword, QCbackground)) | |
3417 { | |
3418 if (STRINGP (value)) | |
3419 to[LFACE_BACKGROUND_INDEX] = value; | |
3420 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3421 add_to_log ("Invalid face background", value, Qnil); |
24995 | 3422 } |
3423 else if (EQ (keyword, QCstipple)) | |
3424 { | |
3425 #ifdef HAVE_X_WINDOWS | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3426 Lisp_Object pixmap_p = Fbitmap_spec_p (value); |
24995 | 3427 if (!NILP (pixmap_p)) |
3428 to[LFACE_STIPPLE_INDEX] = value; | |
3429 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3430 add_to_log ("Invalid face stipple", value, Qnil); |
24995 | 3431 #endif |
3432 } | |
3433 else if (EQ (keyword, QCwidth)) | |
3434 { | |
3435 if (SYMBOLP (value) | |
3436 && face_numeric_swidth (value) >= 0) | |
3437 to[LFACE_SWIDTH_INDEX] = value; | |
3438 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3439 add_to_log ("Invalid face width", value, Qnil); |
24995 | 3440 } |
31178 | 3441 else if (EQ (keyword, QCinherit)) |
3442 { | |
3443 if (SYMBOLP (value)) | |
3444 to[LFACE_INHERIT_INDEX] = value; | |
3445 else | |
3446 { | |
3447 Lisp_Object tail; | |
3448 for (tail = value; CONSP (tail); tail = XCDR (tail)) | |
3449 if (!SYMBOLP (XCAR (tail))) | |
3450 break; | |
3451 if (NILP (tail)) | |
3452 to[LFACE_INHERIT_INDEX] = value; | |
3453 else | |
3454 add_to_log ("Invalid face inherit", value, Qnil); | |
3455 } | |
3456 } | |
24995 | 3457 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3458 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
|
3459 keyword, Qnil); |
24995 | 3460 |
3461 prop = XCDR (XCDR (prop)); | |
3462 } | |
3463 } | |
3464 else | |
3465 { | |
3466 /* This is a list of face specs. Specifications at the | |
3467 beginning of the list take precedence over later | |
3468 specifications, so we have to merge starting with the | |
3469 last specification. */ | |
3470 Lisp_Object next = XCDR (prop); | |
3471 if (!NILP (next)) | |
3472 merge_face_vector_with_property (f, to, next); | |
3473 merge_face_vector_with_property (f, to, first); | |
3474 } | |
3475 } | |
3476 else | |
3477 { | |
3478 /* PROP ought to be a face name. */ | |
3479 Lisp_Object lface = lface_from_face_name (f, prop, 0); | |
3480 if (NILP (lface)) | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3481 add_to_log ("Invalid face text property value: %s", prop, Qnil); |
24995 | 3482 else |
31178 | 3483 merge_face_vectors (f, XVECTOR (lface)->contents, to, Qnil); |
24995 | 3484 } |
3485 } | |
3486 | |
3487 | |
3488 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face, | |
3489 Sinternal_make_lisp_face, 1, 2, 0, | |
3490 "Make FACE, a symbol, a Lisp face with all attributes nil.\n\ | |
3491 If FACE was not known as a face before, create a new one.\n\ | |
3492 If optional argument FRAME is specified, make a frame-local face\n\ | |
3493 for that frame. Otherwise operate on the global face definition.\n\ | |
3494 Value is a vector of face attributes.") | |
3495 (face, frame) | |
3496 Lisp_Object face, frame; | |
3497 { | |
3498 Lisp_Object global_lface, lface; | |
3499 struct frame *f; | |
3500 int i; | |
3501 | |
3502 CHECK_SYMBOL (face, 0); | |
3503 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
|
3504 |
24995 | 3505 if (!NILP (frame)) |
3506 { | |
3507 CHECK_LIVE_FRAME (frame, 1); | |
3508 f = XFRAME (frame); | |
3509 lface = lface_from_face_name (f, face, 0); | |
3510 } | |
3511 else | |
3512 f = NULL, lface = Qnil; | |
3513 | |
3514 /* Add a global definition if there is none. */ | |
3515 if (NILP (global_lface)) | |
3516 { | |
3517 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3518 Qunspecified); | |
3519 XVECTOR (global_lface)->contents[0] = Qface; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3520 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface), |
24995 | 3521 Vface_new_frame_defaults); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3522 |
24995 | 3523 /* Assign the new Lisp face a unique ID. The mapping from Lisp |
3524 face id to Lisp face is given by the vector lface_id_to_name. | |
3525 The mapping from Lisp face to Lisp face id is given by the | |
3526 property `face' of the Lisp face name. */ | |
3527 if (next_lface_id == lface_id_to_name_size) | |
3528 { | |
3529 int new_size = max (50, 2 * lface_id_to_name_size); | |
3530 int sz = new_size * sizeof *lface_id_to_name; | |
3531 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz); | |
3532 lface_id_to_name_size = new_size; | |
3533 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3534 |
24995 | 3535 lface_id_to_name[next_lface_id] = face; |
3536 Fput (face, Qface, make_number (next_lface_id)); | |
3537 ++next_lface_id; | |
3538 } | |
3539 else if (f == NULL) | |
3540 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3541 XVECTOR (global_lface)->contents[i] = Qunspecified; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3542 |
24995 | 3543 /* Add a frame-local definition. */ |
3544 if (f) | |
3545 { | |
3546 if (NILP (lface)) | |
3547 { | |
3548 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3549 Qunspecified); | |
3550 XVECTOR (lface)->contents[0] = Qface; | |
3551 f->face_alist = Fcons (Fcons (face, lface), f->face_alist); | |
3552 } | |
3553 else | |
3554 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3555 XVECTOR (lface)->contents[i] = Qunspecified; | |
3556 } | |
3557 else | |
3558 lface = global_lface; | |
3559 | |
3560 xassert (LFACEP (lface)); | |
3561 check_lface (lface); | |
3562 return lface; | |
3563 } | |
3564 | |
3565 | |
3566 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p, | |
3567 Sinternal_lisp_face_p, 1, 2, 0, | |
3568 "Return non-nil if FACE names a face.\n\ | |
3569 If optional second parameter FRAME is non-nil, check for the\n\ | |
3570 existence of a frame-local face with name FACE on that frame.\n\ | |
3571 Otherwise check for the existence of a global face.") | |
3572 (face, frame) | |
3573 Lisp_Object face, frame; | |
3574 { | |
3575 Lisp_Object lface; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3576 |
24995 | 3577 if (!NILP (frame)) |
3578 { | |
3579 CHECK_LIVE_FRAME (frame, 1); | |
3580 lface = lface_from_face_name (XFRAME (frame), face, 0); | |
3581 } | |
3582 else | |
3583 lface = lface_from_face_name (NULL, face, 0); | |
3584 | |
3585 return lface; | |
3586 } | |
3587 | |
3588 | |
3589 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face, | |
3590 Sinternal_copy_lisp_face, 4, 4, 0, | |
3591 "Copy face FROM to TO.\n\ | |
3592 If FRAME it t, copy the global face definition of FROM to the\n\ | |
3593 global face definition of TO. Otherwise, copy the frame-local\n\ | |
3594 definition of FROM on FRAME to the frame-local definition of TO\n\ | |
3595 on NEW-FRAME, or FRAME if NEW-FRAME is nil.\n\ | |
3596 \n\ | |
3597 Value is TO.") | |
3598 (from, to, frame, new_frame) | |
3599 Lisp_Object from, to, frame, new_frame; | |
3600 { | |
3601 Lisp_Object lface, copy; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3602 |
24995 | 3603 CHECK_SYMBOL (from, 0); |
3604 CHECK_SYMBOL (to, 1); | |
3605 if (NILP (new_frame)) | |
3606 new_frame = frame; | |
3607 | |
3608 if (EQ (frame, Qt)) | |
3609 { | |
3610 /* Copy global definition of FROM. We don't make copies of | |
3611 strings etc. because 20.2 didn't do it either. */ | |
3612 lface = lface_from_face_name (NULL, from, 1); | |
3613 copy = Finternal_make_lisp_face (to, Qnil); | |
3614 } | |
3615 else | |
3616 { | |
3617 /* Copy frame-local definition of FROM. */ | |
3618 CHECK_LIVE_FRAME (frame, 2); | |
3619 CHECK_LIVE_FRAME (new_frame, 3); | |
3620 lface = lface_from_face_name (XFRAME (frame), from, 1); | |
3621 copy = Finternal_make_lisp_face (to, new_frame); | |
3622 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3623 |
24995 | 3624 bcopy (XVECTOR (lface)->contents, XVECTOR (copy)->contents, |
3625 LFACE_VECTOR_SIZE * sizeof (Lisp_Object)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3626 |
24995 | 3627 return to; |
3628 } | |
3629 | |
3630 | |
3631 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute, | |
3632 Sinternal_set_lisp_face_attribute, 3, 4, 0, | |
3633 "Set attribute ATTR of FACE to VALUE.\n\ | |
3634 If optional argument FRAME is given, set the face attribute of face FACE\n\ | |
3635 on that frame. If FRAME is t, set the attribute of the default for face\n\ | |
3636 FACE (for new frames). If FRAME is omitted or nil, use the selected\n\ | |
3637 frame.") | |
3638 (face, attr, value, frame) | |
3639 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
|
3640 { |
24995 | 3641 Lisp_Object lface; |
3642 Lisp_Object old_value = Qnil; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3643 /* Set 1 if ATTR is QCfont. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3644 int font_attr_p = 0; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3645 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */ |
24995 | 3646 int font_related_attr_p = 0; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3647 |
24995 | 3648 CHECK_SYMBOL (face, 0); |
3649 CHECK_SYMBOL (attr, 1); | |
3650 | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3651 face = resolve_face_name (face); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3652 |
24995 | 3653 /* Set lface to the Lisp attribute vector of FACE. */ |
3654 if (EQ (frame, Qt)) | |
3655 lface = lface_from_face_name (NULL, face, 1); | |
3656 else | |
3657 { | |
3658 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3659 frame = selected_frame; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3660 |
24995 | 3661 CHECK_LIVE_FRAME (frame, 3); |
3662 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
|
3663 |
24995 | 3664 /* If a frame-local face doesn't exist yet, create one. */ |
3665 if (NILP (lface)) | |
3666 lface = Finternal_make_lisp_face (face, frame); | |
3667 } | |
3668 | |
3669 if (EQ (attr, QCfamily)) | |
3670 { | |
3671 if (!UNSPECIFIEDP (value)) | |
3672 { | |
3673 CHECK_STRING (value, 3); | |
3674 if (XSTRING (value)->size == 0) | |
3675 signal_error ("Invalid face family", value); | |
3676 } | |
3677 old_value = LFACE_FAMILY (lface); | |
3678 LFACE_FAMILY (lface) = value; | |
3679 font_related_attr_p = 1; | |
3680 } | |
3681 else if (EQ (attr, QCheight)) | |
3682 { | |
3683 if (!UNSPECIFIEDP (value)) | |
3684 { | |
31178 | 3685 Lisp_Object test = Qnil; |
3686 | |
3687 if (!EQ (face, Qdefault)) | |
3688 /* The default face must have an absolute size, otherwise, we do | |
3689 a test merge with a random height to see if VALUE's ok. */ | |
3690 test = merge_face_heights (value, make_number(10), Qnil, Qnil); | |
3691 | |
3692 if (!INTEGERP(test) || XINT(test) <= 0) | |
24995 | 3693 signal_error ("Invalid face height", value); |
3694 } | |
31178 | 3695 |
24995 | 3696 old_value = LFACE_HEIGHT (lface); |
3697 LFACE_HEIGHT (lface) = value; | |
3698 font_related_attr_p = 1; | |
3699 } | |
3700 else if (EQ (attr, QCweight)) | |
3701 { | |
3702 if (!UNSPECIFIEDP (value)) | |
3703 { | |
3704 CHECK_SYMBOL (value, 3); | |
3705 if (face_numeric_weight (value) < 0) | |
3706 signal_error ("Invalid face weight", value); | |
3707 } | |
3708 old_value = LFACE_WEIGHT (lface); | |
3709 LFACE_WEIGHT (lface) = value; | |
3710 font_related_attr_p = 1; | |
3711 } | |
3712 else if (EQ (attr, QCslant)) | |
3713 { | |
3714 if (!UNSPECIFIEDP (value)) | |
3715 { | |
3716 CHECK_SYMBOL (value, 3); | |
3717 if (face_numeric_slant (value) < 0) | |
3718 signal_error ("Invalid face slant", value); | |
3719 } | |
3720 old_value = LFACE_SLANT (lface); | |
3721 LFACE_SLANT (lface) = value; | |
3722 font_related_attr_p = 1; | |
3723 } | |
3724 else if (EQ (attr, QCunderline)) | |
3725 { | |
3726 if (!UNSPECIFIEDP (value)) | |
3727 if ((SYMBOLP (value) | |
3728 && !EQ (value, Qt) | |
3729 && !EQ (value, Qnil)) | |
3730 /* Underline color. */ | |
3731 || (STRINGP (value) | |
3732 && XSTRING (value)->size == 0)) | |
3733 signal_error ("Invalid face underline", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3734 |
24995 | 3735 old_value = LFACE_UNDERLINE (lface); |
3736 LFACE_UNDERLINE (lface) = value; | |
3737 } | |
3738 else if (EQ (attr, QCoverline)) | |
3739 { | |
3740 if (!UNSPECIFIEDP (value)) | |
3741 if ((SYMBOLP (value) | |
3742 && !EQ (value, Qt) | |
3743 && !EQ (value, Qnil)) | |
3744 /* Overline color. */ | |
3745 || (STRINGP (value) | |
3746 && XSTRING (value)->size == 0)) | |
3747 signal_error ("Invalid face overline", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3748 |
24995 | 3749 old_value = LFACE_OVERLINE (lface); |
3750 LFACE_OVERLINE (lface) = value; | |
3751 } | |
3752 else if (EQ (attr, QCstrike_through)) | |
3753 { | |
3754 if (!UNSPECIFIEDP (value)) | |
3755 if ((SYMBOLP (value) | |
3756 && !EQ (value, Qt) | |
3757 && !EQ (value, Qnil)) | |
3758 /* Strike-through color. */ | |
3759 || (STRINGP (value) | |
3760 && XSTRING (value)->size == 0)) | |
3761 signal_error ("Invalid face strike-through", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3762 |
24995 | 3763 old_value = LFACE_STRIKE_THROUGH (lface); |
3764 LFACE_STRIKE_THROUGH (lface) = value; | |
3765 } | |
3766 else if (EQ (attr, QCbox)) | |
3767 { | |
3768 int valid_p; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3769 |
24995 | 3770 /* Allow t meaning a simple box of width 1 in foreground color |
3771 of the face. */ | |
3772 if (EQ (value, Qt)) | |
3773 value = make_number (1); | |
3774 | |
3775 if (UNSPECIFIEDP (value)) | |
3776 valid_p = 1; | |
3777 else if (NILP (value)) | |
3778 valid_p = 1; | |
3779 else if (INTEGERP (value)) | |
3780 valid_p = XINT (value) > 0; | |
3781 else if (STRINGP (value)) | |
3782 valid_p = XSTRING (value)->size > 0; | |
3783 else if (CONSP (value)) | |
3784 { | |
3785 Lisp_Object tem; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3786 |
24995 | 3787 tem = value; |
3788 while (CONSP (tem)) | |
3789 { | |
3790 Lisp_Object k, v; | |
3791 | |
3792 k = XCAR (tem); | |
3793 tem = XCDR (tem); | |
3794 if (!CONSP (tem)) | |
3795 break; | |
3796 v = XCAR (tem); | |
3797 tem = XCDR (tem); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3798 |
24995 | 3799 if (EQ (k, QCline_width)) |
3800 { | |
3801 if (!INTEGERP (v) || XINT (v) <= 0) | |
3802 break; | |
3803 } | |
3804 else if (EQ (k, QCcolor)) | |
3805 { | |
3806 if (!STRINGP (v) || XSTRING (v)->size == 0) | |
3807 break; | |
3808 } | |
3809 else if (EQ (k, QCstyle)) | |
3810 { | |
3811 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button)) | |
3812 break; | |
3813 } | |
3814 else | |
3815 break; | |
3816 } | |
3817 | |
3818 valid_p = NILP (tem); | |
3819 } | |
3820 else | |
3821 valid_p = 0; | |
3822 | |
3823 if (!valid_p) | |
3824 signal_error ("Invalid face box", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3825 |
24995 | 3826 old_value = LFACE_BOX (lface); |
3827 LFACE_BOX (lface) = value; | |
3828 } | |
3829 else if (EQ (attr, QCinverse_video) | |
3830 || EQ (attr, QCreverse_video)) | |
3831 { | |
3832 if (!UNSPECIFIEDP (value)) | |
3833 { | |
3834 CHECK_SYMBOL (value, 3); | |
3835 if (!EQ (value, Qt) && !NILP (value)) | |
3836 signal_error ("Invalid inverse-video face attribute value", value); | |
3837 } | |
3838 old_value = LFACE_INVERSE (lface); | |
3839 LFACE_INVERSE (lface) = value; | |
3840 } | |
3841 else if (EQ (attr, QCforeground)) | |
3842 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3843 if (!UNSPECIFIEDP (value)) |
24995 | 3844 { |
3845 /* Don't check for valid color names here because it depends | |
3846 on the frame (display) whether the color will be valid | |
3847 when the face is realized. */ | |
3848 CHECK_STRING (value, 3); | |
3849 if (XSTRING (value)->size == 0) | |
3850 signal_error ("Empty foreground color value", value); | |
3851 } | |
3852 old_value = LFACE_FOREGROUND (lface); | |
3853 LFACE_FOREGROUND (lface) = value; | |
3854 } | |
3855 else if (EQ (attr, QCbackground)) | |
3856 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3857 if (!UNSPECIFIEDP (value)) |
24995 | 3858 { |
3859 /* Don't check for valid color names here because it depends | |
3860 on the frame (display) whether the color will be valid | |
3861 when the face is realized. */ | |
3862 CHECK_STRING (value, 3); | |
3863 if (XSTRING (value)->size == 0) | |
3864 signal_error ("Empty background color value", value); | |
3865 } | |
3866 old_value = LFACE_BACKGROUND (lface); | |
3867 LFACE_BACKGROUND (lface) = value; | |
3868 } | |
3869 else if (EQ (attr, QCstipple)) | |
3870 { | |
3871 #ifdef HAVE_X_WINDOWS | |
3872 if (!UNSPECIFIEDP (value) | |
3873 && !NILP (value) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3874 && NILP (Fbitmap_spec_p (value))) |
24995 | 3875 signal_error ("Invalid stipple attribute", value); |
3876 old_value = LFACE_STIPPLE (lface); | |
3877 LFACE_STIPPLE (lface) = value; | |
3878 #endif /* HAVE_X_WINDOWS */ | |
3879 } | |
3880 else if (EQ (attr, QCwidth)) | |
3881 { | |
3882 if (!UNSPECIFIEDP (value)) | |
3883 { | |
3884 CHECK_SYMBOL (value, 3); | |
3885 if (face_numeric_swidth (value) < 0) | |
3886 signal_error ("Invalid face width", value); | |
3887 } | |
3888 old_value = LFACE_SWIDTH (lface); | |
3889 LFACE_SWIDTH (lface) = value; | |
3890 font_related_attr_p = 1; | |
3891 } | |
3892 else if (EQ (attr, QCfont)) | |
3893 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3894 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3895 /* Set font-related attributes of the Lisp face from an |
3896 XLFD font name. */ | |
3897 struct frame *f; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3898 Lisp_Object tmp; |
24995 | 3899 |
3900 CHECK_STRING (value, 3); | |
3901 if (EQ (frame, Qt)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3902 f = SELECTED_FRAME (); |
24995 | 3903 else |
3904 f = check_x_frame (frame); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3905 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3906 /* 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
|
3907 a case, use the base fontset name. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3908 tmp = Fquery_fontset (value, Qnil); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3909 if (!NILP (tmp)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3910 value = tmp; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3911 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3912 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
|
3913 signal_error ("Invalid font or fontset name", value); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3914 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3915 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
|
3916 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3917 } |
31178 | 3918 else if (EQ (attr, QCinherit)) |
3919 { | |
3920 Lisp_Object tail; | |
3921 if (SYMBOLP (value)) | |
3922 tail = Qnil; | |
3923 else | |
3924 for (tail = value; CONSP (tail); tail = XCDR (tail)) | |
3925 if (!SYMBOLP (XCAR (tail))) | |
3926 break; | |
3927 if (NILP (tail)) | |
3928 LFACE_INHERIT (lface) = value; | |
3929 else | |
31202
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
3930 signal_error ("Invalid face inheritance", value); |
31178 | 3931 } |
24995 | 3932 else if (EQ (attr, QCbold)) |
3933 { | |
3934 old_value = LFACE_WEIGHT (lface); | |
3935 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold; | |
3936 font_related_attr_p = 1; | |
3937 } | |
3938 else if (EQ (attr, QCitalic)) | |
3939 { | |
3940 old_value = LFACE_SLANT (lface); | |
3941 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic; | |
3942 font_related_attr_p = 1; | |
3943 } | |
3944 else | |
3945 signal_error ("Invalid face attribute name", attr); | |
3946 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3947 if (font_related_attr_p |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3948 && !UNSPECIFIEDP (value)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3949 /* 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
|
3950 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
|
3951 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
|
3952 selection mechanism doesn't use it. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3953 LFACE_FONT (lface) = Qnil; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3954 |
24995 | 3955 /* Changing a named face means that all realized faces depending on |
3956 that face are invalid. Since we cannot tell which realized faces | |
3957 depend on the face, make sure they are all removed. This is done | |
3958 by incrementing face_change_count. The next call to | |
3959 init_iterator will then free realized faces. */ | |
3960 if (!EQ (frame, Qt) | |
3961 && (EQ (attr, QCfont) | |
3962 || NILP (Fequal (old_value, value)))) | |
3963 { | |
3964 ++face_change_count; | |
3965 ++windows_or_buffers_changed; | |
3966 } | |
3967 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3968 #ifdef HAVE_WINDOW_SYSTEM |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3969 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3970 if (!EQ (frame, Qt) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3971 && !UNSPECIFIEDP (value) |
24995 | 3972 && NILP (Fequal (old_value, value))) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3973 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3974 Lisp_Object param; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3975 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3976 param = Qnil; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3977 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3978 if (EQ (face, Qdefault)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3979 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3980 /* 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
|
3981 reflected in changed `font' frame parameters. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3982 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
|
3983 && lface_fully_specified_p (XVECTOR (lface)->contents)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3984 set_font_frame_param (frame, lface); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3985 else if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3986 param = Qforeground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3987 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3988 param = Qbackground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3989 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3990 #ifndef WINDOWSNT |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3991 else if (EQ (face, Qscroll_bar)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3992 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3993 /* 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
|
3994 `scroll-bar-foreground' and `scroll-bar-background'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3995 if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3996 param = Qscroll_bar_foreground; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3997 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3998 param = Qscroll_bar_background; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3999 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4000 #endif |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4001 else if (EQ (face, Qborder)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4002 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4003 /* Changing background color of `border' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4004 `border-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4005 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4006 param = Qborder_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4007 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4008 else if (EQ (face, Qcursor)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4009 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4010 /* Changing background color of `cursor' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4011 `cursor-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4012 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4013 param = Qcursor_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4014 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4015 else if (EQ (face, Qmouse)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4016 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4017 /* Changing background color of `mouse' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4018 `mouse-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4019 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4020 param = Qmouse_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4021 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4022 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4023 if (!NILP (param)) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4024 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
|
4025 } |
24995 | 4026 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4027 #endif /* HAVE_WINDOW_SYSTEM */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4028 |
24995 | 4029 return face; |
4030 } | |
4031 | |
4032 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4033 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4034 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4035 /* 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
|
4036 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
|
4037 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
|
4038 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
|
4039 there's no matching font, signals an error. */ |
24995 | 4040 |
4041 static void | |
4042 set_font_frame_param (frame, lface) | |
4043 Lisp_Object frame, lface; | |
4044 { | |
4045 struct frame *f = XFRAME (frame); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4046 Lisp_Object font_name; |
24995 | 4047 char *font; |
4048 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4049 if (STRINGP (LFACE_FONT (lface))) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4050 font_name = LFACE_FONT (lface); |
24995 | 4051 else |
4052 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4053 /* 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
|
4054 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
|
4055 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
|
4056 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
|
4057 if (!font) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4058 error ("No font matches the specified attribute"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4059 font_name = build_string (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4060 xfree (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4061 } |
31292
b176433657cc
(set_font_frame_param): Use Fmodify_frame_parameters
Gerd Moellmann <gerd@gnu.org>
parents:
31259
diff
changeset
|
4062 |
b176433657cc
(set_font_frame_param): Use Fmodify_frame_parameters
Gerd Moellmann <gerd@gnu.org>
parents:
31259
diff
changeset
|
4063 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font_name), Qnil)); |
24995 | 4064 } |
4065 | |
4066 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4067 /* 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
|
4068 has been assigned the value NEW_VALUE. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4069 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4070 void |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4071 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
|
4072 struct frame *f; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4073 Lisp_Object param, new_value; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4074 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4075 Lisp_Object lface; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4076 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4077 /* 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
|
4078 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
|
4079 face-set-after-frame-defaults. */ |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4080 if (NILP (f->face_alist)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4081 return; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4082 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4083 if (EQ (param, Qforeground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4084 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4085 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4086 LFACE_FOREGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4087 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4088 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4089 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4090 else if (EQ (param, Qbackground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4091 { |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4092 Lisp_Object frame; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4093 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4094 /* 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
|
4095 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
|
4096 frame-update-face-colors to do that. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4097 XSETFRAME (frame, f); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4098 call1 (Qframe_update_face_colors, frame); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4099 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4100 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4101 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4102 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4103 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4104 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4105 if (EQ (param, Qborder_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4106 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4107 lface = lface_from_face_name (f, Qborder, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4108 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4109 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4110 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4111 else if (EQ (param, Qcursor_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4112 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4113 lface = lface_from_face_name (f, Qcursor, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4114 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4115 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4116 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4117 else if (EQ (param, Qmouse_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4118 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4119 lface = lface_from_face_name (f, Qmouse, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4120 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4121 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4122 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4123 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4124 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4125 |
24995 | 4126 /* Get the value of X resource RESOURCE, class CLASS for the display |
4127 of frame FRAME. This is here because ordinary `x-get-resource' | |
4128 doesn't take a frame argument. */ | |
4129 | |
4130 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource, | |
4131 Sinternal_face_x_get_resource, 3, 3, 0, "") | |
4132 (resource, class, frame) | |
4133 Lisp_Object resource, class, frame; | |
4134 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4135 Lisp_Object value = Qnil; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4136 #ifndef WINDOWSNT |
24995 | 4137 CHECK_STRING (resource, 0); |
4138 CHECK_STRING (class, 1); | |
4139 CHECK_LIVE_FRAME (frame, 2); | |
4140 BLOCK_INPUT; | |
4141 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)), | |
4142 resource, class, Qnil, Qnil); | |
4143 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4144 #endif |
24995 | 4145 return value; |
4146 } | |
4147 | |
4148 | |
4149 /* Return resource string VALUE as a boolean value, i.e. nil, or t. | |
4150 If VALUE is "on" or "true", return t. If VALUE is "off" or | |
4151 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an | |
4152 error; if SIGNAL_P is zero, return 0. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4153 |
24995 | 4154 static Lisp_Object |
4155 face_boolean_x_resource_value (value, signal_p) | |
4156 Lisp_Object value; | |
4157 int signal_p; | |
4158 { | |
4159 Lisp_Object result = make_number (0); | |
4160 | |
4161 xassert (STRINGP (value)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4162 |
24995 | 4163 if (xstricmp (XSTRING (value)->data, "on") == 0 |
4164 || xstricmp (XSTRING (value)->data, "true") == 0) | |
4165 result = Qt; | |
4166 else if (xstricmp (XSTRING (value)->data, "off") == 0 | |
4167 || xstricmp (XSTRING (value)->data, "false") == 0) | |
4168 result = Qnil; | |
4169 else if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
4170 result = Qunspecified; | |
4171 else if (signal_p) | |
4172 signal_error ("Invalid face attribute value from X resource", value); | |
4173 | |
4174 return result; | |
4175 } | |
4176 | |
4177 | |
4178 DEFUN ("internal-set-lisp-face-attribute-from-resource", | |
4179 Finternal_set_lisp_face_attribute_from_resource, | |
4180 Sinternal_set_lisp_face_attribute_from_resource, | |
4181 3, 4, 0, "") | |
4182 (face, attr, value, frame) | |
4183 Lisp_Object face, attr, value, frame; | |
4184 { | |
4185 CHECK_SYMBOL (face, 0); | |
4186 CHECK_SYMBOL (attr, 1); | |
4187 CHECK_STRING (value, 2); | |
4188 | |
4189 if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
4190 value = Qunspecified; | |
4191 else if (EQ (attr, QCheight)) | |
4192 { | |
4193 value = Fstring_to_number (value, make_number (10)); | |
4194 if (XINT (value) <= 0) | |
4195 signal_error ("Invalid face height from X resource", value); | |
4196 } | |
4197 else if (EQ (attr, QCbold) || EQ (attr, QCitalic)) | |
4198 value = face_boolean_x_resource_value (value, 1); | |
4199 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth)) | |
4200 value = intern (XSTRING (value)->data); | |
4201 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video)) | |
4202 value = face_boolean_x_resource_value (value, 1); | |
4203 else if (EQ (attr, QCunderline) | |
4204 || EQ (attr, QCoverline) | |
4205 || EQ (attr, QCstrike_through) | |
4206 || EQ (attr, QCbox)) | |
4207 { | |
4208 Lisp_Object boolean_value; | |
4209 | |
4210 /* If the result of face_boolean_x_resource_value is t or nil, | |
4211 VALUE does NOT specify a color. */ | |
4212 boolean_value = face_boolean_x_resource_value (value, 0); | |
4213 if (SYMBOLP (boolean_value)) | |
4214 value = boolean_value; | |
4215 } | |
4216 | |
4217 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
|
4218 } |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4219 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4220 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4221 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4222 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4223 #ifdef HAVE_X_WINDOWS |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4224 /*********************************************************************** |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4225 Menu face |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4226 ***********************************************************************/ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4227 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4228 #ifdef USE_X_TOOLKIT |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4229 |
29897
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
4230 #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
|
4231 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4232 /* 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
|
4233 XtApplyToWidgets. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4234 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4235 struct x_resources |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4236 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4237 Arg *av; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4238 int ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4239 }; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4240 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4241 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4242 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4243 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4244 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
|
4245 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
|
4246 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4247 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4248 /* 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
|
4249 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
|
4250 submenu. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4251 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4252 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4253 xm_apply_resources (w, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4254 Widget w; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4255 XtPointer p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4256 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4257 Widget submenu = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4258 struct x_resources *res = (struct x_resources *) p; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4259 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4260 XtSetValues (w, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4261 XtVaGetValues (w, XmNsubMenuId, &submenu, NULL); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4262 if (submenu) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4263 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4264 XtSetValues (submenu, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4265 XtApplyToWidgets (submenu, xm_apply_resources, p); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4266 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4267 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4268 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4269 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4270 /* 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
|
4271 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
|
4272 following problems: |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4273 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4274 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
|
4275 somewhere in LessTif. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4276 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4277 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4278 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
|
4279 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4280 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4281 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4282 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4283 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4284 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4285 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4286 XmFontList fl = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4287 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4288 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
|
4289 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
|
4290 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4291 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4292 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4293 XtSetArg (av[ac], XmNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4294 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4295 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4296 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4297 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4298 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4299 XtSetArg (av[ac], XmNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4300 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4301 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4302 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4303 /* 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
|
4304 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4305 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4306 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4307 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4308 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4309 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4310 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4311 #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
|
4312 in LessTif during geometry computation. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4313 XmFontListEntry fe; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4314 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
|
4315 fl = XmFontListAppendEntry (NULL, fe); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4316 XtSetArg (av[ac], XmNfontList, fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4317 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4318 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4319 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4320 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4321 xassert (ac <= sizeof av / sizeof *av); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4322 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4323 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4324 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4325 struct x_resources res; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4326 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4327 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4328 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4329 XtApplyToWidgets (widget, xm_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4330 if (fl) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4331 XmFontListFree (fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4332 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4333 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4334 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4335 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4336 #endif /* USE_MOTIF */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4337 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4338 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4339 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4340 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
|
4341 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
|
4342 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4343 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4344 /* 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
|
4345 structure. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4346 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4347 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4348 xl_apply_resources (widget, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4349 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4350 XtPointer p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4351 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4352 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
|
4353 XtSetValues (widget, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4354 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4355 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4356 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4357 /* 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
|
4358 This is the Lucid version. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4359 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4360 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4361 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
|
4362 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4363 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4364 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4365 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4366 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4367 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4368 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4369 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4370 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
|
4371 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
|
4372 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4373 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4374 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4375 XtSetArg (av[ac], XtNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4376 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4377 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4378 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4379 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4380 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4381 XtSetArg (av[ac], XtNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4382 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4383 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4384 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4385 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4386 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4387 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4388 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4389 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4390 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4391 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4392 XtSetArg (av[ac], XtNfont, face->font); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4393 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4394 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4395 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4396 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4397 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4398 struct x_resources res; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4399 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4400 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4401 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4402 /* 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
|
4403 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
|
4404 is a function from lwlib. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4405 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4406 XtApplyToWidgets (widget, xl_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4407 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4408 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4409 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4410 #endif /* USE_LUCID */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4411 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4412 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4413 /* 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
|
4414 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4415 void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4416 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
|
4417 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4418 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4419 { |
26759
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4420 /* 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
|
4421 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
|
4422 will need the `menu' face. */ |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4423 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
|
4424 recompute_basic_faces (f); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4425 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4426 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4427 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
|
4428 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4429 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4430 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
|
4431 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4432 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4433 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4434 #endif /* USE_X_TOOLKIT */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4435 |
24995 | 4436 #endif /* HAVE_X_WINDOWS */ |
4437 | |
4438 | |
4439 | |
4440 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute, | |
4441 Sinternal_get_lisp_face_attribute, | |
4442 2, 3, 0, | |
4443 "Return face attribute KEYWORD of face SYMBOL.\n\ | |
4444 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid\n\ | |
4445 face attribute name, signal an error.\n\ | |
4446 If the optional argument FRAME is given, report on face FACE in that\n\ | |
4447 frame. If FRAME is t, report on the defaults for face FACE (for new\n\ | |
4448 frames). If FRAME is omitted or nil, use the selected frame.") | |
4449 (symbol, keyword, frame) | |
4450 Lisp_Object symbol, keyword, frame; | |
4451 { | |
4452 Lisp_Object lface, value = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4453 |
24995 | 4454 CHECK_SYMBOL (symbol, 0); |
4455 CHECK_SYMBOL (keyword, 1); | |
4456 | |
4457 if (EQ (frame, Qt)) | |
4458 lface = lface_from_face_name (NULL, symbol, 1); | |
4459 else | |
4460 { | |
4461 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4462 frame = selected_frame; |
24995 | 4463 CHECK_LIVE_FRAME (frame, 2); |
4464 lface = lface_from_face_name (XFRAME (frame), symbol, 1); | |
4465 } | |
4466 | |
4467 if (EQ (keyword, QCfamily)) | |
4468 value = LFACE_FAMILY (lface); | |
4469 else if (EQ (keyword, QCheight)) | |
4470 value = LFACE_HEIGHT (lface); | |
4471 else if (EQ (keyword, QCweight)) | |
4472 value = LFACE_WEIGHT (lface); | |
4473 else if (EQ (keyword, QCslant)) | |
4474 value = LFACE_SLANT (lface); | |
4475 else if (EQ (keyword, QCunderline)) | |
4476 value = LFACE_UNDERLINE (lface); | |
4477 else if (EQ (keyword, QCoverline)) | |
4478 value = LFACE_OVERLINE (lface); | |
4479 else if (EQ (keyword, QCstrike_through)) | |
4480 value = LFACE_STRIKE_THROUGH (lface); | |
4481 else if (EQ (keyword, QCbox)) | |
4482 value = LFACE_BOX (lface); | |
4483 else if (EQ (keyword, QCinverse_video) | |
4484 || EQ (keyword, QCreverse_video)) | |
4485 value = LFACE_INVERSE (lface); | |
4486 else if (EQ (keyword, QCforeground)) | |
4487 value = LFACE_FOREGROUND (lface); | |
4488 else if (EQ (keyword, QCbackground)) | |
4489 value = LFACE_BACKGROUND (lface); | |
4490 else if (EQ (keyword, QCstipple)) | |
4491 value = LFACE_STIPPLE (lface); | |
4492 else if (EQ (keyword, QCwidth)) | |
4493 value = LFACE_SWIDTH (lface); | |
31178 | 4494 else if (EQ (keyword, QCinherit)) |
4495 value = LFACE_INHERIT (lface); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4496 else if (EQ (keyword, QCfont)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4497 value = LFACE_FONT (lface); |
24995 | 4498 else |
4499 signal_error ("Invalid face attribute name", keyword); | |
4500 | |
4501 return value; | |
4502 } | |
4503 | |
4504 | |
4505 DEFUN ("internal-lisp-face-attribute-values", | |
4506 Finternal_lisp_face_attribute_values, | |
4507 Sinternal_lisp_face_attribute_values, 1, 1, 0, | |
4508 "Return a list of valid discrete values for face attribute ATTR.\n\ | |
4509 Value is nil if ATTR doesn't have a discrete set of valid values.") | |
4510 (attr) | |
4511 Lisp_Object attr; | |
4512 { | |
4513 Lisp_Object result = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4514 |
24995 | 4515 CHECK_SYMBOL (attr, 0); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4516 |
24995 | 4517 if (EQ (attr, QCweight) |
4518 || EQ (attr, QCslant) | |
4519 || EQ (attr, QCwidth)) | |
4520 { | |
4521 /* Extract permissible symbols from tables. */ | |
4522 struct table_entry *table; | |
4523 int i, dim; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4524 |
24995 | 4525 if (EQ (attr, QCweight)) |
4526 table = weight_table, dim = DIM (weight_table); | |
4527 else if (EQ (attr, QCslant)) | |
4528 table = slant_table, dim = DIM (slant_table); | |
4529 else | |
4530 table = swidth_table, dim = DIM (swidth_table); | |
4531 | |
4532 for (i = 0; i < dim; ++i) | |
4533 { | |
4534 Lisp_Object symbol = *table[i].symbol; | |
4535 Lisp_Object tail = result; | |
4536 | |
4537 while (!NILP (tail) | |
4538 && !EQ (XCAR (tail), symbol)) | |
4539 tail = XCDR (tail); | |
4540 | |
4541 if (NILP (tail)) | |
4542 result = Fcons (symbol, result); | |
4543 } | |
4544 } | |
4545 else if (EQ (attr, QCunderline)) | |
4546 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4547 else if (EQ (attr, QCoverline)) | |
4548 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4549 else if (EQ (attr, QCstrike_through)) | |
4550 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4551 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video)) | |
4552 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4553 | |
4554 return result; | |
4555 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4556 |
24995 | 4557 |
4558 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
|
4559 Sinternal_merge_in_global_face, 2, 2, 0, |
24995 | 4560 "Add attributes from frame-default definition of FACE to FACE on FRAME.") |
4561 (face, frame) | |
4562 Lisp_Object face, frame; | |
4563 { | |
4564 Lisp_Object global_lface, local_lface; | |
4565 CHECK_LIVE_FRAME (frame, 1); | |
4566 global_lface = lface_from_face_name (NULL, face, 1); | |
4567 local_lface = lface_from_face_name (XFRAME (frame), face, 0); | |
4568 if (NILP (local_lface)) | |
4569 local_lface = Finternal_make_lisp_face (face, frame); | |
31259
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
4570 default_face_vector (XVECTOR (local_lface)->contents, |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
4571 XVECTOR (global_lface)->contents); |
24995 | 4572 return face; |
4573 } | |
4574 | |
4575 | |
4576 /* The following function is implemented for compatibility with 20.2. | |
4577 The function is used in x-resolve-fonts when it is asked to | |
4578 return fonts with the same size as the font of a face. This is | |
4579 done in fontset.el. */ | |
4580 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4581 DEFUN ("face-font", Fface_font, Sface_font, 1, 2, 0, |
24995 | 4582 "Return the font name of face FACE, or nil if it is unspecified.\n\ |
4583 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4584 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4585 The font default for a face is either nil, or a list\n\ | |
4586 of the form (bold), (italic) or (bold italic).\n\ | |
4587 If FRAME is omitted or nil, use the selected frame.") | |
4588 (face, frame) | |
4589 Lisp_Object face, frame; | |
4590 { | |
4591 if (EQ (frame, Qt)) | |
4592 { | |
4593 Lisp_Object result = Qnil; | |
4594 Lisp_Object lface = lface_from_face_name (NULL, face, 1); | |
4595 | |
4596 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface)) | |
4597 && !EQ (LFACE_WEIGHT (lface), Qnormal)) | |
4598 result = Fcons (Qbold, result); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4599 |
24995 | 4600 if (!NILP (LFACE_SLANT (lface)) |
4601 && !EQ (LFACE_SLANT (lface), Qnormal)) | |
4602 result = Fcons (Qitalic, result); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4603 |
24995 | 4604 return result; |
4605 } | |
4606 else | |
4607 { | |
4608 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
|
4609 int face_id = lookup_named_face (f, face, 0); |
24995 | 4610 struct face *face = FACE_FROM_ID (f, face_id); |
4611 return build_string (face->font_name); | |
4612 } | |
4613 } | |
4614 | |
4615 | |
4616 /* Compare face vectors V1 and V2 for equality. Value is non-zero if | |
4617 all attributes are `equal'. Tries to be fast because this function | |
4618 is called quite often. */ | |
4619 | |
4620 static INLINE int | |
4621 lface_equal_p (v1, v2) | |
4622 Lisp_Object *v1, *v2; | |
4623 { | |
4624 int i, equal_p = 1; | |
4625 | |
4626 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i) | |
4627 { | |
4628 Lisp_Object a = v1[i]; | |
4629 Lisp_Object b = v2[i]; | |
4630 | |
4631 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil, | |
4632 and the other is specified. */ | |
4633 equal_p = XTYPE (a) == XTYPE (b); | |
4634 if (!equal_p) | |
4635 break; | |
4636 | |
4637 if (!EQ (a, b)) | |
4638 { | |
4639 switch (XTYPE (a)) | |
4640 { | |
4641 case Lisp_String: | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4642 equal_p = ((STRING_BYTES (XSTRING (a)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4643 == STRING_BYTES (XSTRING (b))) |
24995 | 4644 && bcmp (XSTRING (a)->data, XSTRING (b)->data, |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4645 STRING_BYTES (XSTRING (a))) == 0); |
24995 | 4646 break; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4647 |
24995 | 4648 case Lisp_Int: |
4649 case Lisp_Symbol: | |
4650 equal_p = 0; | |
4651 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4652 |
24995 | 4653 default: |
4654 equal_p = !NILP (Fequal (a, b)); | |
4655 break; | |
4656 } | |
4657 } | |
4658 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4659 |
24995 | 4660 return equal_p; |
4661 } | |
4662 | |
4663 | |
4664 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p, | |
4665 Sinternal_lisp_face_equal_p, 2, 3, 0, | |
4666 "True if FACE1 and FACE2 are equal.\n\ | |
4667 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4668 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4669 If FRAME is omitted or nil, use the selected frame.") | |
4670 (face1, face2, frame) | |
4671 Lisp_Object face1, face2, frame; | |
4672 { | |
4673 int equal_p; | |
4674 struct frame *f; | |
4675 Lisp_Object lface1, lface2; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4676 |
24995 | 4677 if (EQ (frame, Qt)) |
4678 f = NULL; | |
4679 else | |
4680 /* Don't use check_x_frame here because this function is called | |
4681 before X frames exist. At that time, if FRAME is nil, | |
4682 selected_frame will be used which is the frame dumped with | |
4683 Emacs. That frame is not an X frame. */ | |
4684 f = frame_or_selected_frame (frame, 2); | |
4685 | |
4686 lface1 = lface_from_face_name (NULL, face1, 1); | |
4687 lface2 = lface_from_face_name (NULL, face2, 1); | |
4688 equal_p = lface_equal_p (XVECTOR (lface1)->contents, | |
4689 XVECTOR (lface2)->contents); | |
4690 return equal_p ? Qt : Qnil; | |
4691 } | |
4692 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4693 |
24995 | 4694 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p, |
4695 Sinternal_lisp_face_empty_p, 1, 2, 0, | |
4696 "True if FACE has no attribute specified.\n\ | |
4697 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4698 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4699 If FRAME is omitted or nil, use the selected frame.") | |
4700 (face, frame) | |
4701 Lisp_Object face, frame; | |
4702 { | |
4703 struct frame *f; | |
4704 Lisp_Object lface; | |
4705 int i; | |
4706 | |
4707 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4708 frame = selected_frame; |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4709 CHECK_LIVE_FRAME (frame, 0); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4710 f = XFRAME (frame); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4711 |
24995 | 4712 if (EQ (frame, Qt)) |
4713 lface = lface_from_face_name (NULL, face, 1); | |
4714 else | |
4715 lface = lface_from_face_name (f, face, 1); | |
4716 | |
4717 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
4718 if (!UNSPECIFIEDP (XVECTOR (lface)->contents[i])) | |
4719 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4720 |
24995 | 4721 return i == LFACE_VECTOR_SIZE ? Qt : Qnil; |
4722 } | |
4723 | |
4724 | |
4725 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
|
4726 0, 1, 0, |
24995 | 4727 "Return an alist of frame-local faces defined on FRAME.\n\ |
4728 For internal use only.") | |
4729 (frame) | |
4730 Lisp_Object frame; | |
4731 { | |
4732 struct frame *f = frame_or_selected_frame (frame, 0); | |
4733 return f->face_alist; | |
4734 } | |
4735 | |
4736 | |
4737 /* Return a hash code for Lisp string STRING with case ignored. Used | |
4738 below in computing a hash value for a Lisp face. */ | |
4739 | |
4740 static INLINE unsigned | |
4741 hash_string_case_insensitive (string) | |
4742 Lisp_Object string; | |
4743 { | |
4744 unsigned char *s; | |
4745 unsigned hash = 0; | |
4746 xassert (STRINGP (string)); | |
4747 for (s = XSTRING (string)->data; *s; ++s) | |
4748 hash = (hash << 1) ^ tolower (*s); | |
4749 return hash; | |
4750 } | |
4751 | |
4752 | |
4753 /* Return a hash code for face attribute vector V. */ | |
4754 | |
4755 static INLINE unsigned | |
4756 lface_hash (v) | |
4757 Lisp_Object *v; | |
4758 { | |
4759 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX]) | |
4760 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX]) | |
4761 ^ 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
|
4762 ^ 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
|
4763 ^ 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
|
4764 ^ XFASTINT (v[LFACE_SWIDTH_INDEX]) |
24995 | 4765 ^ XFASTINT (v[LFACE_HEIGHT_INDEX])); |
4766 } | |
4767 | |
4768 | |
4769 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without | |
4770 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
|
4771 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
|
4772 and LFACE2 must be fully-specified. */ |
24995 | 4773 |
4774 static INLINE int | |
4775 lface_same_font_attributes_p (lface1, lface2) | |
4776 Lisp_Object *lface1, *lface2; | |
4777 { | |
4778 xassert (lface_fully_specified_p (lface1) | |
4779 && lface_fully_specified_p (lface2)); | |
4780 return (xstricmp (XSTRING (lface1[LFACE_FAMILY_INDEX])->data, | |
4781 XSTRING (lface2[LFACE_FAMILY_INDEX])->data) == 0 | |
31178 | 4782 && EQ (lface1[LFACE_HEIGHT_INDEX], lface2[LFACE_HEIGHT_INDEX]) |
24995 | 4783 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX]) |
4784 && 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
|
4785 && 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
|
4786 && (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
|
4787 || (STRINGP (lface1[LFACE_FONT_INDEX]) |
28263
73181b84ea57
(lface_same_font_attributes_p): Compare font attributes
Gerd Moellmann <gerd@gnu.org>
parents:
28237
diff
changeset
|
4788 && STRINGP (lface2[LFACE_FONT_INDEX]) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4789 && xstricmp (XSTRING (lface1[LFACE_FONT_INDEX])->data, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4790 XSTRING (lface2[LFACE_FONT_INDEX])->data)))); |
24995 | 4791 } |
4792 | |
4793 | |
4794 | |
4795 /*********************************************************************** | |
4796 Realized Faces | |
4797 ***********************************************************************/ | |
4798 | |
4799 /* 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
|
4800 vector ATTR. */ |
24995 | 4801 |
4802 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4803 make_realized_face (attr) |
24995 | 4804 Lisp_Object *attr; |
4805 { | |
4806 struct face *face = (struct face *) xmalloc (sizeof *face); | |
4807 bzero (face, sizeof *face); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4808 face->ascii_face = face; |
24995 | 4809 bcopy (attr, face->lface, sizeof face->lface); |
4810 return face; | |
4811 } | |
4812 | |
4813 | |
4814 /* Free realized face FACE, including its X resources. FACE may | |
4815 be null. */ | |
4816 | |
4817 static void | |
4818 free_realized_face (f, face) | |
4819 struct frame *f; | |
4820 struct face *face; | |
4821 { | |
4822 if (face) | |
4823 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4824 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4825 if (FRAME_WINDOW_P (f)) |
24995 | 4826 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4827 /* 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
|
4828 if (face->fontset >= 0 && face == face->ascii_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4829 free_face_fontset (f, face); |
24995 | 4830 if (face->gc) |
4831 { | |
4832 x_free_gc (f, face->gc); | |
4833 face->gc = 0; | |
4834 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4835 |
24995 | 4836 free_face_colors (f, face); |
4837 x_destroy_bitmap (f, face->stipple); | |
4838 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4839 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4840 |
4841 xfree (face); | |
4842 } | |
4843 } | |
4844 | |
4845 | |
4846 /* Prepare face FACE for subsequent display on frame F. This | |
4847 allocated GCs if they haven't been allocated yet or have been freed | |
4848 by clearing the face cache. */ | |
4849 | |
4850 void | |
4851 prepare_face_for_display (f, face) | |
4852 struct frame *f; | |
4853 struct face *face; | |
4854 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4855 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4856 xassert (FRAME_WINDOW_P (f)); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4857 |
24995 | 4858 if (face->gc == 0) |
4859 { | |
4860 XGCValues xgcv; | |
4861 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures; | |
4862 | |
4863 xgcv.foreground = face->foreground; | |
4864 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
|
4865 #ifdef HAVE_X_WINDOWS |
24995 | 4866 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
|
4867 #endif |
24995 | 4868 /* The font of FACE may be null if we couldn't load it. */ |
4869 if (face->font) | |
4870 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4871 #ifdef HAVE_X_WINDOWS |
24995 | 4872 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
|
4873 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4874 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4875 xgcv.font = face->font; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4876 #endif |
24995 | 4877 mask |= GCFont; |
4878 } | |
4879 | |
4880 BLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4881 #ifdef HAVE_X_WINDOWS |
24995 | 4882 if (face->stipple) |
4883 { | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
4884 xgcv.fill_style = FillOpaqueStippled; |
24995 | 4885 xgcv.stipple = x_bitmap_pixmap (f, face->stipple); |
4886 mask |= GCFillStyle | GCStipple; | |
4887 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4888 #endif |
24995 | 4889 face->gc = x_create_gc (f, mask, &xgcv); |
4890 UNBLOCK_INPUT; | |
4891 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4892 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4893 } |
4894 | |
4895 | |
4896 /*********************************************************************** | |
4897 Face Cache | |
4898 ***********************************************************************/ | |
4899 | |
4900 /* Return a new face cache for frame F. */ | |
4901 | |
4902 static struct face_cache * | |
4903 make_face_cache (f) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4904 struct frame *f; |
24995 | 4905 { |
4906 struct face_cache *c; | |
4907 int size; | |
4908 | |
4909 c = (struct face_cache *) xmalloc (sizeof *c); | |
4910 bzero (c, sizeof *c); | |
4911 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4912 c->buckets = (struct face **) xmalloc (size); | |
4913 bzero (c->buckets, size); | |
4914 c->size = 50; | |
4915 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id); | |
4916 c->f = f; | |
4917 return c; | |
4918 } | |
4919 | |
4920 | |
4921 /* Clear out all graphics contexts for all realized faces, except for | |
4922 the basic faces. This should be done from time to time just to avoid | |
4923 keeping too many graphics contexts that are no longer needed. */ | |
4924 | |
4925 static void | |
4926 clear_face_gcs (c) | |
4927 struct face_cache *c; | |
4928 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4929 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
|
4930 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4931 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4932 int i; |
4933 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i) | |
4934 { | |
4935 struct face *face = c->faces_by_id[i]; | |
4936 if (face && face->gc) | |
4937 { | |
4938 x_free_gc (c->f, face->gc); | |
4939 face->gc = 0; | |
4940 } | |
4941 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4942 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4943 } |
4944 } | |
4945 | |
4946 | |
4947 /* Free all realized faces in face cache C, including basic faces. C | |
4948 may be null. If faces are freed, make sure the frame's current | |
4949 matrix is marked invalid, so that a display caused by an expose | |
4950 event doesn't try to use faces we destroyed. */ | |
4951 | |
4952 static void | |
4953 free_realized_faces (c) | |
4954 struct face_cache *c; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4955 { |
24995 | 4956 if (c && c->used) |
4957 { | |
4958 int i, size; | |
4959 struct frame *f = c->f; | |
4960 | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4961 /* 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
|
4962 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
|
4963 current matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4964 BLOCK_INPUT; |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4965 |
24995 | 4966 for (i = 0; i < c->used; ++i) |
4967 { | |
4968 free_realized_face (f, c->faces_by_id[i]); | |
4969 c->faces_by_id[i] = NULL; | |
4970 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4971 |
24995 | 4972 c->used = 0; |
4973 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4974 bzero (c->buckets, size); | |
4975 | |
4976 /* Must do a thorough redisplay the next time. Mark current | |
4977 matrices as invalid because they will reference faces freed | |
4978 above. This function is also called when a frame is | |
4979 destroyed. In this case, the root window of F is nil. */ | |
4980 if (WINDOWP (f->root_window)) | |
4981 { | |
4982 clear_current_matrices (f); | |
4983 ++windows_or_buffers_changed; | |
4984 } | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4985 |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4986 UNBLOCK_INPUT; |
24995 | 4987 } |
4988 } | |
4989 | |
4990 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4991 /* 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
|
4992 has FONTSET. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4993 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4994 void |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4995 free_realized_multibyte_face (f, fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4996 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4997 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4998 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4999 struct face_cache *cache = FRAME_FACE_CACHE (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5000 struct face *face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5001 int i; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5002 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5003 /* 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
|
5004 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
|
5005 matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5006 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5007 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5008 for (i = 0; i < cache->used; i++) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5009 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5010 face = cache->faces_by_id[i]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5011 if (face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5012 && face != face->ascii_face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5013 && face->fontset == fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5014 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5015 uncache_face (cache, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5016 free_realized_face (f, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5017 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5018 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5019 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5020 /* 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
|
5021 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
|
5022 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
|
5023 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
|
5024 if (WINDOWP (f->root_window)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5025 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5026 clear_current_matrices (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5027 ++windows_or_buffers_changed; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5028 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5029 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5030 UNBLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5031 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5032 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5033 |
24995 | 5034 /* Free all realized faces on FRAME or on all frames if FRAME is nil. |
5035 This is done after attributes of a named face have been changed, | |
5036 because we can't tell which realized faces depend on that face. */ | |
5037 | |
5038 void | |
5039 free_all_realized_faces (frame) | |
5040 Lisp_Object frame; | |
5041 { | |
5042 if (NILP (frame)) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5043 { |
24995 | 5044 Lisp_Object rest; |
5045 FOR_EACH_FRAME (rest, frame) | |
5046 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
5047 } | |
5048 else | |
5049 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
5050 } | |
5051 | |
5052 | |
5053 /* Free face cache C and faces in it, including their X resources. */ | |
5054 | |
5055 static void | |
5056 free_face_cache (c) | |
5057 struct face_cache *c; | |
5058 { | |
5059 if (c) | |
5060 { | |
5061 free_realized_faces (c); | |
5062 xfree (c->buckets); | |
5063 xfree (c->faces_by_id); | |
5064 xfree (c); | |
5065 } | |
5066 } | |
5067 | |
5068 | |
5069 /* Cache realized face FACE in face cache C. HASH is the hash value | |
5070 of FACE. If FACE->fontset >= 0, add the new face to the end of the | |
5071 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
|
5072 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
|
5073 faces with the same attributes but for specific characters exist. */ |
24995 | 5074 |
5075 static void | |
5076 cache_face (c, face, hash) | |
5077 struct face_cache *c; | |
5078 struct face *face; | |
5079 unsigned hash; | |
5080 { | |
5081 int i = hash % FACE_CACHE_BUCKETS_SIZE; | |
5082 | |
5083 face->hash = hash; | |
5084 | |
5085 if (face->fontset >= 0) | |
5086 { | |
5087 struct face *last = c->buckets[i]; | |
5088 if (last) | |
5089 { | |
5090 while (last->next) | |
5091 last = last->next; | |
5092 last->next = face; | |
5093 face->prev = last; | |
5094 face->next = NULL; | |
5095 } | |
5096 else | |
5097 { | |
5098 c->buckets[i] = face; | |
5099 face->prev = face->next = NULL; | |
5100 } | |
5101 } | |
5102 else | |
5103 { | |
5104 face->prev = NULL; | |
5105 face->next = c->buckets[i]; | |
5106 if (face->next) | |
5107 face->next->prev = face; | |
5108 c->buckets[i] = face; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5109 } |
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5110 |
24995 | 5111 /* Find a free slot in C->faces_by_id and use the index of the free |
5112 slot as FACE->id. */ | |
5113 for (i = 0; i < c->used; ++i) | |
5114 if (c->faces_by_id[i] == NULL) | |
5115 break; | |
5116 face->id = i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5117 |
24995 | 5118 /* Maybe enlarge C->faces_by_id. */ |
5119 if (i == c->used && c->used == c->size) | |
5120 { | |
5121 int new_size = 2 * c->size; | |
5122 int sz = new_size * sizeof *c->faces_by_id; | |
5123 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz); | |
5124 c->size = new_size; | |
5125 } | |
5126 | |
5127 #if GLYPH_DEBUG | |
5128 /* Check that FACE got a unique id. */ | |
5129 { | |
5130 int j, n; | |
5131 struct face *face; | |
5132 | |
5133 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j) | |
5134 for (face = c->buckets[j]; face; face = face->next) | |
5135 if (face->id == i) | |
5136 ++n; | |
5137 | |
5138 xassert (n == 1); | |
5139 } | |
5140 #endif /* GLYPH_DEBUG */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5141 |
24995 | 5142 c->faces_by_id[i] = face; |
5143 if (i == c->used) | |
5144 ++c->used; | |
5145 } | |
5146 | |
5147 | |
5148 /* Remove face FACE from cache C. */ | |
5149 | |
5150 static void | |
5151 uncache_face (c, face) | |
5152 struct face_cache *c; | |
5153 struct face *face; | |
5154 { | |
5155 int i = face->hash % FACE_CACHE_BUCKETS_SIZE; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5156 |
24995 | 5157 if (face->prev) |
5158 face->prev->next = face->next; | |
5159 else | |
5160 c->buckets[i] = face->next; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5161 |
24995 | 5162 if (face->next) |
5163 face->next->prev = face->prev; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5164 |
24995 | 5165 c->faces_by_id[face->id] = NULL; |
5166 if (face->id == c->used) | |
5167 --c->used; | |
5168 } | |
5169 | |
5170 | |
5171 /* 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
|
5172 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
|
5173 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
|
5174 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
|
5175 is a face that has the same attributes. */ |
24995 | 5176 |
5177 INLINE int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5178 lookup_face (f, attr, c, base_face) |
24995 | 5179 struct frame *f; |
5180 Lisp_Object *attr; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5181 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5182 struct face *base_face; |
24995 | 5183 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5184 struct face_cache *cache = FRAME_FACE_CACHE (f); |
24995 | 5185 unsigned hash; |
5186 int i; | |
5187 struct face *face; | |
5188 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5189 xassert (cache != NULL); |
24995 | 5190 check_lface_attrs (attr); |
5191 | |
5192 /* Look up ATTR in the face cache. */ | |
5193 hash = lface_hash (attr); | |
5194 i = hash % FACE_CACHE_BUCKETS_SIZE; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5195 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5196 for (face = cache->buckets[i]; face; face = face->next) |
24995 | 5197 if (face->hash == hash |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5198 && (!FRAME_WINDOW_P (f) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5199 || FACE_SUITABLE_FOR_CHAR_P (face, c)) |
24995 | 5200 && lface_equal_p (face->lface, attr)) |
5201 break; | |
5202 | |
5203 /* If not found, realize a new face. */ | |
5204 if (face == NULL) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5205 face = realize_face (cache, attr, c, base_face, -1); |
24995 | 5206 |
5207 #if GLYPH_DEBUG | |
5208 xassert (face == FACE_FROM_ID (f, face->id)); | |
28409 | 5209 |
5210 /* When this function is called from face_for_char (in this case, C is | |
5211 a multibyte character), a fontset of a face returned by | |
5212 realize_face is not yet set, i.e. FACE_SUITABLE_FOR_CHAR_P (FACE, | |
5213 C) is not sutisfied. The fontset is set for this face by | |
5214 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
|
5215 #if 0 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5216 if (FRAME_WINDOW_P (f)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5217 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
|
5218 #endif |
24995 | 5219 #endif /* GLYPH_DEBUG */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5220 |
24995 | 5221 return face->id; |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5222 } |
24995 | 5223 |
5224 | |
5225 /* 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
|
5226 frame F suitable for displaying character C. */ |
24995 | 5227 |
5228 int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5229 lookup_named_face (f, symbol, c) |
24995 | 5230 struct frame *f; |
5231 Lisp_Object symbol; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5232 int c; |
24995 | 5233 { |
5234 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5235 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
5236 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5237 | |
5238 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
5239 bcopy (default_face->lface, attrs, sizeof attrs); | |
31178 | 5240 merge_face_vectors (f, symbol_attrs, attrs, Qnil); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5241 return lookup_face (f, attrs, c, NULL); |
24995 | 5242 } |
5243 | |
5244 | |
5245 /* Return the ID of the realized ASCII face of Lisp face with ID | |
5246 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */ | |
5247 | |
5248 int | |
5249 ascii_face_of_lisp_face (f, lface_id) | |
5250 struct frame *f; | |
5251 int lface_id; | |
5252 { | |
5253 int face_id; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5254 |
24995 | 5255 if (lface_id >= 0 && lface_id < lface_id_to_name_size) |
5256 { | |
5257 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
|
5258 face_id = lookup_named_face (f, face_name, 0); |
24995 | 5259 } |
5260 else | |
5261 face_id = -1; | |
5262 | |
5263 return face_id; | |
5264 } | |
5265 | |
5266 | |
5267 /* Return a face for charset ASCII that is like the face with id | |
5268 FACE_ID on frame F, but has a font that is STEPS steps smaller. | |
5269 STEPS < 0 means larger. Value is the id of the face. */ | |
5270 | |
5271 int | |
5272 smaller_face (f, face_id, steps) | |
5273 struct frame *f; | |
5274 int face_id, steps; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5275 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5276 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5277 struct face *face; |
5278 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5279 int pt, last_pt, last_height; | |
5280 int delta; | |
5281 int new_face_id; | |
5282 struct face *new_face; | |
5283 | |
5284 /* If not called for an X frame, just return the original face. */ | |
5285 if (FRAME_TERMCAP_P (f)) | |
5286 return face_id; | |
5287 | |
5288 /* Try in increments of 1/2 pt. */ | |
5289 delta = steps < 0 ? 5 : -5; | |
5290 steps = abs (steps); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5291 |
24995 | 5292 face = FACE_FROM_ID (f, face_id); |
5293 bcopy (face->lface, attrs, sizeof attrs); | |
5294 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5295 new_face_id = face_id; | |
5296 last_height = FONT_HEIGHT (face->font); | |
5297 | |
5298 while (steps | |
5299 && pt + delta > 0 | |
5300 /* Give up if we cannot find a font within 10pt. */ | |
5301 && abs (last_pt - pt) < 100) | |
5302 { | |
5303 /* Look up a face for a slightly smaller/larger font. */ | |
5304 pt += delta; | |
5305 attrs[LFACE_HEIGHT_INDEX] = make_number (pt); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5306 new_face_id = lookup_face (f, attrs, 0, NULL); |
24995 | 5307 new_face = FACE_FROM_ID (f, new_face_id); |
5308 | |
5309 /* If height changes, count that as one step. */ | |
5310 if (FONT_HEIGHT (new_face->font) != last_height) | |
5311 { | |
5312 --steps; | |
5313 last_height = FONT_HEIGHT (new_face->font); | |
5314 last_pt = pt; | |
5315 } | |
5316 } | |
5317 | |
5318 return new_face_id; | |
5319 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5320 #else /* not HAVE_WINDOW_SYSTEM */ |
24995 | 5321 |
5322 return face_id; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5323 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5324 #endif /* not HAVE_WINDOW_SYSTEM */ |
24995 | 5325 } |
5326 | |
5327 | |
5328 /* Return a face for charset ASCII that is like the face with id | |
5329 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
|
5330 |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
5331 int |
24995 | 5332 face_with_height (f, face_id, height) |
5333 struct frame *f; | |
5334 int face_id; | |
5335 int height; | |
5336 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5337 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5338 struct face *face; |
5339 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5340 | |
5341 if (FRAME_TERMCAP_P (f) | |
5342 || height <= 0) | |
5343 return face_id; | |
5344 | |
5345 face = FACE_FROM_ID (f, face_id); | |
5346 bcopy (face->lface, attrs, sizeof attrs); | |
5347 attrs[LFACE_HEIGHT_INDEX] = make_number (height); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5348 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
|
5349 #endif /* HAVE_WINDOW_SYSTEM */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5350 |
24995 | 5351 return face_id; |
5352 } | |
5353 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5354 /* 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
|
5355 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
|
5356 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
|
5357 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
|
5358 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
|
5359 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
|
5360 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5361 int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5362 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
|
5363 struct frame *f; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5364 Lisp_Object symbol; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5365 int c; |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5366 int face_id; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5367 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5368 Lisp_Object attrs[LFACE_VECTOR_SIZE]; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5369 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
|
5370 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
|
5371 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5372 if (!default_face) |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5373 abort (); |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5374 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5375 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
|
5376 bcopy (default_face->lface, attrs, sizeof attrs); |
31178 | 5377 merge_face_vectors (f, symbol_attrs, attrs, Qnil); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5378 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
|
5379 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5380 |
24995 | 5381 |
5382 | |
5383 /*********************************************************************** | |
5384 Font selection | |
5385 ***********************************************************************/ | |
5386 | |
5387 DEFUN ("internal-set-font-selection-order", | |
5388 Finternal_set_font_selection_order, | |
5389 Sinternal_set_font_selection_order, 1, 1, 0, | |
5390 "Set font selection order for face font selection to ORDER.\n\ | |
5391 ORDER must be a list of length 4 containing the symbols `:width',\n\ | |
5392 `:height', `:weight', and `:slant'. Face attributes appearing\n\ | |
5393 first in ORDER are matched first, e.g. if `:height' appears before\n\ | |
5394 `:weight' in ORDER, font selection first tries to find a font with\n\ | |
5395 a suitable height, and then tries to match the font weight.\n\ | |
5396 Value is ORDER.") | |
5397 (order) | |
5398 Lisp_Object order; | |
5399 { | |
5400 Lisp_Object list; | |
5401 int i; | |
5402 int indices[4]; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5403 |
24995 | 5404 CHECK_LIST (order, 0); |
5405 bzero (indices, sizeof indices); | |
5406 i = 0; | |
5407 | |
5408 for (list = order; | |
5409 CONSP (list) && i < DIM (indices); | |
5410 list = XCDR (list), ++i) | |
5411 { | |
5412 Lisp_Object attr = XCAR (list); | |
5413 int xlfd; | |
5414 | |
5415 if (EQ (attr, QCwidth)) | |
5416 xlfd = XLFD_SWIDTH; | |
5417 else if (EQ (attr, QCheight)) | |
5418 xlfd = XLFD_POINT_SIZE; | |
5419 else if (EQ (attr, QCweight)) | |
5420 xlfd = XLFD_WEIGHT; | |
5421 else if (EQ (attr, QCslant)) | |
5422 xlfd = XLFD_SLANT; | |
5423 else | |
5424 break; | |
5425 | |
5426 if (indices[i] != 0) | |
5427 break; | |
5428 indices[i] = xlfd; | |
5429 } | |
5430 | |
5431 if (!NILP (list) | |
5432 || i != DIM (indices) | |
5433 || indices[0] == 0 | |
5434 || indices[1] == 0 | |
5435 || indices[2] == 0 | |
5436 || indices[3] == 0) | |
5437 signal_error ("Invalid font sort order", order); | |
5438 | |
5439 if (bcmp (indices, font_sort_order, sizeof indices) != 0) | |
5440 { | |
5441 bcopy (indices, font_sort_order, sizeof font_sort_order); | |
5442 free_all_realized_faces (Qnil); | |
5443 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5444 |
24995 | 5445 return Qnil; |
5446 } | |
5447 | |
5448 | |
5449 DEFUN ("internal-set-alternative-font-family-alist", | |
5450 Finternal_set_alternative_font_family_alist, | |
5451 Sinternal_set_alternative_font_family_alist, 1, 1, 0, | |
5452 "Define alternative font families to try in face font selection.\n\ | |
5453 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.\n\ | |
5454 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can\n\ | |
5455 be found. Value is ALIST.") | |
5456 (alist) | |
5457 Lisp_Object alist; | |
5458 { | |
5459 CHECK_LIST (alist, 0); | |
5460 Vface_alternative_font_family_alist = alist; | |
5461 free_all_realized_faces (Qnil); | |
5462 return alist; | |
5463 } | |
5464 | |
5465 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5466 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5467 |
5468 /* Value is non-zero if FONT is the name of a scalable font. The | |
5469 X11R6 XLFD spec says that point size, pixel size, and average width | |
5470 are zero for scalable fonts. Intlfonts contain at least one | |
5471 scalable font ("*-muleindian-1") for which this isn't true, so we | |
5472 just test average width. */ | |
5473 | |
5474 static int | |
5475 font_scalable_p (font) | |
5476 struct font_name *font; | |
5477 { | |
5478 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
|
5479 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
|
5480 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5481 /* 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
|
5482 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
|
5483 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
|
5484 || *s == '*' |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5485 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5486 ; |
24995 | 5487 } |
5488 | |
5489 | |
5490 /* Value is non-zero if FONT1 is a better match for font attributes | |
5491 VALUES than FONT2. VALUES is an array of face attribute values in | |
5492 font sort order. COMPARE_PT_P zero means don't compare point | |
5493 sizes. */ | |
5494 | |
5495 static int | |
5496 better_font_p (values, font1, font2, compare_pt_p) | |
5497 int *values; | |
5498 struct font_name *font1, *font2; | |
5499 int compare_pt_p; | |
5500 { | |
5501 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5502 |
24995 | 5503 for (i = 0; i < 4; ++i) |
5504 { | |
5505 int xlfd_idx = font_sort_order[i]; | |
5506 | |
5507 if (compare_pt_p || xlfd_idx != XLFD_POINT_SIZE) | |
5508 { | |
5509 int delta1 = abs (values[i] - font1->numeric[xlfd_idx]); | |
5510 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
|
5511 |
24995 | 5512 if (delta1 > delta2) |
5513 return 0; | |
5514 else if (delta1 < delta2) | |
5515 return 1; | |
5516 else | |
5517 { | |
5518 /* The difference may be equal because, e.g., the face | |
5519 specifies `italic' but we have only `regular' and | |
5520 `oblique'. Prefer `oblique' in this case. */ | |
5521 if ((xlfd_idx == XLFD_WEIGHT || xlfd_idx == XLFD_SLANT) | |
5522 && font1->numeric[xlfd_idx] > values[i] | |
5523 && font2->numeric[xlfd_idx] < values[i]) | |
5524 return 1; | |
5525 } | |
5526 } | |
5527 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5528 |
24995 | 5529 return 0; |
5530 } | |
5531 | |
5532 | |
5533 #if SCALABLE_FONTS | |
5534 | |
5535 /* Value is non-zero if FONT is an exact match for face attributes in | |
5536 SPECIFIED. SPECIFIED is an array of face attribute values in font | |
5537 sort order. */ | |
5538 | |
5539 static int | |
5540 exact_face_match_p (specified, font) | |
5541 int *specified; | |
5542 struct font_name *font; | |
5543 { | |
5544 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5545 |
24995 | 5546 for (i = 0; i < 4; ++i) |
5547 if (specified[i] != font->numeric[font_sort_order[i]]) | |
5548 break; | |
5549 | |
5550 return i == 4; | |
5551 } | |
5552 | |
5553 | |
5554 /* Value is the name of a scaled font, generated from scalable font | |
5555 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to. | |
5556 Value is allocated from heap. */ | |
5557 | |
5558 static char * | |
5559 build_scalable_font_name (f, font, specified_pt) | |
5560 struct frame *f; | |
5561 struct font_name *font; | |
5562 int specified_pt; | |
5563 { | |
5564 char point_size[20], pixel_size[20]; | |
5565 int pixel_value; | |
5566 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
5567 double pt; | |
5568 | |
5569 /* If scalable font is for a specific resolution, compute | |
5570 the point size we must specify from the resolution of | |
5571 the display and the specified resolution of the font. */ | |
5572 if (font->numeric[XLFD_RESY] != 0) | |
5573 { | |
5574 pt = resy / font->numeric[XLFD_RESY] * specified_pt + 0.5; | |
5575 pixel_value = font->numeric[XLFD_RESY] / 720.0 * pt; | |
5576 } | |
5577 else | |
5578 { | |
5579 pt = specified_pt; | |
5580 pixel_value = resy / 720.0 * pt; | |
5581 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5582 |
24995 | 5583 /* Set point size of the font. */ |
5584 sprintf (point_size, "%d", (int) pt); | |
5585 font->fields[XLFD_POINT_SIZE] = point_size; | |
5586 font->numeric[XLFD_POINT_SIZE] = pt; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5587 |
24995 | 5588 /* Set pixel size. */ |
5589 sprintf (pixel_size, "%d", pixel_value); | |
5590 font->fields[XLFD_PIXEL_SIZE] = pixel_size; | |
5591 font->numeric[XLFD_PIXEL_SIZE] = pixel_value; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5592 |
24995 | 5593 /* If font doesn't specify its resolution, use the |
5594 resolution of the display. */ | |
5595 if (font->numeric[XLFD_RESY] == 0) | |
5596 { | |
5597 char buffer[20]; | |
5598 sprintf (buffer, "%d", (int) resy); | |
5599 font->fields[XLFD_RESY] = buffer; | |
5600 font->numeric[XLFD_RESY] = resy; | |
5601 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5602 |
24995 | 5603 if (strcmp (font->fields[XLFD_RESX], "0") == 0) |
5604 { | |
5605 char buffer[20]; | |
5606 int resx = FRAME_X_DISPLAY_INFO (f)->resx; | |
5607 sprintf (buffer, "%d", resx); | |
5608 font->fields[XLFD_RESX] = buffer; | |
5609 font->numeric[XLFD_RESX] = resx; | |
5610 } | |
5611 | |
5612 return build_font_name (font); | |
5613 } | |
5614 | |
5615 | |
5616 /* Value is non-zero if we are allowed to use scalable font FONT. We | |
5617 can't run a Lisp function here since this function may be called | |
5618 with input blocked. */ | |
5619 | |
5620 static int | |
5621 may_use_scalable_font_p (font, name) | |
5622 struct font_name *font; | |
5623 char *name; | |
5624 { | |
5625 if (EQ (Vscalable_fonts_allowed, Qt)) | |
5626 return 1; | |
5627 else if (CONSP (Vscalable_fonts_allowed)) | |
5628 { | |
5629 Lisp_Object tail, regexp; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5630 |
24995 | 5631 for (tail = Vscalable_fonts_allowed; CONSP (tail); tail = XCDR (tail)) |
5632 { | |
5633 regexp = XCAR (tail); | |
5634 if (STRINGP (regexp) | |
5635 && fast_c_string_match_ignore_case (regexp, name) >= 0) | |
5636 return 1; | |
5637 } | |
5638 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5639 |
24995 | 5640 return 0; |
5641 } | |
5642 | |
5643 #endif /* SCALABLE_FONTS != 0 */ | |
5644 | |
5645 | |
5646 /* Return the name of the best matching font for face attributes | |
5647 ATTRS in the array of font_name structures FONTS which contains | |
5648 NFONTS elements. Value is a font name which is allocated from | |
5649 the heap. FONTS is freed by this function. */ | |
5650 | |
5651 static char * | |
5652 best_matching_font (f, attrs, fonts, nfonts) | |
5653 struct frame *f; | |
5654 Lisp_Object *attrs; | |
5655 struct font_name *fonts; | |
5656 int nfonts; | |
5657 { | |
5658 char *font_name; | |
5659 struct font_name *best; | |
5660 int i, pt; | |
5661 int specified[4]; | |
5662 int exact_p; | |
5663 | |
5664 if (nfonts == 0) | |
5665 return NULL; | |
5666 | |
5667 /* Make specified font attributes available in `specified', | |
5668 indexed by sort order. */ | |
5669 for (i = 0; i < DIM (font_sort_order); ++i) | |
5670 { | |
5671 int xlfd_idx = font_sort_order[i]; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5672 |
24995 | 5673 if (xlfd_idx == XLFD_SWIDTH) |
5674 specified[i] = face_numeric_swidth (attrs[LFACE_SWIDTH_INDEX]); | |
5675 else if (xlfd_idx == XLFD_POINT_SIZE) | |
5676 specified[i] = pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5677 else if (xlfd_idx == XLFD_WEIGHT) | |
5678 specified[i] = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
5679 else if (xlfd_idx == XLFD_SLANT) | |
5680 specified[i] = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
5681 else | |
5682 abort (); | |
5683 } | |
5684 | |
5685 #if SCALABLE_FONTS | |
5686 | |
5687 /* Set to 1 */ | |
5688 exact_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5689 |
24995 | 5690 /* Start with the first non-scalable font in the list. */ |
5691 for (i = 0; i < nfonts; ++i) | |
5692 if (!font_scalable_p (fonts + i)) | |
5693 break; | |
5694 | |
5695 /* Find the best match among the non-scalable fonts. */ | |
5696 if (i < nfonts) | |
5697 { | |
5698 best = fonts + i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5699 |
24995 | 5700 for (i = 1; i < nfonts; ++i) |
5701 if (!font_scalable_p (fonts + i) | |
5702 && better_font_p (specified, fonts + i, best, 1)) | |
5703 { | |
5704 best = fonts + i; | |
5705 | |
5706 exact_p = exact_face_match_p (specified, best); | |
5707 if (exact_p) | |
5708 break; | |
5709 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5710 |
24995 | 5711 } |
5712 else | |
5713 best = NULL; | |
5714 | |
5715 /* Unless we found an exact match among non-scalable fonts, see if | |
5716 we can find a better match among scalable fonts. */ | |
5717 if (!exact_p) | |
5718 { | |
5719 /* A scalable font is better if | |
5720 | |
5721 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
|
5722 |
24995 | 5723 2. the best non-scalable font doesn't have the required |
5724 point size, and the scalable fonts weight, slant, swidth | |
5725 isn't worse. */ | |
5726 | |
5727 int non_scalable_has_exact_height_p; | |
5728 | |
5729 if (best && best->numeric[XLFD_POINT_SIZE] == pt) | |
5730 non_scalable_has_exact_height_p = 1; | |
5731 else | |
5732 non_scalable_has_exact_height_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5733 |
24995 | 5734 for (i = 0; i < nfonts; ++i) |
5735 if (font_scalable_p (fonts + i)) | |
5736 { | |
5737 if (best == NULL | |
5738 || better_font_p (specified, fonts + i, best, 0) | |
5739 || (!non_scalable_has_exact_height_p | |
5740 && !better_font_p (specified, best, fonts + i, 0))) | |
5741 best = fonts + i; | |
5742 } | |
5743 } | |
5744 | |
5745 if (font_scalable_p (best)) | |
5746 font_name = build_scalable_font_name (f, best, pt); | |
5747 else | |
5748 font_name = build_font_name (best); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5749 |
24995 | 5750 #else /* !SCALABLE_FONTS */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5751 |
24995 | 5752 /* Find the best non-scalable font. */ |
5753 best = fonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5754 |
24995 | 5755 for (i = 1; i < nfonts; ++i) |
5756 { | |
5757 xassert (!font_scalable_p (fonts + i)); | |
5758 if (better_font_p (specified, fonts + i, best, 1)) | |
5759 best = fonts + i; | |
5760 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5761 |
24995 | 5762 font_name = build_font_name (best); |
5763 | |
5764 #endif /* !SCALABLE_FONTS */ | |
5765 | |
5766 /* Free font_name structures. */ | |
5767 free_font_names (fonts, nfonts); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5768 |
24995 | 5769 return font_name; |
5770 } | |
5771 | |
5772 | |
5773 /* Try to get a list of fonts on frame F with font family FAMILY and | |
5774 registry/encoding REGISTRY. Return in *FONTS a pointer to a vector | |
5775 of font_name structures for the fonts matched. Value is the number | |
5776 of fonts found. */ | |
5777 | |
5778 static int | |
5779 try_font_list (f, attrs, pattern, family, registry, fonts) | |
5780 struct frame *f; | |
5781 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5782 Lisp_Object pattern, family, registry; |
24995 | 5783 struct font_name **fonts; |
5784 { | |
5785 int nfonts; | |
5786 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5787 if (NILP (family) && STRINGP (attrs[LFACE_FAMILY_INDEX])) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5788 family = attrs[LFACE_FAMILY_INDEX]; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5789 |
24995 | 5790 nfonts = font_list (f, pattern, family, registry, fonts); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5791 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5792 if (nfonts == 0 && !NILP (family)) |
24995 | 5793 { |
5794 Lisp_Object alter; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5795 |
24995 | 5796 /* Try alternative font families from |
5797 Vface_alternative_font_family_alist. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5798 alter = Fassoc (family, Vface_alternative_font_family_alist); |
24995 | 5799 if (CONSP (alter)) |
5800 for (alter = XCDR (alter); | |
5801 CONSP (alter) && nfonts == 0; | |
5802 alter = XCDR (alter)) | |
5803 { | |
5804 if (STRINGP (XCAR (alter))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5805 nfonts = font_list (f, Qnil, XCAR (alter), registry, fonts); |
24995 | 5806 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5807 |
24995 | 5808 /* Try font family of the default face or "fixed". */ |
5809 if (nfonts == 0) | |
5810 { | |
5811 struct face *dflt = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5812 if (dflt) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5813 family = dflt->lface[LFACE_FAMILY_INDEX]; |
24995 | 5814 else |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5815 family = build_string ("fixed"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5816 nfonts = font_list (f, Qnil, family, registry, fonts); |
24995 | 5817 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5818 |
24995 | 5819 /* Try any family with the given registry. */ |
5820 if (nfonts == 0) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5821 nfonts = font_list (f, Qnil, Qnil, registry, fonts); |
24995 | 5822 } |
5823 | |
5824 return nfonts; | |
5825 } | |
5826 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5827 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5828 /* 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
|
5829 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
|
5830 attribute of ATTRS doesn't name a fontset. */ |
24995 | 5831 |
5832 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5833 face_fontset (attrs) |
24995 | 5834 Lisp_Object *attrs; |
5835 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5836 Lisp_Object name; |
24995 | 5837 int fontset; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5838 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5839 name = attrs[LFACE_FONT_INDEX]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5840 if (!STRINGP (name)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5841 return -1; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5842 return fs_query_fontset (name, 0); |
24995 | 5843 } |
5844 | |
5845 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5846 /* 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
|
5847 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
|
5848 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
|
5849 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
|
5850 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
|
5851 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
|
5852 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
|
5853 character. */ |
24995 | 5854 |
5855 static char * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5856 choose_face_font (f, attrs, fontset, c) |
24995 | 5857 struct frame *f; |
5858 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5859 int fontset, c; |
24995 | 5860 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5861 Lisp_Object pattern; |
24995 | 5862 char *font_name = NULL; |
5863 struct font_name *fonts; | |
5864 int nfonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5865 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5866 /* 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
|
5867 a font for C. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5868 pattern = fontset_font_pattern (f, fontset, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5869 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5870 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5871 xassert (!SINGLE_BYTE_CHAR_P (c)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5872 return NULL; |
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 /* 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
|
5875 if (STRINGP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5876 return xstrdup (XSTRING (pattern)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5877 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5878 /* 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
|
5879 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
|
5880 character. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5881 if (STRINGP (attrs[LFACE_FAMILY_INDEX]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5882 && SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5883 XCAR (pattern) = Qnil; |
24995 | 5884 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5885 /* Get a list of fonts matching that pattern and choose the |
24995 | 5886 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
|
5887 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
|
5888 &fonts); |
24995 | 5889 font_name = best_matching_font (f, attrs, fonts, nfonts); |
5890 return font_name; | |
5891 } | |
5892 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5893 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5894 |
5895 | |
5896 | |
5897 /*********************************************************************** | |
5898 Face Realization | |
5899 ***********************************************************************/ | |
5900 | |
5901 /* Realize basic faces on frame F. Value is zero if frame parameters | |
5902 of F don't contain enough information needed to realize the default | |
5903 face. */ | |
5904 | |
5905 static int | |
5906 realize_basic_faces (f) | |
2342 | 5907 struct frame *f; |
24995 | 5908 { |
5909 int success_p = 0; | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5910 |
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5911 /* 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
|
5912 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
|
5913 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5914 |
24995 | 5915 if (realize_default_face (f)) |
5916 { | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
5917 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
|
5918 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
|
5919 realize_named_face (f, Qfringe, BITMAP_AREA_FACE_ID); |
25546 | 5920 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
|
5921 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
|
5922 realize_named_face (f, Qborder, BORDER_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5923 realize_named_face (f, Qcursor, CURSOR_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5924 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
|
5925 realize_named_face (f, Qmenu, MENU_FACE_ID); |
24995 | 5926 success_p = 1; |
5927 } | |
5928 | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5929 UNBLOCK_INPUT; |
24995 | 5930 return success_p; |
5931 } | |
5932 | |
5933 | |
5934 /* Realize the default face on frame F. If the face is not fully | |
5935 specified, make it fully-specified. Attributes of the default face | |
5936 that are not explicitly specified are taken from frame parameters. */ | |
5937 | |
5938 static int | |
5939 realize_default_face (f) | |
5940 struct frame *f; | |
5941 { | |
5942 struct face_cache *c = FRAME_FACE_CACHE (f); | |
5943 Lisp_Object lface; | |
5944 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5945 Lisp_Object frame_font; | |
5946 struct face *face; | |
5947 int fontset; | |
5948 | |
5949 /* If the `default' face is not yet known, create it. */ | |
5950 lface = lface_from_face_name (f, Qdefault, 0); | |
5951 if (NILP (lface)) | |
5952 { | |
5953 Lisp_Object frame; | |
5954 XSETFRAME (frame, f); | |
5955 lface = Finternal_make_lisp_face (Qdefault, frame); | |
5956 } | |
5957 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5958 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5959 if (FRAME_WINDOW_P (f)) |
24995 | 5960 { |
5961 /* Set frame_font to the value of the `font' frame parameter. */ | |
5962 frame_font = Fassq (Qfont, f->param_alist); | |
5963 xassert (CONSP (frame_font) && STRINGP (XCDR (frame_font))); | |
5964 frame_font = XCDR (frame_font); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5965 set_lface_from_font_name (f, lface, frame_font, 0, 1); |
24995 | 5966 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5967 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5968 |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5969 if (!FRAME_WINDOW_P (f)) |
24995 | 5970 { |
5971 LFACE_FAMILY (lface) = build_string ("default"); | |
5972 LFACE_SWIDTH (lface) = Qnormal; | |
5973 LFACE_HEIGHT (lface) = make_number (1); | |
5974 LFACE_WEIGHT (lface) = Qnormal; | |
5975 LFACE_SLANT (lface) = Qnormal; | |
5976 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5977 |
24995 | 5978 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface))) |
5979 LFACE_UNDERLINE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5980 |
24995 | 5981 if (UNSPECIFIEDP (LFACE_OVERLINE (lface))) |
5982 LFACE_OVERLINE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5983 |
24995 | 5984 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface))) |
5985 LFACE_STRIKE_THROUGH (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5986 |
24995 | 5987 if (UNSPECIFIEDP (LFACE_BOX (lface))) |
5988 LFACE_BOX (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5989 |
24995 | 5990 if (UNSPECIFIEDP (LFACE_INVERSE (lface))) |
5991 LFACE_INVERSE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5992 |
24995 | 5993 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
5994 { | |
5995 /* This function is called so early that colors are not yet | |
5996 set in the frame parameter list. */ | |
5997 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
|
5998 |
24995 | 5999 if (CONSP (color) && STRINGP (XCDR (color))) |
6000 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
|
6001 else if (FRAME_WINDOW_P (f)) |
24995 | 6002 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6003 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
|
6004 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
|
6005 else |
24995 | 6006 abort (); |
6007 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6008 |
24995 | 6009 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
6010 { | |
6011 /* This function is called so early that colors are not yet | |
6012 set in the frame parameter list. */ | |
6013 Lisp_Object color = Fassq (Qbackground_color, f->param_alist); | |
6014 if (CONSP (color) && STRINGP (XCDR (color))) | |
6015 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
|
6016 else if (FRAME_WINDOW_P (f)) |
24995 | 6017 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6018 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
|
6019 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
|
6020 else |
24995 | 6021 abort (); |
6022 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6023 |
24995 | 6024 if (UNSPECIFIEDP (LFACE_STIPPLE (lface))) |
6025 LFACE_STIPPLE (lface) = Qnil; | |
6026 | |
6027 /* Realize the face; it must be fully-specified now. */ | |
6028 xassert (lface_fully_specified_p (XVECTOR (lface)->contents)); | |
6029 check_lface (lface); | |
6030 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6031 face = realize_face (c, attrs, 0, NULL, DEFAULT_FACE_ID); |
24995 | 6032 return 1; |
6033 } | |
6034 | |
6035 | |
6036 /* Realize basic faces other than the default face in face cache C. | |
6037 SYMBOL is the face name, ID is the face id the realized face must | |
6038 have. The default face must have been realized already. */ | |
6039 | |
6040 static void | |
6041 realize_named_face (f, symbol, id) | |
6042 struct frame *f; | |
6043 Lisp_Object symbol; | |
6044 int id; | |
6045 { | |
6046 struct face_cache *c = FRAME_FACE_CACHE (f); | |
6047 Lisp_Object lface = lface_from_face_name (f, symbol, 0); | |
6048 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6049 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
6050 struct face *new_face; | |
6051 | |
6052 /* The default face must exist and be fully specified. */ | |
6053 get_lface_attributes (f, Qdefault, attrs, 1); | |
6054 check_lface_attrs (attrs); | |
6055 xassert (lface_fully_specified_p (attrs)); | |
6056 | |
6057 /* If SYMBOL isn't know as a face, create it. */ | |
6058 if (NILP (lface)) | |
6059 { | |
6060 Lisp_Object frame; | |
6061 XSETFRAME (frame, f); | |
6062 lface = Finternal_make_lisp_face (symbol, frame); | |
6063 } | |
6064 | |
6065 /* Merge SYMBOL's face with the default face. */ | |
6066 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
31178 | 6067 merge_face_vectors (f, symbol_attrs, attrs, Qnil); |
24995 | 6068 |
6069 /* Realize the face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6070 new_face = realize_face (c, attrs, 0, NULL, id); |
24995 | 6071 } |
6072 | |
6073 | |
6074 /* 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
|
6075 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
|
6076 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
|
6077 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
|
6078 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
|
6079 pointer to the newly created realized face. */ |
24995 | 6080 |
6081 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6082 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
|
6083 struct face_cache *cache; |
24995 | 6084 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6085 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6086 struct face *base_face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6087 int former_face_id; |
24995 | 6088 { |
6089 struct face *face; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6090 |
24995 | 6091 /* LFACE must be fully specified. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6092 xassert (cache != NULL); |
24995 | 6093 check_lface_attrs (attrs); |
6094 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6095 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
|
6096 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6097 /* Remove the former face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6098 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
|
6099 uncache_face (cache, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6100 free_realized_face (cache->f, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6101 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6102 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6103 if (FRAME_WINDOW_P (cache->f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6104 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
|
6105 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
|
6106 face = realize_tty_face (cache, attrs, c); |
24995 | 6107 else |
6108 abort (); | |
6109 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6110 /* Insert the new face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6111 cache_face (cache, face, lface_hash (attrs)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6112 #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
|
6113 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
|
6114 load_face_font (cache->f, face, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6115 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6116 return face; |
6117 } | |
6118 | |
6119 | |
6120 /* 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
|
6121 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
|
6122 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
|
6123 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
|
6124 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
|
6125 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
|
6126 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
|
6127 face. */ |
24995 | 6128 |
6129 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6130 realize_x_face (cache, attrs, c, base_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6131 struct face_cache *cache; |
24995 | 6132 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6133 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6134 struct face *base_face; |
24995 | 6135 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6136 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 6137 struct face *face, *default_face; |
26875
d6aa11f2a4af
(choose_face_fontset_font): Delete codes for a
Kenichi Handa <handa@m17n.org>
parents:
26759
diff
changeset
|
6138 struct frame *f; |
24995 | 6139 Lisp_Object stipple, overline, strike_through, box; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6140 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6141 xassert (FRAME_WINDOW_P (cache->f)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6142 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
|
6143 || base_face); |
24995 | 6144 |
6145 /* Allocate a new realized face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6146 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6147 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6148 f = cache->f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6149 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6150 /* 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
|
6151 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
|
6152 different font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6153 if (!SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6154 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6155 bcopy (base_face, face, sizeof *face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6156 face->gc = 0; |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6157 |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6158 /* 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
|
6159 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
|
6160 face->background_defaulted_p = 1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6161 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
|
6162 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
|
6163 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
|
6164 face->box_color_defaulted_p = 1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6165 |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6166 /* 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
|
6167 face->font = NULL; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6168 return face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6169 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6170 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6171 /* 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
|
6172 |
24995 | 6173 /* Determine the font to use. Most of the time, the font will be |
6174 the same as the font of the default face, so try that first. */ | |
6175 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6176 if (default_face | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6177 && FACE_SUITABLE_FOR_CHAR_P (default_face, c) |
24995 | 6178 && lface_same_font_attributes_p (default_face->lface, attrs)) |
6179 { | |
6180 face->font = default_face->font; | |
6181 face->fontset = default_face->fontset; | |
6182 face->font_info_id = default_face->font_info_id; | |
6183 face->font_name = default_face->font_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6184 face->ascii_face = face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6185 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6186 /* 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
|
6187 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
|
6188 face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6189 face->fontset |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6190 = make_fontset_for_ascii_face (f, default_face->fontset); |
24995 | 6191 } |
6192 else | |
6193 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6194 /* 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
|
6195 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
|
6196 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
|
6197 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
|
6198 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
|
6199 are constructed from ATTRS. */ |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
6200 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
|
6201 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6202 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
|
6203 fontset = default_face->fontset; |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
6204 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
|
6205 face->font = NULL; /* to force realize_face to load font */ |
24995 | 6206 } |
6207 | |
6208 /* Load colors, and set remaining attributes. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6209 |
24995 | 6210 load_face_colors (f, face, attrs); |
6211 | |
6212 /* Set up box. */ | |
6213 box = attrs[LFACE_BOX_INDEX]; | |
6214 if (STRINGP (box)) | |
6215 { | |
6216 /* A simple box of line width 1 drawn in color given by | |
6217 the string. */ | |
6218 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX], | |
6219 LFACE_BOX_INDEX); | |
6220 face->box = FACE_SIMPLE_BOX; | |
6221 face->box_line_width = 1; | |
6222 } | |
6223 else if (INTEGERP (box)) | |
6224 { | |
6225 /* Simple box of specified line width in foreground color of the | |
6226 face. */ | |
6227 xassert (XINT (box) > 0); | |
6228 face->box = FACE_SIMPLE_BOX; | |
6229 face->box_line_width = XFASTINT (box); | |
6230 face->box_color = face->foreground; | |
6231 face->box_color_defaulted_p = 1; | |
6232 } | |
6233 else if (CONSP (box)) | |
6234 { | |
6235 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW | |
6236 being one of `raised' or `sunken'. */ | |
6237 face->box = FACE_SIMPLE_BOX; | |
6238 face->box_color = face->foreground; | |
6239 face->box_color_defaulted_p = 1; | |
6240 face->box_line_width = 1; | |
6241 | |
6242 while (CONSP (box)) | |
6243 { | |
6244 Lisp_Object keyword, value; | |
6245 | |
6246 keyword = XCAR (box); | |
6247 box = XCDR (box); | |
6248 | |
6249 if (!CONSP (box)) | |
6250 break; | |
6251 value = XCAR (box); | |
6252 box = XCDR (box); | |
6253 | |
6254 if (EQ (keyword, QCline_width)) | |
6255 { | |
6256 if (INTEGERP (value) && XINT (value) > 0) | |
6257 face->box_line_width = XFASTINT (value); | |
6258 } | |
6259 else if (EQ (keyword, QCcolor)) | |
6260 { | |
6261 if (STRINGP (value)) | |
6262 { | |
6263 face->box_color = load_color (f, face, value, | |
6264 LFACE_BOX_INDEX); | |
6265 face->use_box_color_for_shadows_p = 1; | |
6266 } | |
6267 } | |
6268 else if (EQ (keyword, QCstyle)) | |
6269 { | |
6270 if (EQ (value, Qreleased_button)) | |
6271 face->box = FACE_RAISED_BOX; | |
6272 else if (EQ (value, Qpressed_button)) | |
6273 face->box = FACE_SUNKEN_BOX; | |
6274 } | |
6275 } | |
6276 } | |
6277 | |
6278 /* Text underline, overline, strike-through. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6279 |
24995 | 6280 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt)) |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6281 { |
24995 | 6282 /* Use default color (same as foreground color). */ |
6283 face->underline_p = 1; | |
6284 face->underline_defaulted_p = 1; | |
6285 face->underline_color = 0; | |
6286 } | |
6287 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX])) | |
6288 { | |
6289 /* Use specified color. */ | |
6290 face->underline_p = 1; | |
6291 face->underline_defaulted_p = 0; | |
6292 face->underline_color | |
6293 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX], | |
6294 LFACE_UNDERLINE_INDEX); | |
6295 } | |
6296 else if (NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6297 { | |
6298 face->underline_p = 0; | |
6299 face->underline_defaulted_p = 0; | |
6300 face->underline_color = 0; | |
6301 } | |
6302 | |
6303 overline = attrs[LFACE_OVERLINE_INDEX]; | |
6304 if (STRINGP (overline)) | |
6305 { | |
6306 face->overline_color | |
6307 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX], | |
6308 LFACE_OVERLINE_INDEX); | |
6309 face->overline_p = 1; | |
6310 } | |
6311 else if (EQ (overline, Qt)) | |
6312 { | |
6313 face->overline_color = face->foreground; | |
6314 face->overline_color_defaulted_p = 1; | |
6315 face->overline_p = 1; | |
6316 } | |
6317 | |
6318 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX]; | |
6319 if (STRINGP (strike_through)) | |
6320 { | |
6321 face->strike_through_color | |
6322 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX], | |
6323 LFACE_STRIKE_THROUGH_INDEX); | |
6324 face->strike_through_p = 1; | |
6325 } | |
6326 else if (EQ (strike_through, Qt)) | |
6327 { | |
6328 face->strike_through_color = face->foreground; | |
6329 face->strike_through_color_defaulted_p = 1; | |
6330 face->strike_through_p = 1; | |
6331 } | |
6332 | |
6333 stipple = attrs[LFACE_STIPPLE_INDEX]; | |
6334 if (!NILP (stipple)) | |
6335 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h); | |
6336 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6337 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c)); |
24995 | 6338 return face; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6339 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6340 } |
6341 | |
6342 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6343 /* Map a specified color of face FACE on frame F to a tty color index. |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6344 IDX is either LFACE_FOREGROUND_INDEX or LFACE_BACKGROUND_INDEX, and |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6345 specifies which color to map. Set *DEFAULTED to 1 if mapping to the |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6346 default foreground/background colors. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6347 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6348 static void |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6349 map_tty_color (f, face, idx, defaulted) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6350 struct frame *f; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6351 struct face *face; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6352 enum lface_attribute_index idx; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6353 int *defaulted; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6354 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6355 Lisp_Object frame, color, def; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6356 int foreground_p = idx == LFACE_FOREGROUND_INDEX; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6357 unsigned long default_pixel, default_other_pixel, pixel; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6358 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6359 xassert (idx == LFACE_FOREGROUND_INDEX || idx == LFACE_BACKGROUND_INDEX); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6360 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6361 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6362 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6363 pixel = default_pixel = FACE_TTY_DEFAULT_FG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6364 default_other_pixel = FACE_TTY_DEFAULT_BG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6365 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6366 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6367 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6368 pixel = default_pixel = FACE_TTY_DEFAULT_BG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6369 default_other_pixel = FACE_TTY_DEFAULT_FG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6370 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6371 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6372 XSETFRAME (frame, f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6373 color = face->lface[idx]; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6374 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6375 if (STRINGP (color) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6376 && XSTRING (color)->size |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6377 && CONSP (Vtty_defined_color_alist) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6378 && (def = assq_no_quit (color, call1 (Qtty_color_alist, frame)), |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6379 CONSP (def))) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6380 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6381 /* Associations in tty-defined-color-alist are of the form |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6382 (NAME INDEX R G B). We need the INDEX part. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6383 pixel = XINT (XCAR (XCDR (def))); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6384 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6385 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6386 if (pixel == default_pixel && STRINGP (color)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6387 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6388 pixel = load_color (f, face, color, idx); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6389 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6390 #if defined (MSDOS) || defined (WINDOWSNT) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6391 /* If the foreground of the default face is the default color, |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6392 use the foreground color defined by the frame. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6393 #ifdef MSDOS |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6394 if (FRAME_MSDOS_P (f)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6395 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6396 #endif /* MSDOS */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6397 if (pixel == default_pixel |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6398 || pixel == FACE_TTY_DEFAULT_COLOR) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6399 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6400 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6401 pixel = FRAME_FOREGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6402 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6403 pixel = FRAME_BACKGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6404 face->lface[idx] = tty_color_name (f, pixel); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6405 *defaulted = 1; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6406 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6407 else if (pixel == default_other_pixel) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6408 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6409 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6410 pixel = FRAME_BACKGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6411 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6412 pixel = FRAME_FOREGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6413 face->lface[idx] = tty_color_name (f, pixel); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6414 *defaulted = 1; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6415 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6416 #ifdef MSDOS |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6417 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6418 #endif |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6419 #endif /* MSDOS or WINDOWSNT */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6420 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6421 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6422 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6423 face->foreground = pixel; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6424 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6425 face->background = pixel; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6426 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6427 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6428 |
24995 | 6429 /* 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
|
6430 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
|
6431 pointer to the newly created realized face. */ |
24995 | 6432 |
6433 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6434 realize_tty_face (cache, attrs, c) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6435 struct face_cache *cache; |
24995 | 6436 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6437 int c; |
24995 | 6438 { |
6439 struct face *face; | |
6440 int weight, slant; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6441 int face_colors_defaulted = 0; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6442 struct frame *f = cache->f; |
24995 | 6443 |
6444 /* Frame must be a termcap frame. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6445 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
|
6446 |
24995 | 6447 /* Allocate a new realized face. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6448 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6449 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty"; |
24995 | 6450 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6451 /* Map face attributes to TTY appearances. We map slant to |
24995 | 6452 dimmed text because we want italic text to appear differently |
6453 and because dimmed text is probably used infrequently. */ | |
6454 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
6455 slant = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
6456 | |
6457 if (weight > XLFD_WEIGHT_MEDIUM) | |
6458 face->tty_bold_p = 1; | |
6459 if (weight < XLFD_WEIGHT_MEDIUM || slant != XLFD_SLANT_ROMAN) | |
6460 face->tty_dim_p = 1; | |
6461 if (!NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6462 face->tty_underline_p = 1; | |
6463 if (!NILP (attrs[LFACE_INVERSE_INDEX])) | |
6464 face->tty_reverse_p = 1; | |
6465 | |
6466 /* Map color names to color indices. */ | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6467 map_tty_color (f, face, LFACE_FOREGROUND_INDEX, &face_colors_defaulted); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6468 map_tty_color (f, face, LFACE_BACKGROUND_INDEX, &face_colors_defaulted); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6469 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6470 /* 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
|
6471 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
|
6472 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
|
6473 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
|
6474 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6475 unsigned long tem = face->foreground; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6476 face->foreground = face->background; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6477 face->background = tem; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6478 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6479 |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6480 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
|
6481 && face->tty_bold_p |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6482 && 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
|
6483 && 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
|
6484 face->tty_bold_p = 0; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6485 |
24995 | 6486 return face; |
6487 } | |
6488 | |
6489 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6490 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
|
6491 Ftty_suppress_bold_inverse_default_colors, |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6492 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
|
6493 "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
|
6494 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
|
6495 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
|
6496 color of the display and whose background is the default foreground color.\n\ |
30707
093d1cfc207f
(Ftty_suppress_bold_inverse_default_colors): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
30698
diff
changeset
|
6497 For such faces, the bold face attribute is ignored if this variable\n\ |
093d1cfc207f
(Ftty_suppress_bold_inverse_default_colors): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
30698
diff
changeset
|
6498 is non-nil.") |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6499 (suppress) |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6500 Lisp_Object suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6501 { |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6502 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
|
6503 ++face_change_count; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6504 return suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6505 } |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6506 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6507 |
24995 | 6508 |
6509 /*********************************************************************** | |
6510 Computing Faces | |
6511 ***********************************************************************/ | |
6512 | |
6513 /* Return the ID of the face to use to display character CH with face | |
6514 property PROP on frame F in current_buffer. */ | |
6515 | |
6516 int | |
6517 compute_char_face (f, ch, prop) | |
6518 struct frame *f; | |
6519 int ch; | |
6520 Lisp_Object prop; | |
6521 { | |
6522 int face_id; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6523 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6524 if (NILP (current_buffer->enable_multibyte_characters)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6525 ch = -1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6526 |
24995 | 6527 if (NILP (prop)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6528 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6529 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
|
6530 face_id = FACE_FOR_CHAR (f, face, ch); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6531 } |
24995 | 6532 else |
6533 { | |
6534 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6535 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6536 bcopy (default_face->lface, attrs, sizeof attrs); | |
6537 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
|
6538 face_id = lookup_face (f, attrs, ch, NULL); |
24995 | 6539 } |
6540 | |
6541 return face_id; | |
6542 } | |
6543 | |
6544 | |
6545 /* Return the face ID associated with buffer position POS for | |
6546 displaying ASCII characters. Return in *ENDPTR the position at | |
6547 which a different face is needed, as far as text properties and | |
6548 overlays are concerned. W is a window displaying current_buffer. | |
6549 | |
6550 REGION_BEG, REGION_END delimit the region, so it can be | |
6551 highlighted. | |
6552 | |
6553 LIMIT is a position not to scan beyond. That is to limit the time | |
6554 this function can take. | |
6555 | |
6556 If MOUSE is non-zero, use the character's mouse-face, not its face. | |
6557 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6558 The face returned is suitable for displaying ASCII characters. */ |
24995 | 6559 |
6560 int | |
6561 face_at_buffer_position (w, pos, region_beg, region_end, | |
6562 endptr, limit, mouse) | |
2391 | 6563 struct window *w; |
2342 | 6564 int pos; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6565 int region_beg, region_end; |
2342 | 6566 int *endptr; |
5084
863e092a5891
(compute_char_face): Accept new arg LIMIT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6567 int limit; |
6615
96ddf85642d1
(compute_char_face): New arg MOUSE.
Richard M. Stallman <rms@gnu.org>
parents:
5858
diff
changeset
|
6568 int mouse; |
2342 | 6569 { |
24995 | 6570 struct frame *f = XFRAME (w->frame); |
6571 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
|
6572 Lisp_Object prop, position; |
24995 | 6573 int i, noverlays; |
2342 | 6574 Lisp_Object *overlay_vec; |
2391 | 6575 Lisp_Object frame; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6576 int endpos; |
24995 | 6577 Lisp_Object propname = mouse ? Qmouse_face : Qface; |
6578 Lisp_Object limit1, end; | |
6579 struct face *default_face; | |
6580 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
|
6581 |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6582 /* 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
|
6583 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
|
6584 /* xassert (XBUFFER (w->buffer) == current_buffer); */ |
2391 | 6585 |
9284
a969e0eefaf5
(compute_char_face): Use new accessor macros instead of calling XSET directly.
Karl Heuer <kwzh@gnu.org>
parents:
9186
diff
changeset
|
6586 XSETFRAME (frame, f); |
24995 | 6587 XSETFASTINT (position, pos); |
2342 | 6588 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6589 endpos = ZV; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6590 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
|
6591 endpos = region_beg; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6592 |
24995 | 6593 /* Get the `face' or `mouse_face' text property at POS, and |
6594 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
|
6595 prop = Fget_text_property (position, propname, w->buffer); |
24995 | 6596 XSETFASTINT (limit1, (limit < endpos ? limit : endpos)); |
6597 end = Fnext_single_property_change (position, propname, w->buffer, limit1); | |
6598 if (INTEGERP (end)) | |
6599 endpos = XINT (end); | |
6600 | |
6601 /* 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
|
6602 { |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6603 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
|
6604 int len; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6605 |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6606 /* 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
|
6607 len = 40; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6608 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
|
6609 noverlays = overlays_at (pos, 0, &overlay_vec, &len, |
30698
75ff6aa32bf0
(face_at_buffer_position): Update call to overlays_at.
Miles Bader <miles@gnu.org>
parents:
30601
diff
changeset
|
6610 &next_overlay, NULL, 0); |
24995 | 6611 |
6612 /* If there are more than 40, make enough space for all, and try | |
6613 again. */ | |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6614 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
|
6615 { |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6616 len = noverlays; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6617 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
|
6618 noverlays = overlays_at (pos, 0, &overlay_vec, &len, |
30698
75ff6aa32bf0
(face_at_buffer_position): Update call to overlays_at.
Miles Bader <miles@gnu.org>
parents:
30601
diff
changeset
|
6619 &next_overlay, NULL, 0); |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6620 } |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6621 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6622 if (next_overlay < endpos) |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6623 endpos = next_overlay; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6624 } |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6625 |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6626 *endptr = endpos; |
2342 | 6627 |
24995 | 6628 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
|
6629 |
24995 | 6630 /* Optimize common cases where we can use the default face. */ |
6631 if (noverlays == 0 | |
6632 && NILP (prop) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6633 && !(pos >= region_beg && pos < region_end)) |
24995 | 6634 return DEFAULT_FACE_ID; |
6635 | |
6636 /* Begin with attributes from the default face. */ | |
6637 bcopy (default_face->lface, attrs, sizeof attrs); | |
6638 | |
6639 /* Merge in attributes specified via text properties. */ | |
6640 if (!NILP (prop)) | |
6641 merge_face_vector_with_property (f, attrs, prop); | |
6642 | |
6643 /* 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
|
6644 noverlays = sort_overlays (overlay_vec, noverlays, w); |
2342 | 6645 for (i = 0; i < noverlays; i++) |
6646 { | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6647 Lisp_Object oend; |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6648 int oendpos; |
9186
45bac5feb065
(compute_char_face): Handle list as overlay face property.
Richard M. Stallman <rms@gnu.org>
parents:
9184
diff
changeset
|
6649 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6650 prop = Foverlay_get (overlay_vec[i], propname); |
24995 | 6651 if (!NILP (prop)) |
6652 merge_face_vector_with_property (f, attrs, prop); | |
2342 | 6653 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6654 oend = OVERLAY_END (overlay_vec[i]); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6655 oendpos = OVERLAY_POSITION (oend); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6656 if (oendpos < endpos) |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6657 endpos = oendpos; |
2342 | 6658 } |
6659 | |
24995 | 6660 /* 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
|
6661 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
|
6662 { |
24995 | 6663 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
31178 | 6664 merge_face_vectors (f, XVECTOR (region_face)->contents, attrs, Qnil); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6665 |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6666 if (region_end < endpos) |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6667 endpos = region_end; |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6668 } |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6669 |
2342 | 6670 *endptr = endpos; |
6671 | |
24995 | 6672 /* 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
|
6673 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6674 return lookup_face (f, attrs, 0, NULL); |
2342 | 6675 } |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6676 |
24995 | 6677 |
6678 /* 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
|
6679 window W, for ASCII characters. |
24995 | 6680 |
6681 If STRING is an overlay string, it comes from position BUFPOS in | |
6682 current_buffer, otherwise BUFPOS is zero to indicate that STRING is | |
6683 not an overlay string. W must display the current buffer. | |
6684 REGION_BEG and REGION_END give the start and end positions of the | |
6685 region; both are -1 if no region is visible. BASE_FACE_ID is the | |
6686 id of the basic face to merge with. It is usually equal to | |
25546 | 6687 DEFAULT_FACE_ID but can be MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID |
24995 | 6688 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
|
6689 |
24995 | 6690 Set *ENDPTR to the next position where to check for faces in |
6691 STRING; -1 if the face is constant from POS to the end of the | |
6692 string. | |
6693 | |
6694 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
|
6695 for displaying ASCII characters. */ |
24995 | 6696 |
6697 int | |
6698 face_at_string_position (w, string, pos, bufpos, region_beg, | |
6699 region_end, endptr, base_face_id) | |
6700 struct window *w; | |
6701 Lisp_Object string; | |
6702 int pos, bufpos; | |
6703 int region_beg, region_end; | |
6704 int *endptr; | |
6705 enum face_id base_face_id; | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6706 { |
24995 | 6707 Lisp_Object prop, position, end, limit; |
6708 struct frame *f = XFRAME (WINDOW_FRAME (w)); | |
6709 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6710 struct face *base_face; | |
6711 int multibyte_p = STRING_MULTIBYTE (string); | |
6712 | |
6713 /* Get the value of the face property at the current position within | |
6714 STRING. Value is nil if there is no face property. */ | |
6715 XSETFASTINT (position, pos); | |
6716 prop = Fget_text_property (position, Qface, string); | |
6717 | |
6718 /* Get the next position at which to check for faces. Value of end | |
6719 is nil if face is constant all the way to the end of the string. | |
6720 Otherwise it is a string position where to check faces next. | |
6721 Limit is the maximum position up to which to check for property | |
6722 changes in Fnext_single_property_change. Strings are usually | |
6723 short, so set the limit to the end of the string. */ | |
6724 XSETFASTINT (limit, XSTRING (string)->size); | |
6725 end = Fnext_single_property_change (position, Qface, string, limit); | |
6726 if (INTEGERP (end)) | |
6727 *endptr = XFASTINT (end); | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6728 else |
24995 | 6729 *endptr = -1; |
6730 | |
6731 base_face = FACE_FROM_ID (f, base_face_id); | |
6732 xassert (base_face); | |
6733 | |
6734 /* Optimize the default case that there is no face property and we | |
6735 are not in the region. */ | |
6736 if (NILP (prop) | |
6737 && (base_face_id != DEFAULT_FACE_ID | |
6738 /* BUFPOS <= 0 means STRING is not an overlay string, so | |
6739 that the region doesn't have to be taken into account. */ | |
6740 || bufpos <= 0 | |
6741 || bufpos < region_beg | |
6742 || bufpos >= region_end) | |
6743 && (multibyte_p | |
6744 /* We can't realize faces for different charsets differently | |
6745 if we don't have fonts, so we can stop here if not working | |
6746 on a window-system frame. */ | |
6747 || !FRAME_WINDOW_P (f) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6748 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0))) |
24995 | 6749 return base_face->id; |
6750 | |
6751 /* Begin with attributes from the base face. */ | |
6752 bcopy (base_face->lface, attrs, sizeof attrs); | |
6753 | |
6754 /* Merge in attributes specified via text properties. */ | |
6755 if (!NILP (prop)) | |
6756 merge_face_vector_with_property (f, attrs, prop); | |
6757 | |
6758 /* If in the region, merge in the region face. */ | |
6759 if (bufpos | |
6760 && bufpos >= region_beg | |
6761 && bufpos < region_end) | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6762 { |
24995 | 6763 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
31178 | 6764 merge_face_vectors (f, XVECTOR (region_face)->contents, attrs, Qnil); |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6765 } |
24995 | 6766 |
6767 /* 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
|
6768 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6769 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
|
6770 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6771 |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6772 |
2336 | 6773 |
24995 | 6774 /*********************************************************************** |
6775 Tests | |
6776 ***********************************************************************/ | |
6777 | |
6778 #if GLYPH_DEBUG | |
6779 | |
6780 /* Print the contents of the realized face FACE to stderr. */ | |
6781 | |
6782 static void | |
6783 dump_realized_face (face) | |
6784 struct face *face; | |
2336 | 6785 { |
24995 | 6786 fprintf (stderr, "ID: %d\n", face->id); |
6787 #ifdef HAVE_X_WINDOWS | |
6788 fprintf (stderr, "gc: %d\n", (int) face->gc); | |
6789 #endif | |
6790 fprintf (stderr, "foreground: 0x%lx (%s)\n", | |
6791 face->foreground, | |
6792 XSTRING (face->lface[LFACE_FOREGROUND_INDEX])->data); | |
6793 fprintf (stderr, "background: 0x%lx (%s)\n", | |
6794 face->background, | |
6795 XSTRING (face->lface[LFACE_BACKGROUND_INDEX])->data); | |
6796 fprintf (stderr, "font_name: %s (%s)\n", | |
6797 face->font_name, | |
6798 XSTRING (face->lface[LFACE_FAMILY_INDEX])->data); | |
6799 #ifdef HAVE_X_WINDOWS | |
6800 fprintf (stderr, "font = %p\n", face->font); | |
6801 #endif | |
6802 fprintf (stderr, "font_info_id = %d\n", face->font_info_id); | |
6803 fprintf (stderr, "fontset: %d\n", face->fontset); | |
6804 fprintf (stderr, "underline: %d (%s)\n", | |
6805 face->underline_p, | |
6806 XSTRING (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))->data); | |
6807 fprintf (stderr, "hash: %d\n", face->hash); | |
6808 fprintf (stderr, "charset: %d\n", face->charset); | |
6809 } | |
6810 | |
6811 | |
6812 DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, "") | |
6813 (n) | |
6814 Lisp_Object n; | |
6815 { | |
6816 if (NILP (n)) | |
2336 | 6817 { |
24995 | 6818 int i; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6819 |
24995 | 6820 fprintf (stderr, "font selection order: "); |
6821 for (i = 0; i < DIM (font_sort_order); ++i) | |
6822 fprintf (stderr, "%d ", font_sort_order[i]); | |
6823 fprintf (stderr, "\n"); | |
6824 | |
6825 fprintf (stderr, "alternative fonts: "); | |
6826 debug_print (Vface_alternative_font_family_alist); | |
6827 fprintf (stderr, "\n"); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6828 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6829 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i) |
24995 | 6830 Fdump_face (make_number (i)); |
2336 | 6831 } |
24995 | 6832 else |
6833 { | |
6834 struct face *face; | |
6835 CHECK_NUMBER (n, 0); | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6836 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n)); |
24995 | 6837 if (face == NULL) |
6838 error ("Not a valid face"); | |
6839 dump_realized_face (face); | |
6840 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6841 |
2336 | 6842 return Qnil; |
6843 } | |
6844 | |
6845 | |
24995 | 6846 DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources, |
6847 0, 0, 0, "") | |
6848 () | |
2336 | 6849 { |
24995 | 6850 fprintf (stderr, "number of colors = %d\n", ncolors_allocated); |
6851 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated); | |
6852 fprintf (stderr, "number of GCs = %d\n", ngcs); | |
2336 | 6853 return Qnil; |
6854 } | |
24995 | 6855 |
6856 #endif /* GLYPH_DEBUG != 0 */ | |
6857 | |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6858 |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6859 |
24995 | 6860 /*********************************************************************** |
6861 Initialization | |
6862 ***********************************************************************/ | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
6863 |
2336 | 6864 void |
2391 | 6865 syms_of_xfaces () |
2336 | 6866 { |
2391 | 6867 Qface = intern ("face"); |
6868 staticpro (&Qface); | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6869 Qbitmap_spec_p = intern ("bitmap-spec-p"); |
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6870 staticpro (&Qbitmap_spec_p); |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6871 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
|
6872 staticpro (&Qframe_update_face_colors); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6873 |
24995 | 6874 /* Lisp face attribute keywords. */ |
6875 QCfamily = intern (":family"); | |
6876 staticpro (&QCfamily); | |
6877 QCheight = intern (":height"); | |
6878 staticpro (&QCheight); | |
6879 QCweight = intern (":weight"); | |
6880 staticpro (&QCweight); | |
6881 QCslant = intern (":slant"); | |
6882 staticpro (&QCslant); | |
6883 QCunderline = intern (":underline"); | |
6884 staticpro (&QCunderline); | |
6885 QCinverse_video = intern (":inverse-video"); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6886 staticpro (&QCinverse_video); |
24995 | 6887 QCreverse_video = intern (":reverse-video"); |
6888 staticpro (&QCreverse_video); | |
6889 QCforeground = intern (":foreground"); | |
6890 staticpro (&QCforeground); | |
6891 QCbackground = intern (":background"); | |
6892 staticpro (&QCbackground); | |
6893 QCstipple = intern (":stipple");; | |
6894 staticpro (&QCstipple); | |
6895 QCwidth = intern (":width"); | |
6896 staticpro (&QCwidth); | |
6897 QCfont = intern (":font"); | |
6898 staticpro (&QCfont); | |
6899 QCbold = intern (":bold"); | |
6900 staticpro (&QCbold); | |
6901 QCitalic = intern (":italic"); | |
6902 staticpro (&QCitalic); | |
6903 QCoverline = intern (":overline"); | |
6904 staticpro (&QCoverline); | |
6905 QCstrike_through = intern (":strike-through"); | |
6906 staticpro (&QCstrike_through); | |
6907 QCbox = intern (":box"); | |
6908 staticpro (&QCbox); | |
31178 | 6909 QCinherit = intern (":inherit"); |
6910 staticpro (&QCinherit); | |
24995 | 6911 |
6912 /* Symbols used for Lisp face attribute values. */ | |
6913 QCcolor = intern (":color"); | |
6914 staticpro (&QCcolor); | |
6915 QCline_width = intern (":line-width"); | |
6916 staticpro (&QCline_width); | |
6917 QCstyle = intern (":style"); | |
6918 staticpro (&QCstyle); | |
6919 Qreleased_button = intern ("released-button"); | |
6920 staticpro (&Qreleased_button); | |
6921 Qpressed_button = intern ("pressed-button"); | |
6922 staticpro (&Qpressed_button); | |
6923 Qnormal = intern ("normal"); | |
6924 staticpro (&Qnormal); | |
6925 Qultra_light = intern ("ultra-light"); | |
6926 staticpro (&Qultra_light); | |
6927 Qextra_light = intern ("extra-light"); | |
6928 staticpro (&Qextra_light); | |
6929 Qlight = intern ("light"); | |
6930 staticpro (&Qlight); | |
6931 Qsemi_light = intern ("semi-light"); | |
6932 staticpro (&Qsemi_light); | |
6933 Qsemi_bold = intern ("semi-bold"); | |
6934 staticpro (&Qsemi_bold); | |
6935 Qbold = intern ("bold"); | |
6936 staticpro (&Qbold); | |
6937 Qextra_bold = intern ("extra-bold"); | |
6938 staticpro (&Qextra_bold); | |
6939 Qultra_bold = intern ("ultra-bold"); | |
6940 staticpro (&Qultra_bold); | |
6941 Qoblique = intern ("oblique"); | |
6942 staticpro (&Qoblique); | |
6943 Qitalic = intern ("italic"); | |
6944 staticpro (&Qitalic); | |
6945 Qreverse_oblique = intern ("reverse-oblique"); | |
6946 staticpro (&Qreverse_oblique); | |
6947 Qreverse_italic = intern ("reverse-italic"); | |
6948 staticpro (&Qreverse_italic); | |
6949 Qultra_condensed = intern ("ultra-condensed"); | |
6950 staticpro (&Qultra_condensed); | |
6951 Qextra_condensed = intern ("extra-condensed"); | |
6952 staticpro (&Qextra_condensed); | |
6953 Qcondensed = intern ("condensed"); | |
6954 staticpro (&Qcondensed); | |
6955 Qsemi_condensed = intern ("semi-condensed"); | |
6956 staticpro (&Qsemi_condensed); | |
6957 Qsemi_expanded = intern ("semi-expanded"); | |
6958 staticpro (&Qsemi_expanded); | |
6959 Qexpanded = intern ("expanded"); | |
6960 staticpro (&Qexpanded); | |
6961 Qextra_expanded = intern ("extra-expanded"); | |
6962 staticpro (&Qextra_expanded); | |
6963 Qultra_expanded = intern ("ultra-expanded"); | |
6964 staticpro (&Qultra_expanded); | |
6965 Qbackground_color = intern ("background-color"); | |
6966 staticpro (&Qbackground_color); | |
6967 Qforeground_color = intern ("foreground-color"); | |
6968 staticpro (&Qforeground_color); | |
6969 Qunspecified = intern ("unspecified"); | |
6970 staticpro (&Qunspecified); | |
6971 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6972 Qface_alias = intern ("face-alias"); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6973 staticpro (&Qface_alias); |
24995 | 6974 Qdefault = intern ("default"); |
6975 staticpro (&Qdefault); | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25389
diff
changeset
|
6976 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
|
6977 staticpro (&Qtool_bar); |
24995 | 6978 Qregion = intern ("region"); |
6979 staticpro (&Qregion); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6980 Qfringe = intern ("fringe"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6981 staticpro (&Qfringe); |
25546 | 6982 Qheader_line = intern ("header-line"); |
6983 staticpro (&Qheader_line); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6984 Qscroll_bar = intern ("scroll-bar"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6985 staticpro (&Qscroll_bar); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
6986 Qmenu = intern ("menu"); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
6987 staticpro (&Qmenu); |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6988 Qcursor = intern ("cursor"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6989 staticpro (&Qcursor); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6990 Qborder = intern ("border"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6991 staticpro (&Qborder); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6992 Qmouse = intern ("mouse"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6993 staticpro (&Qmouse); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6994 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
|
6995 staticpro (&Qtty_color_desc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6996 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
|
6997 staticpro (&Qtty_color_by_index); |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6998 Qtty_color_alist = intern ("tty-color-alist"); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6999 staticpro (&Qtty_color_alist); |
24995 | 7000 |
30304
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
7001 Vface_alternative_font_family_alist = Qnil; |
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
7002 staticpro (&Vface_alternative_font_family_alist); |
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
7003 |
24995 | 7004 defsubr (&Sinternal_make_lisp_face); |
7005 defsubr (&Sinternal_lisp_face_p); | |
7006 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
|
7007 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 7008 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
|
7009 #endif |
27120
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
7010 defsubr (&Scolor_gray_p); |
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
7011 defsubr (&Scolor_supported_p); |
24995 | 7012 defsubr (&Sinternal_get_lisp_face_attribute); |
7013 defsubr (&Sinternal_lisp_face_attribute_values); | |
7014 defsubr (&Sinternal_lisp_face_equal_p); | |
7015 defsubr (&Sinternal_lisp_face_empty_p); | |
7016 defsubr (&Sinternal_copy_lisp_face); | |
7017 defsubr (&Sinternal_merge_in_global_face); | |
7018 defsubr (&Sface_font); | |
7019 defsubr (&Sframe_face_alist); | |
7020 defsubr (&Sinternal_set_font_selection_order); | |
7021 defsubr (&Sinternal_set_alternative_font_family_alist); | |
7022 #if GLYPH_DEBUG | |
7023 defsubr (&Sdump_face); | |
7024 defsubr (&Sshow_face_resources); | |
7025 #endif /* GLYPH_DEBUG */ | |
7026 defsubr (&Sclear_face_cache); | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
7027 defsubr (&Stty_suppress_bold_inverse_default_colors); |
24995 | 7028 |
29711
913fab478495
(syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
Gerd Moellmann <gerd@gnu.org>
parents:
29599
diff
changeset
|
7029 #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
|
7030 defsubr (&Sdump_colors); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
7031 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
7032 |
25270 | 7033 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit, |
7034 "*Limit for font matching.\n\ | |
7035 If an integer > 0, font matching functions won't load more than\n\ | |
7036 that number of fonts when searching for a matching font."); | |
7037 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT); | |
7038 | |
24995 | 7039 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults, |
7040 "List of global face definitions (for internal use only.)"); | |
7041 Vface_new_frame_defaults = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
7042 |
24995 | 7043 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple, |
7044 "*Default stipple pattern used on monochrome displays.\n\ | |
7045 This stipple pattern is used on monochrome displays\n\ | |
7046 instead of shades of gray for a face background color.\n\ | |
7047 See `set-face-stipple' for possible values for this variable."); | |
7048 Vface_default_stipple = build_string ("gray3"); | |
7049 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7050 DEFVAR_LISP ("tty-defined-color-alist", &Vtty_defined_color_alist, |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7051 "An alist of defined terminal colors and their RGB values."); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7052 Vtty_defined_color_alist = Qnil; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7053 |
24995 | 7054 #if SCALABLE_FONTS |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
7055 |
24995 | 7056 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed, |
7057 "Allowed scalable fonts.\n\ | |
7058 A value of nil means don't allow any scalable fonts.\n\ | |
7059 A value of t means allow any scalable font.\n\ | |
7060 Otherwise, value must be a list of regular expressions. A font may be\n\ | |
7061 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
|
7062 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7063 /* 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
|
7064 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
|
7065 Vscalable_fonts_allowed = Qt; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7066 #else |
24995 | 7067 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
|
7068 #endif |
24995 | 7069 #endif /* SCALABLE_FONTS */ |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
7070 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7071 #ifdef HAVE_WINDOW_SYSTEM |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
7072 defsubr (&Sbitmap_spec_p); |
24995 | 7073 defsubr (&Sx_list_fonts); |
7074 defsubr (&Sinternal_face_x_get_resource); | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
7075 defsubr (&Sx_family_fonts); |
24995 | 7076 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
|
7077 #endif /* HAVE_WINDOW_SYSTEM */ |
2336 | 7078 } |