Mercurial > emacs
annotate src/xfaces.c @ 32534:4df77b11080e
(Distracting NSA): Change the example.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 16 Oct 2000 14:22:29 +0000 |
parents | 01156edaa3f9 |
children | 923b8d6d8277 |
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 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25890
diff
changeset
|
182 #include <config.h> |
2336 | 183 #include <sys/types.h> |
184 #include <sys/stat.h> | |
185 #include "lisp.h" | |
17047 | 186 #include "charset.h" |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
187 #include "frame.h" |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
188 |
29897
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
189 #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
|
190 #include "fontset.h" |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
191 #endif /* HAVE_WINDOW_SYSTEM */ |
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
192 |
9572 | 193 #ifdef HAVE_X_WINDOWS |
2336 | 194 #include "xterm.h" |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
195 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
196 #include <Xm/Xm.h> |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
197 #include <Xm/XmStrDefs.h> |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
198 #endif /* USE_MOTIF */ |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
199 #endif /* HAVE_X_WINDOWS */ |
24995 | 200 |
9572 | 201 #ifdef MSDOS |
202 #include "dosfns.h" | |
203 #endif | |
24995 | 204 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
205 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
206 #include "w32term.h" |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
207 #include "fontset.h" |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
208 /* 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
|
209 code with #ifdef blocks. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
210 #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
|
211 #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
|
212 #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
|
213 #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
|
214 #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
|
215 #define GCGraphicsExposures 0 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
216 /* 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
|
217 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
|
218 #define FONT_WIDTH FONT_MAX_WIDTH |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
219 #endif /* WINDOWSNT */ |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
220 |
2336 | 221 #include "buffer.h" |
2391 | 222 #include "dispextern.h" |
2438 | 223 #include "blockinput.h" |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
224 #include "window.h" |
8848 | 225 #include "intervals.h" |
2336 | 226 |
9572 | 227 #ifdef HAVE_X_WINDOWS |
24995 | 228 |
229 /* 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
|
230 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
|
231 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
|
232 #included. */ |
24995 | 233 |
3436
291f28da7ea1
Test XOS_NEEDS_TIME_H, not HPUX, for including time.hj.
Richard M. Stallman <rms@gnu.org>
parents:
3401
diff
changeset
|
234 #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
|
235 #include <time.h> |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
236 #undef USG |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
237 #include <X11/Xos.h> |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
238 #define USG |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
239 #define __TIMEVAL__ |
24995 | 240 #else /* not XOS_NEEDS_TIME_H */ |
2336 | 241 #include <X11/Xos.h> |
24995 | 242 #endif /* not XOS_NEEDS_TIME_H */ |
243 | |
9572 | 244 #endif /* HAVE_X_WINDOWS */ |
24995 | 245 |
246 #include <stdio.h> | |
247 #include <ctype.h> | |
248 #include "keyboard.h" | |
249 | |
250 #ifndef max | |
251 #define max(A, B) ((A) > (B) ? (A) : (B)) | |
252 #define min(A, B) ((A) < (B) ? (A) : (B)) | |
253 #define abs(X) ((X) < 0 ? -(X) : (X)) | |
254 #endif | |
255 | |
256 /* Non-zero if face attribute ATTR is unspecified. */ | |
257 | |
258 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified) | |
259 | |
260 /* Value is the number of elements of VECTOR. */ | |
261 | |
262 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR)) | |
263 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
264 /* Make a copy of string S on the stack using alloca. Value is a pointer |
24995 | 265 to the copy. */ |
266 | |
267 #define STRDUPA(S) strcpy ((char *) alloca (strlen ((S)) + 1), (S)) | |
268 | |
269 /* Make a copy of the contents of Lisp string S on the stack using | |
270 alloca. Value is a pointer to the copy. */ | |
271 | |
272 #define LSTRDUPA(S) STRDUPA (XSTRING ((S))->data) | |
273 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
274 /* Size of hash table of realized faces in face caches (should be a |
24995 | 275 prime number). */ |
276 | |
277 #define FACE_CACHE_BUCKETS_SIZE 1001 | |
278 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
279 /* 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
|
280 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
281 #ifndef HAVE_X_WINDOWS |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
282 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
283 typedef struct |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
284 { |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
285 unsigned long pixel; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
286 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
|
287 char flags; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
288 char pad; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
289 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
290 XColor; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
291 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
292 #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
|
293 |
24995 | 294 /* Keyword symbols used for face attribute names. */ |
295 | |
296 Lisp_Object QCfamily, QCheight, QCweight, QCslant, QCunderline; | |
297 Lisp_Object QCinverse_video, QCforeground, QCbackground, QCstipple; | |
298 Lisp_Object QCwidth, QCfont, QCbold, QCitalic; | |
299 Lisp_Object QCreverse_video; | |
31178 | 300 Lisp_Object QCoverline, QCstrike_through, QCbox, QCinherit; |
24995 | 301 |
302 /* Symbols used for attribute values. */ | |
303 | |
304 Lisp_Object Qnormal, Qbold, Qultra_light, Qextra_light, Qlight; | |
305 Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold; | |
306 Lisp_Object Qoblique, Qitalic, Qreverse_oblique, Qreverse_italic; | |
307 Lisp_Object Qultra_condensed, Qextra_condensed, Qcondensed; | |
308 Lisp_Object Qsemi_condensed, Qsemi_expanded, Qexpanded, Qextra_expanded; | |
309 Lisp_Object Qultra_expanded; | |
310 Lisp_Object Qreleased_button, Qpressed_button; | |
311 Lisp_Object QCstyle, QCcolor, QCline_width; | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
312 Lisp_Object Qunspecified; |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
313 |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
314 char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg"; |
24995 | 315 |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
316 /* 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
|
317 has changed, frame_update_face_colors. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
318 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
319 Lisp_Object Qframe_update_face_colors; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
320 |
24995 | 321 /* Names of basic faces. */ |
322 | |
26574
5510d0cc07c3
Don't duplicate Qmode_line definition done elsewhere.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
323 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
|
324 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
|
325 extern Lisp_Object Qmode_line; |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
326 |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
327 /* 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
|
328 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
|
329 the aliased face. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
330 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
331 Lisp_Object Qface_alias; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
332 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
333 /* Names of frame parameters related to faces. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
334 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
335 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
|
336 extern Lisp_Object Qborder_color, Qcursor_color, Qmouse_color; |
24995 | 337 |
338 /* Default stipple pattern used on monochrome displays. This stipple | |
339 pattern is used on monochrome displays instead of shades of gray | |
340 for a face background color. See `set-face-stipple' for possible | |
341 values for this variable. */ | |
342 | |
343 Lisp_Object Vface_default_stipple; | |
344 | |
345 /* Alist of alternative font families. Each element is of the form | |
346 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded, | |
347 try FAMILY1, then FAMILY2, ... */ | |
348 | |
349 Lisp_Object Vface_alternative_font_family_alist; | |
350 | |
351 /* Allowed scalable fonts. A value of nil means don't allow any | |
352 scalable fonts. A value of t means allow the use of any scalable | |
353 font. Otherwise, value must be a list of regular expressions. A | |
354 font may be scaled if its name matches a regular expression in the | |
355 list. */ | |
356 | |
357 Lisp_Object Vscalable_fonts_allowed; | |
358 | |
25270 | 359 /* Maximum number of fonts to consider in font_list. If not an |
360 integer > 0, DEFAULT_FONT_LIST_LIMIT is used instead. */ | |
361 | |
362 Lisp_Object Vfont_list_limit; | |
363 #define DEFAULT_FONT_LIST_LIMIT 100 | |
364 | |
24995 | 365 /* The symbols `foreground-color' and `background-color' which can be |
366 used as part of a `face' property. This is for compatibility with | |
367 Emacs 20.2. */ | |
368 | |
369 Lisp_Object Qforeground_color, Qbackground_color; | |
370 | |
371 /* The symbols `face' and `mouse-face' used as text properties. */ | |
2342 | 372 |
23730
c71c3ac4b80a
(Qmouse_face): Replace definition with extern decl.
Richard M. Stallman <rms@gnu.org>
parents:
21766
diff
changeset
|
373 Lisp_Object Qface; |
24995 | 374 extern Lisp_Object Qmouse_face; |
375 | |
376 /* Error symbol for wrong_type_argument in load_pixmap. */ | |
377 | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
378 Lisp_Object Qbitmap_spec_p; |
2391 | 379 |
24995 | 380 /* Alist of global face definitions. Each element is of the form |
381 (FACE . LFACE) where FACE is a symbol naming a face and LFACE | |
382 is a Lisp vector of face attributes. These faces are used | |
383 to initialize faces for new frames. */ | |
384 | |
385 Lisp_Object Vface_new_frame_defaults; | |
386 | |
387 /* The next ID to assign to Lisp faces. */ | |
388 | |
389 static int next_lface_id; | |
390 | |
391 /* A vector mapping Lisp face Id's to face names. */ | |
392 | |
393 static Lisp_Object *lface_id_to_name; | |
394 static int lface_id_to_name_size; | |
395 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
396 /* 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
|
397 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
398 Lisp_Object Qtty_color_desc, Qtty_color_by_index; |
24995 | 399 |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
400 /* 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
|
401 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
402 Lisp_Object Qtty_color_alist; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
403 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
404 /* 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
|
405 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
406 Lisp_Object Vtty_defined_color_alist; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
407 |
24995 | 408 /* Counter for calls to clear_face_cache. If this counter reaches |
409 CLEAR_FONT_TABLE_COUNT, and a frame has more than | |
410 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */ | |
411 | |
412 static int clear_font_table_count; | |
413 #define CLEAR_FONT_TABLE_COUNT 100 | |
414 #define CLEAR_FONT_TABLE_NFONTS 10 | |
415 | |
416 /* Non-zero means face attributes have been changed since the last | |
417 redisplay. Used in redisplay_internal. */ | |
418 | |
419 int face_change_count; | |
420 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
421 /* 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
|
422 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
|
423 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
|
424 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
|
425 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
426 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
|
427 |
31449
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
428 /* A list of the form `((x . y))' used to avoid consing in |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
429 Finternal_set_lisp_face_attribute. */ |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
430 |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
431 static Lisp_Object Vparam_value_alist; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
432 |
24995 | 433 /* The total number of colors currently allocated. */ |
434 | |
435 #if GLYPH_DEBUG | |
436 static int ncolors_allocated; | |
437 static int npixmaps_allocated; | |
438 static int ngcs; | |
439 #endif | |
440 | |
441 | |
2336 | 442 |
24995 | 443 /* Function prototypes. */ |
444 | |
445 struct font_name; | |
446 struct table_entry; | |
447 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
448 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
|
449 enum lface_attribute_index, int *)); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
450 static Lisp_Object resolve_face_name P_ ((Lisp_Object)); |
24995 | 451 static int may_use_scalable_font_p P_ ((struct font_name *, char *)); |
452 static void set_font_frame_param P_ ((Lisp_Object, Lisp_Object)); | |
453 static int better_font_p P_ ((int *, struct font_name *, struct font_name *, | |
454 int)); | |
455 static int first_font_matching P_ ((struct frame *f, char *, | |
456 struct font_name *)); | |
457 static int x_face_list_fonts P_ ((struct frame *, char *, | |
458 struct font_name *, int, int, int)); | |
459 static int font_scalable_p P_ ((struct font_name *)); | |
460 static int get_lface_attributes P_ ((struct frame *, Lisp_Object, Lisp_Object *, int)); | |
461 static int load_pixmap P_ ((struct frame *, Lisp_Object, unsigned *, unsigned *)); | |
462 static unsigned char *xstrlwr P_ ((unsigned char *)); | |
463 static void signal_error P_ ((char *, Lisp_Object)); | |
464 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
|
465 static void load_face_font P_ ((struct frame *, struct face *, int)); |
24995 | 466 static void load_face_colors P_ ((struct frame *, struct face *, Lisp_Object *)); |
467 static void free_face_colors P_ ((struct frame *, struct face *)); | |
468 static int face_color_gray_p P_ ((struct frame *, char *)); | |
469 static char *build_font_name P_ ((struct font_name *)); | |
470 static void free_font_names P_ ((struct font_name *, int)); | |
471 static int sorted_font_list P_ ((struct frame *, char *, | |
472 int (*cmpfn) P_ ((const void *, const void *)), | |
473 struct font_name **)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
474 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
|
475 Lisp_Object, struct font_name **)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
476 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
|
477 Lisp_Object, Lisp_Object, struct font_name **)); |
24995 | 478 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
|
479 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
|
480 struct face *, int)); |
24995 | 481 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
|
482 Lisp_Object *, int, struct face *)); |
24995 | 483 static struct face *realize_tty_face P_ ((struct face_cache *, |
484 Lisp_Object *, int)); | |
485 static int realize_basic_faces P_ ((struct frame *)); | |
486 static int realize_default_face P_ ((struct frame *)); | |
487 static void realize_named_face P_ ((struct frame *, Lisp_Object, int)); | |
488 static int lface_fully_specified_p P_ ((Lisp_Object *)); | |
489 static int lface_equal_p P_ ((Lisp_Object *, Lisp_Object *)); | |
490 static unsigned hash_string_case_insensitive P_ ((Lisp_Object)); | |
491 static unsigned lface_hash P_ ((Lisp_Object *)); | |
492 static int lface_same_font_attributes_p P_ ((Lisp_Object *, Lisp_Object *)); | |
493 static struct face_cache *make_face_cache P_ ((struct frame *)); | |
494 static void free_realized_face P_ ((struct frame *, struct face *)); | |
495 static void clear_face_gcs P_ ((struct face_cache *)); | |
496 static void free_face_cache P_ ((struct face_cache *)); | |
497 static int face_numeric_weight P_ ((Lisp_Object)); | |
498 static int face_numeric_slant P_ ((Lisp_Object)); | |
499 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
|
500 static int face_fontset P_ ((Lisp_Object *)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
501 static char *choose_face_font P_ ((struct frame *, Lisp_Object *, int, int)); |
31178 | 502 static void merge_face_vectors P_ ((struct frame *, Lisp_Object *, Lisp_Object*, Lisp_Object)); |
503 static void merge_face_inheritance P_ ((struct frame *f, Lisp_Object, | |
504 Lisp_Object *, Lisp_Object)); | |
24995 | 505 static void merge_face_vector_with_property P_ ((struct frame *, Lisp_Object *, |
506 Lisp_Object)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
507 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
|
508 Lisp_Object, int, int)); |
24995 | 509 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
|
510 static struct face *make_realized_face P_ ((Lisp_Object *)); |
24995 | 511 static void free_realized_faces P_ ((struct face_cache *)); |
512 static char *best_matching_font P_ ((struct frame *, Lisp_Object *, | |
513 struct font_name *, int)); | |
514 static void cache_face P_ ((struct face_cache *, struct face *, unsigned)); | |
515 static void uncache_face P_ ((struct face_cache *, struct face *)); | |
516 static int xlfd_numeric_slant P_ ((struct font_name *)); | |
517 static int xlfd_numeric_weight P_ ((struct font_name *)); | |
518 static int xlfd_numeric_swidth P_ ((struct font_name *)); | |
519 static Lisp_Object xlfd_symbolic_slant P_ ((struct font_name *)); | |
520 static Lisp_Object xlfd_symbolic_weight P_ ((struct font_name *)); | |
521 static Lisp_Object xlfd_symbolic_swidth P_ ((struct font_name *)); | |
522 static int xlfd_fixed_p P_ ((struct font_name *)); | |
523 static int xlfd_numeric_value P_ ((struct table_entry *, int, struct font_name *, | |
524 int, int)); | |
525 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
|
526 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
|
527 Lisp_Object)); |
24995 | 528 static struct table_entry *xlfd_lookup_field_contents P_ ((struct table_entry *, int, |
529 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
|
530 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
531 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 532 |
533 static int split_font_name P_ ((struct frame *, struct font_name *, int)); | |
534 static int xlfd_point_size P_ ((struct frame *, struct font_name *)); | |
535 static void sort_fonts P_ ((struct frame *, struct font_name *, int, | |
536 int (*cmpfn) P_ ((const void *, const void *)))); | |
537 static GC x_create_gc P_ ((struct frame *, unsigned long, XGCValues *)); | |
538 static void x_free_gc P_ ((struct frame *, GC)); | |
539 static void clear_font_table P_ ((struct frame *)); | |
540 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
541 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
542 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
|
543 #endif /* WINDOWSNT */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
544 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
545 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 546 |
547 | |
548 /*********************************************************************** | |
549 Utilities | |
550 ***********************************************************************/ | |
551 | |
552 #ifdef HAVE_X_WINDOWS | |
553 | |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
554 #ifdef DEBUG_X_COLORS |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
555 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
556 /* 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
|
557 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
|
558 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
|
559 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
|
560 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
|
561 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
|
562 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
|
563 single display/screen. --gerd. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
564 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
565 /* Reference counts for pixel colors. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
566 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
567 int color_count[256]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
568 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
569 /* Register color PIXEL as allocated. */ |
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 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
572 register_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
573 unsigned long pixel; |
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 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
576 ++color_count[pixel]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
577 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
578 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
579 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
580 /* Register color PIXEL as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
581 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
582 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
583 unregister_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
584 unsigned long pixel; |
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 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
587 if (color_count[pixel] > 0) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
588 --color_count[pixel]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
589 else |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
590 abort (); |
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 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
593 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
594 /* Register N colors from PIXELS as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
595 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
596 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
597 unregister_colors (pixels, n) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
598 unsigned long *pixels; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
599 int n; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
600 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
601 int i; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
602 for (i = 0; i < n; ++i) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
603 unregister_color (pixels[i]); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
604 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
605 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
606 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
607 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
|
608 "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
|
609 () |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
610 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
611 int i, n; |
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 fputc ('\n', stderr); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
614 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
615 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
|
616 if (color_count[i]) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
617 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
618 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
|
619 ++n; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
620 if (n % 5 == 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
621 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
622 else |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
623 fputc ('\t', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
624 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
625 |
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 return Qnil; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
629 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
630 |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
631 #endif /* DEBUG_X_COLORS */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
632 |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
633 |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
634 /* 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
|
635 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
|
636 is called. */ |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
637 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
638 void |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
639 x_free_colors (f, pixels, npixels) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
640 struct frame *f; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
641 unsigned long *pixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
642 int npixels; |
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 int class = FRAME_X_DISPLAY_INFO (f)->visual->class; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
645 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
646 /* 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
|
647 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
|
648 if (class != StaticColor && class != StaticGray && class != TrueColor) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
649 { |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
650 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
|
651 pixels, npixels, 0); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
652 #ifdef DEBUG_X_COLORS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
653 unregister_colors (pixels, npixels); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
654 #endif |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
655 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
656 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
657 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
658 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
659 /* 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
|
660 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
|
661 is called. */ |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
662 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
663 void |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
664 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
|
665 Display *dpy; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
666 Screen *screen; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
667 Colormap cmap; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
668 unsigned long *pixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
669 int npixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
670 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
671 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
|
672 int class = dpyinfo->visual->class; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
673 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
674 /* 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
|
675 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
|
676 if (class != StaticColor && class != StaticGray && class != TrueColor) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
677 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
678 XFreeColors (dpy, cmap, pixels, npixels, 0); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
679 #ifdef DEBUG_X_COLORS |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
680 unregister_colors (pixels, npixels); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
681 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
682 } |
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 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
685 |
24995 | 686 /* Create and return a GC for use on frame F. GC values and mask |
687 are given by XGCV and MASK. */ | |
688 | |
689 static INLINE GC | |
690 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
|
691 struct frame *f; |
24995 | 692 unsigned long mask; |
693 XGCValues *xgcv; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
694 { |
2336 | 695 GC gc; |
24995 | 696 BLOCK_INPUT; |
697 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv); | |
698 UNBLOCK_INPUT; | |
699 IF_DEBUG (++ngcs); | |
700 return gc; | |
701 } | |
702 | |
703 | |
704 /* Free GC which was used on frame F. */ | |
705 | |
706 static INLINE void | |
707 x_free_gc (f, gc) | |
708 struct frame *f; | |
709 GC gc; | |
710 { | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
711 BLOCK_INPUT; |
24995 | 712 xassert (--ngcs >= 0); |
713 XFreeGC (FRAME_X_DISPLAY (f), gc); | |
714 UNBLOCK_INPUT; | |
715 } | |
716 | |
717 #endif /* HAVE_X_WINDOWS */ | |
718 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
719 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
720 /* W32 emulation of GCs */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
721 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
722 static INLINE GC |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
723 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
|
724 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
725 unsigned long mask; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
726 XGCValues *xgcv; |
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 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
729 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
730 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
|
731 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
732 IF_DEBUG (++ngcs); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
733 return gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
734 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
735 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
736 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
737 /* 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
|
738 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
739 static INLINE void |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
740 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
|
741 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
742 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
743 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
744 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
745 xassert (--ngcs >= 0); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
746 xfree (gc); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
747 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
748 } |
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 #endif /* WINDOWSNT */ |
24995 | 751 |
752 /* Like stricmp. Used to compare parts of font names which are in | |
753 ISO8859-1. */ | |
754 | |
755 int | |
756 xstricmp (s1, s2) | |
757 unsigned char *s1, *s2; | |
758 { | |
759 while (*s1 && *s2) | |
760 { | |
761 unsigned char c1 = tolower (*s1); | |
762 unsigned char c2 = tolower (*s2); | |
763 if (c1 != c2) | |
764 return c1 < c2 ? -1 : 1; | |
765 ++s1, ++s2; | |
766 } | |
767 | |
768 if (*s1 == 0) | |
769 return *s2 == 0 ? 0 : -1; | |
770 return 1; | |
771 } | |
772 | |
773 | |
774 /* Like strlwr, which might not always be available. */ | |
775 | |
776 static unsigned char * | |
777 xstrlwr (s) | |
778 unsigned char *s; | |
779 { | |
780 unsigned char *p = s; | |
781 | |
782 for (p = s; *p; ++p) | |
783 *p = tolower (*p); | |
784 | |
785 return s; | |
786 } | |
787 | |
788 | |
789 /* Signal `error' with message S, and additional argument ARG. */ | |
790 | |
791 static void | |
792 signal_error (s, arg) | |
793 char *s; | |
794 Lisp_Object arg; | |
795 { | |
796 Fsignal (Qerror, Fcons (build_string (s), Fcons (arg, Qnil))); | |
797 } | |
798 | |
799 | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
800 /* 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
|
801 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
|
802 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
|
803 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
|
804 Lisp function definitions. */ |
24995 | 805 |
806 static INLINE struct frame * | |
807 frame_or_selected_frame (frame, nparam) | |
808 Lisp_Object frame; | |
809 int nparam; | |
810 { | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
811 if (NILP (frame)) |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
812 frame = selected_frame; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
813 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
814 CHECK_LIVE_FRAME (frame, nparam); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
815 return XFRAME (frame); |
24995 | 816 } |
817 | |
818 | |
819 /*********************************************************************** | |
820 Frames and faces | |
821 ***********************************************************************/ | |
822 | |
823 /* 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
|
824 |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
825 void |
24995 | 826 init_frame_faces (f) |
827 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
|
828 { |
24995 | 829 /* Make a face cache, if F doesn't have one. */ |
830 if (FRAME_FACE_CACHE (f) == NULL) | |
831 FRAME_FACE_CACHE (f) = make_face_cache (f); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
832 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
833 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 834 /* 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
|
835 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
|
836 { |
24995 | 837 if (FRAME_X_IMAGE_CACHE (f) == NULL) |
838 FRAME_X_IMAGE_CACHE (f) = make_image_cache (); | |
839 ++FRAME_X_IMAGE_CACHE (f)->refcount; | |
840 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
841 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 842 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
843 /* Realize basic faces. Must have enough information in frame |
24995 | 844 parameters to realize basic faces at this point. */ |
845 #ifdef HAVE_X_WINDOWS | |
846 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f)) | |
847 #endif | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
848 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
849 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
|
850 #endif |
24995 | 851 if (!realize_basic_faces (f)) |
852 abort (); | |
853 } | |
854 | |
855 | |
856 /* Free face cache of frame F. Called from Fdelete_frame. */ | |
857 | |
858 void | |
859 free_frame_faces (f) | |
860 struct frame *f; | |
861 { | |
862 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
|
863 |
24995 | 864 if (face_cache) |
865 { | |
866 free_face_cache (face_cache); | |
867 FRAME_FACE_CACHE (f) = NULL; | |
868 } | |
869 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
870 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
871 if (FRAME_WINDOW_P (f)) |
24995 | 872 { |
873 struct image_cache *image_cache = FRAME_X_IMAGE_CACHE (f); | |
874 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
|
875 { |
24995 | 876 --image_cache->refcount; |
877 if (image_cache->refcount == 0) | |
878 free_image_cache (f); | |
879 } | |
880 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
881 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 882 } |
883 | |
884 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
885 /* 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
|
886 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
|
887 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
|
888 of named faces. */ |
24995 | 889 |
890 void | |
891 recompute_basic_faces (f) | |
892 struct frame *f; | |
893 { | |
894 if (FRAME_FACE_CACHE (f)) | |
895 { | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
896 clear_face_cache (0); |
26601
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
897 if (!realize_basic_faces (f)) |
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
898 abort (); |
24995 | 899 } |
900 } | |
901 | |
902 | |
903 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means | |
904 try to free unused fonts, too. */ | |
905 | |
906 void | |
907 clear_face_cache (clear_fonts_p) | |
908 int clear_fonts_p; | |
909 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
910 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 911 Lisp_Object tail, frame; |
912 struct frame *f; | |
913 | |
914 if (clear_fonts_p | |
915 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT) | |
916 { | |
917 /* From time to time see if we can unload some fonts. This also | |
918 frees all realized faces on all frames. Fonts needed by | |
919 faces will be loaded again when faces are realized again. */ | |
920 clear_font_table_count = 0; | |
921 | |
922 FOR_EACH_FRAME (tail, frame) | |
923 { | |
924 f = XFRAME (frame); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
925 if (FRAME_WINDOW_P (f) |
24995 | 926 && 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
|
927 { |
24995 | 928 free_all_realized_faces (frame); |
929 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
|
930 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
931 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
932 } |
24995 | 933 else |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
934 { |
24995 | 935 /* Clear GCs of realized faces. */ |
936 FOR_EACH_FRAME (tail, frame) | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
937 { |
24995 | 938 f = XFRAME (frame); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
939 if (FRAME_WINDOW_P (f)) |
24995 | 940 { |
941 clear_face_gcs (FRAME_FACE_CACHE (f)); | |
942 clear_image_cache (f, 0); | |
943 } | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
944 } |
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
945 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
946 #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
|
947 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
948 |
24995 | 949 |
950 DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0, | |
951 "Clear face caches on all frames.\n\ | |
952 Optional THOROUGHLY non-nil means try to free unused fonts, too.") | |
953 (thorougly) | |
954 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
|
955 { |
24995 | 956 clear_face_cache (!NILP (thorougly)); |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
957 ++face_change_count; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
958 ++windows_or_buffers_changed; |
24995 | 959 return Qnil; |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
960 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
961 |
24995 | 962 |
963 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
964 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 965 |
966 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
967 /* 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
|
968 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
|
969 from time to time. */ |
24995 | 970 |
971 static void | |
972 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
|
973 struct frame *f; |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
974 { |
24995 | 975 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); |
976 int i; | |
977 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
978 xassert (FRAME_WINDOW_P (f)); |
24995 | 979 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
980 /* Free those fonts that are not used by the frame F as the default. */ |
24995 | 981 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
|
982 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
983 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
|
984 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
985 if (!font_info->name |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
986 || font_info->font == FRAME_FONT (f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
987 continue; |
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 /* Free names. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
990 if (font_info->full_name != font_info->name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
991 xfree (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
992 xfree (font_info->name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
993 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
994 /* Free the font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
995 BLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
996 #ifdef HAVE_X_WINDOWS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
997 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
|
998 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
999 #ifdef WINDOWSNT |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1000 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
|
1001 #endif |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1002 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1003 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1004 /* Mark font table slot free. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1005 font_info->font = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1006 font_info->name = font_info->full_name = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1007 } |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1008 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1009 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1010 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1011 |
1012 | |
1013 | |
1014 /*********************************************************************** | |
1015 X Pixmaps | |
1016 ***********************************************************************/ | |
1017 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1018 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1019 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1020 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
|
1021 "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
|
1022 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
|
1023 (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
|
1024 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
|
1025 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
|
1026 (WIDTH + 7)/8 bytes.") |
14090
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1027 (object) |
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1028 Lisp_Object object; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1029 { |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1030 int pixmap_p = 0; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1031 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1032 if (STRINGP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1033 /* 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
|
1034 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1035 else if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1036 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1037 /* 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
|
1038 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
|
1039 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
|
1040 Lisp_Object width, height, data; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1041 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1042 height = width = data = Qnil; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1043 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1044 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1045 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1046 width = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1047 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1048 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1049 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1050 height = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1051 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1052 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1053 data = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1054 } |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1057 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1058 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1059 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
|
1060 / 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
|
1061 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
|
1062 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1063 } |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1066 return pixmap_p ? Qt : Qnil; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1067 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1068 |
24995 | 1069 |
1070 /* Load a bitmap according to NAME (which is either a file name or a | |
1071 pixmap spec) for use on frame F. Value is the bitmap_id (see | |
1072 xfns.c). If NAME is nil, return with a bitmap id of zero. If | |
1073 bitmap cannot be loaded, display a message saying so, and return | |
1074 zero. Store the bitmap width in *W_PTR and its height in *H_PTR, | |
1075 if these pointers are not null. */ | |
1076 | |
1077 static int | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1078 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
|
1079 FRAME_PTR f; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1080 Lisp_Object name; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1081 unsigned int *w_ptr, *h_ptr; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1082 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1083 int bitmap_id; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1084 Lisp_Object tem; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1085 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1086 if (NILP (name)) |
24995 | 1087 return 0; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1088 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1089 tem = Fbitmap_spec_p (name); |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1090 if (NILP (tem)) |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1091 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
|
1092 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1093 BLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1094 if (CONSP (name)) |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1095 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1096 /* Decode a bitmap spec into a bitmap. */ |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1097 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1098 int h, w; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1099 Lisp_Object bits; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1100 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1101 w = XINT (Fcar (name)); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1102 h = XINT (Fcar (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1103 bits = Fcar (Fcdr (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1104 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1105 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
|
1106 w, h); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1107 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1108 else |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1109 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1110 /* 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
|
1111 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
|
1112 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1113 UNBLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1114 |
9902
32ed712a45a3
(load_pixmap): Handle bitmap_id < 0. F is a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9671
diff
changeset
|
1115 if (bitmap_id < 0) |
24995 | 1116 { |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1117 add_to_log ("Invalid or undefined bitmap %s", name, Qnil); |
24995 | 1118 bitmap_id = 0; |
1119 | |
1120 if (w_ptr) | |
1121 *w_ptr = 0; | |
1122 if (h_ptr) | |
1123 *h_ptr = 0; | |
1124 } | |
1125 else | |
1126 { | |
1127 #if GLYPH_DEBUG | |
1128 ++npixmaps_allocated; | |
1129 #endif | |
1130 if (w_ptr) | |
1131 *w_ptr = x_bitmap_width (f, bitmap_id); | |
1132 | |
1133 if (h_ptr) | |
1134 *h_ptr = x_bitmap_height (f, bitmap_id); | |
1135 } | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1136 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1137 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
|
1138 } |
9572 | 1139 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1140 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1141 |
9572 | 1142 |
2336 | 1143 |
24995 | 1144 /*********************************************************************** |
1145 Minimum font bounds | |
1146 ***********************************************************************/ | |
1147 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1148 #ifdef HAVE_WINDOW_SYSTEM |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1149 |
25062
050561b336aa
(load_face_colors): Load background color if setting
Gerd Moellmann <gerd@gnu.org>
parents:
24995
diff
changeset
|
1150 /* 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
|
1151 changes. */ |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1152 |
6879
471aebc1b151
(frame_update_line_height): Don't call x_set_window_size.
Richard M. Stallman <rms@gnu.org>
parents:
6784
diff
changeset
|
1153 int |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1154 frame_update_line_height (f) |
24995 | 1155 struct frame *f; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1156 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1157 int line_height, changed_p; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1158 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1159 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
|
1160 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
|
1161 FRAME_LINE_HEIGHT (f) = line_height; |
24995 | 1162 return changed_p; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1163 } |
24995 | 1164 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1165 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1166 |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
1167 |
24995 | 1168 /*********************************************************************** |
1169 Fonts | |
1170 ***********************************************************************/ | |
1171 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1172 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1173 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1174 /* 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
|
1175 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
|
1176 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
|
1177 |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1178 static void |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1179 load_face_font (f, face, c) |
24995 | 1180 struct frame *f; |
1181 struct face *face; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1182 int c; |
24995 | 1183 { |
1184 struct font_info *font_info = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1185 char *font_name; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1186 |
24995 | 1187 face->font_info_id = -1; |
1188 face->font = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1189 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1190 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
|
1191 if (!font_name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1192 return; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1193 |
24995 | 1194 BLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1195 font_info = FS_LOAD_FACE_FONT (f, c, font_name, face); |
24995 | 1196 UNBLOCK_INPUT; |
1197 | |
1198 if (font_info) | |
1199 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1200 face->font_info_id = font_info->font_idx; |
24995 | 1201 face->font = font_info->font; |
1202 face->font_name = font_info->full_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1203 if (face->gc) |
24995 | 1204 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1205 x_free_gc (f, face->gc); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1206 face->gc = 0; |
24995 | 1207 } |
1208 } | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1209 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1210 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
|
1211 build_string (font_name), Qnil); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1212 xfree (font_name); |
24995 | 1213 } |
1214 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1215 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1216 |
1217 | |
1218 | |
1219 /*********************************************************************** | |
1220 X Colors | |
1221 ***********************************************************************/ | |
1222 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1223 /* 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
|
1224 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1225 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1226 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
|
1227 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1228 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1229 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1230 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1231 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1232 Lisp_Object color_desc; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
1233 unsigned long color_idx = FACE_TTY_DEFAULT_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
1234 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
|
1235 int status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1236 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1237 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
|
1238 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1239 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1240 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1241 XSETFRAME (frame, f); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1242 status = 0; |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1243 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
|
1244 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
|
1245 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1246 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
|
1247 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
|
1248 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1249 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
|
1250 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
|
1251 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
|
1252 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1253 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1254 } |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1255 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
|
1256 /* 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
|
1257 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
|
1258 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
|
1259 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
|
1260 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1261 } |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1262 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
|
1263 { |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1264 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
|
1265 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
|
1266 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
|
1267 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
|
1268 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1269 |
27743
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1270 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
|
1271 status = 1; |
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1272 |
27695
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1273 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
|
1274 color_def->red = red; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1275 color_def->green = green; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1276 color_def->blue = blue; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1277 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1278 return status; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1279 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1280 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1281 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1282 /* 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
|
1283 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
|
1284 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
|
1285 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1286 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
|
1287 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1288 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1289 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
|
1290 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1291 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1292 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1293 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1294 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1295 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
|
1296 return tty_defined_color (f, color_name, color_def, alloc); |
24995 | 1297 #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
|
1298 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
|
1299 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
|
1300 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1301 #ifdef WINDOWSNT |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1302 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
|
1303 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
|
1304 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1305 #ifdef macintosh |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1306 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
|
1307 /* 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
|
1308 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
|
1309 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1310 else |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1311 abort (); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1312 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1313 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1314 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1315 /* 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
|
1316 Lisp string. */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1317 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1318 Lisp_Object |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1319 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
|
1320 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1321 int idx; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1322 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1323 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
|
1324 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1325 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1326 Lisp_Object coldesc; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1327 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1328 XSETFRAME (frame, f); |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1329 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
|
1330 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1331 if (!NILP (coldesc)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1332 return XCAR (coldesc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1333 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1334 #ifdef MSDOS |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1335 /* 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
|
1336 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
|
1337 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
|
1338 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
|
1339 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1340 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1341 if (idx == FACE_TTY_DEFAULT_FG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1342 return build_string (unspecified_fg); |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1343 if (idx == FACE_TTY_DEFAULT_BG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1344 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
|
1345 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1346 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1347 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
|
1348 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1349 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1350 return Qunspecified; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1351 } |
24995 | 1352 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1353 |
24995 | 1354 /* Return non-zero if COLOR_NAME is a shade of gray (or white or |
1355 black) on frame F. The algorithm is taken from 20.2 faces.el. */ | |
1356 | |
1357 static int | |
1358 face_color_gray_p (f, color_name) | |
1359 struct frame *f; | |
1360 char *color_name; | |
1361 { | |
1362 XColor color; | |
1363 int gray_p; | |
1364 | |
1365 if (defined_color (f, color_name, &color, 0)) | |
1366 gray_p = ((abs (color.red - color.green) | |
1367 < max (color.red, color.green) / 20) | |
1368 && (abs (color.green - color.blue) | |
1369 < max (color.green, color.blue) / 20) | |
1370 && (abs (color.blue - color.red) | |
1371 < max (color.blue, color.red) / 20)); | |
1372 else | |
1373 gray_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1374 |
24995 | 1375 return gray_p; |
1376 } | |
1377 | |
1378 | |
1379 /* Return non-zero if color COLOR_NAME can be displayed on frame F. | |
1380 BACKGROUND_P non-zero means the color will be used as background | |
1381 color. */ | |
1382 | |
1383 static int | |
1384 face_color_supported_p (f, color_name, background_p) | |
1385 struct frame *f; | |
1386 char *color_name; | |
1387 int background_p; | |
1388 { | |
1389 Lisp_Object frame; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1390 XColor not_used; |
24995 | 1391 |
1392 XSETFRAME (frame, f); | |
26972
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1393 return (FRAME_WINDOW_P (f) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1394 ? (!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
|
1395 || xstricmp (color_name, "black") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1396 || xstricmp (color_name, "white") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1397 || (background_p |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1398 && 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
|
1399 || (!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
|
1400 && 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
|
1401 : 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
|
1402 } |
24995 | 1403 |
1404 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1405 DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0, |
24995 | 1406 "Return non-nil if COLOR is a shade of gray (or white or black).\n\ |
1407 FRAME specifies the frame and thus the display for interpreting COLOR.\n\ | |
1408 If FRAME is nil or omitted, use the selected frame.") | |
1409 (color, frame) | |
1410 Lisp_Object color, frame; | |
1411 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1412 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1413 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1414 CHECK_FRAME (frame, 0); |
24995 | 1415 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
|
1416 f = XFRAME (frame); |
24995 | 1417 return face_color_gray_p (f, XSTRING (color)->data) ? Qt : Qnil; |
1418 } | |
1419 | |
1420 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1421 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
|
1422 Scolor_supported_p, 2, 3, 0, |
24995 | 1423 "Return non-nil if COLOR can be displayed on FRAME.\n\ |
1424 BACKGROUND-P non-nil means COLOR is used as a background.\n\ | |
1425 If FRAME is nil or omitted, use the selected frame.\n\ | |
1426 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
|
1427 (color, frame, background_p) |
24995 | 1428 Lisp_Object frame, color, background_p; |
1429 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1430 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1431 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1432 CHECK_FRAME (frame, 0); |
24995 | 1433 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
|
1434 f = XFRAME (frame); |
24995 | 1435 if (face_color_supported_p (f, XSTRING (color)->data, !NILP (background_p))) |
1436 return Qt; | |
1437 return Qnil; | |
1438 } | |
1439 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1440 |
24995 | 1441 /* Load color with name NAME for use by face FACE on frame F. |
1442 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX, | |
1443 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX, | |
1444 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the | |
1445 pixel color. If color cannot be loaded, display a message, and | |
1446 return the foreground, background or underline color of F, but | |
1447 record that fact in flags of the face so that we don't try to free | |
1448 these colors. */ | |
1449 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
1450 unsigned long |
24995 | 1451 load_color (f, face, name, target_index) |
1452 struct frame *f; | |
1453 struct face *face; | |
1454 Lisp_Object name; | |
1455 enum lface_attribute_index target_index; | |
1456 { | |
1457 XColor color; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1458 |
24995 | 1459 xassert (STRINGP (name)); |
1460 xassert (target_index == LFACE_FOREGROUND_INDEX | |
1461 || target_index == LFACE_BACKGROUND_INDEX | |
1462 || target_index == LFACE_UNDERLINE_INDEX | |
1463 || target_index == LFACE_OVERLINE_INDEX | |
1464 || target_index == LFACE_STRIKE_THROUGH_INDEX | |
1465 || target_index == LFACE_BOX_INDEX); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1466 |
24995 | 1467 /* if the color map is full, defined_color will return a best match |
1468 to the values in an existing cell. */ | |
1469 if (!defined_color (f, XSTRING (name)->data, &color, 1)) | |
1470 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1471 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
|
1472 |
24995 | 1473 switch (target_index) |
1474 { | |
1475 case LFACE_FOREGROUND_INDEX: | |
1476 face->foreground_defaulted_p = 1; | |
1477 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1478 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1479 |
24995 | 1480 case LFACE_BACKGROUND_INDEX: |
1481 face->background_defaulted_p = 1; | |
1482 color.pixel = FRAME_BACKGROUND_PIXEL (f); | |
1483 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1484 |
24995 | 1485 case LFACE_UNDERLINE_INDEX: |
1486 face->underline_defaulted_p = 1; | |
1487 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1488 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1489 |
24995 | 1490 case LFACE_OVERLINE_INDEX: |
1491 face->overline_color_defaulted_p = 1; | |
1492 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1493 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1494 |
24995 | 1495 case LFACE_STRIKE_THROUGH_INDEX: |
1496 face->strike_through_color_defaulted_p = 1; | |
1497 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1498 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1499 |
24995 | 1500 case LFACE_BOX_INDEX: |
1501 face->box_color_defaulted_p = 1; | |
1502 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1503 break; | |
1504 | |
1505 default: | |
1506 abort (); | |
1507 } | |
1508 } | |
1509 #if GLYPH_DEBUG | |
1510 else | |
1511 ++ncolors_allocated; | |
1512 #endif | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1513 |
24995 | 1514 return color.pixel; |
1515 } | |
1516 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1517 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1518 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1519 |
1520 /* Load colors for face FACE which is used on frame F. Colors are | |
1521 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX | |
1522 of ATTRS. If the background color specified is not supported on F, | |
1523 try to emulate gray colors with a stipple from Vface_default_stipple. */ | |
1524 | |
1525 static void | |
1526 load_face_colors (f, face, attrs) | |
1527 struct frame *f; | |
1528 struct face *face; | |
1529 Lisp_Object *attrs; | |
1530 { | |
1531 Lisp_Object fg, bg; | |
1532 | |
1533 bg = attrs[LFACE_BACKGROUND_INDEX]; | |
1534 fg = attrs[LFACE_FOREGROUND_INDEX]; | |
1535 | |
1536 /* Swap colors if face is inverse-video. */ | |
1537 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt)) | |
1538 { | |
1539 Lisp_Object tmp; | |
1540 tmp = fg; | |
1541 fg = bg; | |
1542 bg = tmp; | |
1543 } | |
1544 | |
1545 /* Check for support for foreground, not for background because | |
1546 face_color_supported_p is smart enough to know that grays are | |
1547 "supported" as background because we are supposed to use stipple | |
1548 for them. */ | |
1549 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
|
1550 && !NILP (Fbitmap_spec_p (Vface_default_stipple))) |
24995 | 1551 { |
1552 x_destroy_bitmap (f, face->stipple); | |
1553 face->stipple = load_pixmap (f, Vface_default_stipple, | |
1554 &face->pixmap_w, &face->pixmap_h); | |
1555 } | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1556 |
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1557 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX); |
24995 | 1558 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX); |
1559 } | |
1560 | |
1561 | |
1562 /* Free color PIXEL on frame F. */ | |
1563 | |
1564 void | |
1565 unload_color (f, pixel) | |
1566 struct frame *f; | |
1567 unsigned long pixel; | |
1568 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1569 #ifdef HAVE_X_WINDOWS |
24995 | 1570 BLOCK_INPUT; |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1571 x_free_colors (f, &pixel, 1); |
24995 | 1572 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1573 #endif |
24995 | 1574 } |
1575 | |
1576 | |
1577 /* Free colors allocated for FACE. */ | |
1578 | |
1579 static void | |
1580 free_face_colors (f, face) | |
1581 struct frame *f; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1582 struct face *face; |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1583 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1584 #ifdef HAVE_X_WINDOWS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1585 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1586 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1587 if (!face->foreground_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1588 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1589 x_free_colors (f, &face->foreground, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1590 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1591 } |
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->background_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->background, 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 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1598 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1599 if (face->underline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1600 && !face->underline_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1601 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1602 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
|
1603 IF_DEBUG (--ncolors_allocated); |
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 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1606 if (face->overline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1607 && !face->overline_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1608 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1609 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
|
1610 IF_DEBUG (--ncolors_allocated); |
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 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1613 if (face->strike_through_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1614 && !face->strike_through_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1615 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1616 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
|
1617 IF_DEBUG (--ncolors_allocated); |
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 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1620 if (face->box != FACE_NO_BOX |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1621 && !face->box_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1622 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1623 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
|
1624 IF_DEBUG (--ncolors_allocated); |
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 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1627 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1628 #endif /* HAVE_X_WINDOWS */ |
24995 | 1629 } |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1630 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1631 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1632 |
1633 | |
1634 | |
1635 /*********************************************************************** | |
1636 XLFD Font Names | |
1637 ***********************************************************************/ | |
1638 | |
1639 /* An enumerator for each field of an XLFD font name. */ | |
1640 | |
1641 enum xlfd_field | |
1642 { | |
1643 XLFD_FOUNDRY, | |
1644 XLFD_FAMILY, | |
1645 XLFD_WEIGHT, | |
1646 XLFD_SLANT, | |
1647 XLFD_SWIDTH, | |
1648 XLFD_ADSTYLE, | |
1649 XLFD_PIXEL_SIZE, | |
1650 XLFD_POINT_SIZE, | |
1651 XLFD_RESX, | |
1652 XLFD_RESY, | |
1653 XLFD_SPACING, | |
1654 XLFD_AVGWIDTH, | |
1655 XLFD_REGISTRY, | |
1656 XLFD_ENCODING, | |
1657 XLFD_LAST | |
1658 }; | |
1659 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1660 /* An enumerator for each possible slant value of a font. Taken from |
24995 | 1661 the XLFD specification. */ |
1662 | |
1663 enum xlfd_slant | |
1664 { | |
1665 XLFD_SLANT_UNKNOWN, | |
1666 XLFD_SLANT_ROMAN, | |
1667 XLFD_SLANT_ITALIC, | |
1668 XLFD_SLANT_OBLIQUE, | |
1669 XLFD_SLANT_REVERSE_ITALIC, | |
1670 XLFD_SLANT_REVERSE_OBLIQUE, | |
1671 XLFD_SLANT_OTHER | |
1672 }; | |
1673 | |
1674 /* Relative font weight according to XLFD documentation. */ | |
1675 | |
1676 enum xlfd_weight | |
1677 { | |
1678 XLFD_WEIGHT_UNKNOWN, | |
1679 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */ | |
1680 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */ | |
1681 XLFD_WEIGHT_LIGHT, /* 30 */ | |
1682 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */ | |
1683 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1684 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */ | |
1685 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */ | |
1686 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */ | |
1687 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */ | |
1688 }; | |
1689 | |
1690 /* Relative proportionate width. */ | |
1691 | |
1692 enum xlfd_swidth | |
1693 { | |
1694 XLFD_SWIDTH_UNKNOWN, | |
1695 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */ | |
1696 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */ | |
1697 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */ | |
1698 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */ | |
1699 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1700 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */ | |
1701 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */ | |
1702 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */ | |
1703 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */ | |
1704 }; | |
1705 | |
1706 /* Structure used for tables mapping XLFD weight, slant, and width | |
1707 names to numeric and symbolic values. */ | |
1708 | |
1709 struct table_entry | |
1710 { | |
1711 char *name; | |
1712 int numeric; | |
1713 Lisp_Object *symbol; | |
1714 }; | |
1715 | |
1716 /* Table of XLFD slant names and their numeric and symbolic | |
1717 representations. This table must be sorted by slant names in | |
1718 ascending order. */ | |
1719 | |
1720 static struct table_entry slant_table[] = | |
1721 { | |
1722 {"i", XLFD_SLANT_ITALIC, &Qitalic}, | |
1723 {"o", XLFD_SLANT_OBLIQUE, &Qoblique}, | |
1724 {"ot", XLFD_SLANT_OTHER, &Qitalic}, | |
1725 {"r", XLFD_SLANT_ROMAN, &Qnormal}, | |
1726 {"ri", XLFD_SLANT_REVERSE_ITALIC, &Qreverse_italic}, | |
1727 {"ro", XLFD_SLANT_REVERSE_OBLIQUE, &Qreverse_oblique} | |
1728 }; | |
1729 | |
1730 /* Table of XLFD weight names. This table must be sorted by weight | |
1731 names in ascending order. */ | |
1732 | |
1733 static struct table_entry weight_table[] = | |
1734 { | |
1735 {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}, | |
1736 {"bold", XLFD_WEIGHT_BOLD, &Qbold}, | |
1737 {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1738 {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1739 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light}, | |
1740 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1741 {"heavy", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1742 {"light", XLFD_WEIGHT_LIGHT, &Qlight}, | |
1743 {"medium", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1744 {"normal", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1745 {"regular", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1746 {"semibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1747 {"semilight", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1748 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT, &Qultra_light}, | |
1749 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold} | |
1750 }; | |
1751 | |
1752 /* Table of XLFD width names. This table must be sorted by width | |
1753 names in ascending order. */ | |
1754 | |
1755 static struct table_entry swidth_table[] = | |
1756 { | |
1757 {"compressed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1758 {"condensed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1759 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1760 {"expanded", XLFD_SWIDTH_EXPANDED, &Qexpanded}, | |
1761 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED, &Qextra_condensed}, | |
1762 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded}, | |
1763 {"medium", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1764 {"narrow", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1765 {"normal", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1766 {"regular", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1767 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED, &Qsemi_condensed}, | |
1768 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1769 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED, &Qultra_condensed}, | |
1770 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED, &Qultra_expanded}, | |
1771 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded} | |
1772 }; | |
1773 | |
1774 /* Structure used to hold the result of splitting font names in XLFD | |
1775 format into their fields. */ | |
1776 | |
1777 struct font_name | |
1778 { | |
1779 /* The original name which is modified destructively by | |
1780 split_font_name. The pointer is kept here to be able to free it | |
1781 if it was allocated from the heap. */ | |
1782 char *name; | |
1783 | |
1784 /* Font name fields. Each vector element points into `name' above. | |
1785 Fields are NUL-terminated. */ | |
1786 char *fields[XLFD_LAST]; | |
1787 | |
1788 /* Numeric values for those fields that interest us. See | |
1789 split_font_name for which these are. */ | |
1790 int numeric[XLFD_LAST]; | |
1791 }; | |
1792 | |
1793 /* The frame in effect when sorting font names. Set temporarily in | |
1794 sort_fonts so that it is available in font comparison functions. */ | |
1795 | |
1796 static struct frame *font_frame; | |
1797 | |
1798 /* Order by which font selection chooses fonts. The default values | |
1799 mean `first, find a best match for the font width, then for the | |
1800 font height, then for weight, then for slant.' This variable can be | |
1801 set via set-face-font-sort-order. */ | |
1802 | |
1803 static int font_sort_order[4]; | |
1804 | |
1805 | |
1806 /* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries. | |
1807 TABLE must be sorted by TABLE[i]->name in ascending order. Value | |
1808 is a pointer to the matching table entry or null if no table entry | |
1809 matches. */ | |
1810 | |
1811 static struct table_entry * | |
1812 xlfd_lookup_field_contents (table, dim, font, field_index) | |
1813 struct table_entry *table; | |
1814 int dim; | |
1815 struct font_name *font; | |
1816 int field_index; | |
1817 { | |
1818 /* Function split_font_name converts fields to lower-case, so there | |
1819 is no need to use xstrlwr or xstricmp here. */ | |
1820 char *s = font->fields[field_index]; | |
1821 int low, mid, high, cmp; | |
1822 | |
1823 low = 0; | |
1824 high = dim - 1; | |
1825 | |
1826 while (low <= high) | |
1827 { | |
1828 mid = (low + high) / 2; | |
1829 cmp = strcmp (table[mid].name, s); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1830 |
24995 | 1831 if (cmp < 0) |
1832 low = mid + 1; | |
1833 else if (cmp > 0) | |
1834 high = mid - 1; | |
1835 else | |
1836 return table + mid; | |
1837 } | |
1838 | |
1839 return NULL; | |
1840 } | |
1841 | |
1842 | |
1843 /* Return a numeric representation for font name field | |
1844 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1845 has DIM entries. Value is the numeric value found or DFLT if no | |
1846 table entry matches. This function is used to translate weight, | |
1847 slant, and swidth names of XLFD font names to numeric values. */ | |
1848 | |
1849 static INLINE int | |
1850 xlfd_numeric_value (table, dim, font, field_index, dflt) | |
1851 struct table_entry *table; | |
1852 int dim; | |
1853 struct font_name *font; | |
1854 int field_index; | |
1855 int dflt; | |
1856 { | |
1857 struct table_entry *p; | |
1858 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1859 return p ? p->numeric : dflt; | |
1860 } | |
1861 | |
1862 | |
1863 /* Return a symbolic representation for font name field | |
1864 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1865 has DIM entries. Value is the symbolic value found or DFLT if no | |
1866 table entry matches. This function is used to translate weight, | |
1867 slant, and swidth names of XLFD font names to symbols. */ | |
1868 | |
1869 static INLINE Lisp_Object | |
1870 xlfd_symbolic_value (table, dim, font, field_index, dflt) | |
1871 struct table_entry *table; | |
1872 int dim; | |
1873 struct font_name *font; | |
1874 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
|
1875 Lisp_Object dflt; |
24995 | 1876 { |
1877 struct table_entry *p; | |
1878 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1879 return p ? *p->symbol : dflt; | |
1880 } | |
1881 | |
1882 | |
1883 /* Return a numeric value for the slant of the font given by FONT. */ | |
1884 | |
1885 static INLINE int | |
1886 xlfd_numeric_slant (font) | |
1887 struct font_name *font; | |
1888 { | |
1889 return xlfd_numeric_value (slant_table, DIM (slant_table), | |
1890 font, XLFD_SLANT, XLFD_SLANT_ROMAN); | |
1891 } | |
1892 | |
1893 | |
1894 /* Return a symbol representing the weight of the font given by FONT. */ | |
1895 | |
1896 static INLINE Lisp_Object | |
1897 xlfd_symbolic_slant (font) | |
1898 struct font_name *font; | |
1899 { | |
1900 return xlfd_symbolic_value (slant_table, DIM (slant_table), | |
1901 font, XLFD_SLANT, Qnormal); | |
1902 } | |
1903 | |
1904 | |
1905 /* Return a numeric value for the weight of the font given by FONT. */ | |
1906 | |
1907 static INLINE int | |
1908 xlfd_numeric_weight (font) | |
1909 struct font_name *font; | |
1910 { | |
1911 return xlfd_numeric_value (weight_table, DIM (weight_table), | |
1912 font, XLFD_WEIGHT, XLFD_WEIGHT_MEDIUM); | |
1913 } | |
1914 | |
1915 | |
1916 /* Return a symbol representing the slant of the font given by FONT. */ | |
1917 | |
1918 static INLINE Lisp_Object | |
1919 xlfd_symbolic_weight (font) | |
1920 struct font_name *font; | |
1921 { | |
1922 return xlfd_symbolic_value (weight_table, DIM (weight_table), | |
1923 font, XLFD_WEIGHT, Qnormal); | |
1924 } | |
1925 | |
1926 | |
1927 /* Return a numeric value for the swidth of the font whose XLFD font | |
1928 name fields are found in FONT. */ | |
1929 | |
1930 static INLINE int | |
1931 xlfd_numeric_swidth (font) | |
1932 struct font_name *font; | |
1933 { | |
1934 return xlfd_numeric_value (swidth_table, DIM (swidth_table), | |
1935 font, XLFD_SWIDTH, XLFD_SWIDTH_MEDIUM); | |
1936 } | |
1937 | |
1938 | |
1939 /* Return a symbolic value for the swidth of FONT. */ | |
1940 | |
1941 static INLINE Lisp_Object | |
1942 xlfd_symbolic_swidth (font) | |
1943 struct font_name *font; | |
1944 { | |
1945 return xlfd_symbolic_value (swidth_table, DIM (swidth_table), | |
1946 font, XLFD_SWIDTH, Qnormal); | |
1947 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1948 |
24995 | 1949 |
1950 /* Look up the entry of SYMBOL in the vector TABLE which has DIM | |
1951 entries. Value is a pointer to the matching table entry or null if | |
1952 no element of TABLE contains SYMBOL. */ | |
1953 | |
1954 static struct table_entry * | |
1955 face_value (table, dim, symbol) | |
1956 struct table_entry *table; | |
1957 int dim; | |
1958 Lisp_Object symbol; | |
1959 { | |
1960 int i; | |
1961 | |
1962 xassert (SYMBOLP (symbol)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1963 |
24995 | 1964 for (i = 0; i < dim; ++i) |
1965 if (EQ (*table[i].symbol, symbol)) | |
1966 break; | |
1967 | |
1968 return i < dim ? table + i : NULL; | |
1969 } | |
1970 | |
1971 | |
1972 /* Return a numeric value for SYMBOL in the vector TABLE which has DIM | |
1973 entries. Value is -1 if SYMBOL is not found in TABLE. */ | |
1974 | |
1975 static INLINE int | |
1976 face_numeric_value (table, dim, symbol) | |
1977 struct table_entry *table; | |
1978 int dim; | |
1979 Lisp_Object symbol; | |
1980 { | |
1981 struct table_entry *p = face_value (table, dim, symbol); | |
1982 return p ? p->numeric : -1; | |
1983 } | |
1984 | |
1985 | |
1986 /* Return a numeric value representing the weight specified by Lisp | |
1987 symbol WEIGHT. Value is one of the enumerators of enum | |
1988 xlfd_weight. */ | |
1989 | |
1990 static INLINE int | |
1991 face_numeric_weight (weight) | |
1992 Lisp_Object weight; | |
1993 { | |
1994 return face_numeric_value (weight_table, DIM (weight_table), weight); | |
1995 } | |
1996 | |
1997 | |
1998 /* Return a numeric value representing the slant specified by Lisp | |
1999 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */ | |
2000 | |
2001 static INLINE int | |
2002 face_numeric_slant (slant) | |
2003 Lisp_Object slant; | |
2004 { | |
2005 return face_numeric_value (slant_table, DIM (slant_table), slant); | |
2006 } | |
2007 | |
2008 | |
2009 /* Return a numeric value representing the swidth specified by Lisp | |
2010 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */ | |
2011 | |
2012 static int | |
2013 face_numeric_swidth (width) | |
2014 Lisp_Object width; | |
2015 { | |
2016 return face_numeric_value (swidth_table, DIM (swidth_table), width); | |
2017 } | |
2018 | |
2019 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2020 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2021 |
2022 /* Return non-zero if FONT is the name of a fixed-pitch font. */ | |
2023 | |
2024 static INLINE int | |
2025 xlfd_fixed_p (font) | |
2026 struct font_name *font; | |
2027 { | |
2028 /* Function split_font_name converts fields to lower-case, so there | |
2029 is no need to use tolower here. */ | |
2030 return *font->fields[XLFD_SPACING] != 'p'; | |
2031 } | |
2032 | |
2033 | |
2034 /* Return the point size of FONT on frame F, measured in 1/10 pt. | |
2035 | |
2036 The actual height of the font when displayed on F depends on the | |
2037 resolution of both the font and frame. For example, a 10pt font | |
2038 designed for a 100dpi display will display larger than 10pt on a | |
2039 75dpi display. (It's not unusual to use fonts not designed for the | |
2040 display one is using. For example, some intlfonts are available in | |
2041 72dpi versions, only.) | |
2042 | |
2043 Value is the real point size of FONT on frame F, or 0 if it cannot | |
2044 be determined. */ | |
2045 | |
2046 static INLINE int | |
2047 xlfd_point_size (f, font) | |
2048 struct frame *f; | |
2049 struct font_name *font; | |
2050 { | |
2051 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
2052 double font_resy = atoi (font->fields[XLFD_RESY]); | |
2053 double font_pt = atoi (font->fields[XLFD_POINT_SIZE]); | |
2054 int real_pt; | |
2055 | |
2056 if (font_resy == 0 || font_pt == 0) | |
2057 real_pt = 0; | |
2058 else | |
2059 real_pt = (font_resy / resy) * font_pt + 0.5; | |
2060 | |
2061 return real_pt; | |
2062 } | |
2063 | |
2064 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2065 /* 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
|
2066 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
|
2067 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
|
2068 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2069 static INLINE int |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2070 pixel_point_size (f, pixel) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2071 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2072 int pixel; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2073 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2074 double resy = FRAME_X_DISPLAY_INFO (f)->resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2075 double real_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2076 int int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2077 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2078 /* 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
|
2079 real_pt = pixel * 72 / resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2080 int_pt = real_pt + 0.5; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2081 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2082 return 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 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2085 |
24995 | 2086 /* Split XLFD font name FONT->name destructively into NUL-terminated, |
2087 lower-case fields in FONT->fields. NUMERIC_P non-zero means | |
2088 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH, | |
2089 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is | |
2090 zero if the font name doesn't have the format we expect. The | |
2091 expected format is a font name that starts with a `-' and has | |
2092 XLFD_LAST fields separated by `-'. (The XLFD specification allows | |
2093 forms of font names where certain field contents are enclosed in | |
2094 square brackets. We don't support that, for now. */ | |
2095 | |
2096 static int | |
2097 split_font_name (f, font, numeric_p) | |
2098 struct frame *f; | |
2099 struct font_name *font; | |
2100 int numeric_p; | |
2101 { | |
2102 int i = 0; | |
2103 int success_p; | |
2104 | |
2105 if (*font->name == '-') | |
2106 { | |
2107 char *p = xstrlwr (font->name) + 1; | |
2108 | |
2109 while (i < XLFD_LAST) | |
2110 { | |
2111 font->fields[i] = p; | |
2112 ++i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2113 |
24995 | 2114 while (*p && *p != '-') |
2115 ++p; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2116 |
24995 | 2117 if (*p != '-') |
2118 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2119 |
24995 | 2120 *p++ = 0; |
2121 } | |
2122 } | |
2123 | |
2124 success_p = i == XLFD_LAST; | |
2125 | |
2126 /* If requested, and font name was in the expected format, | |
2127 compute numeric values for some fields. */ | |
2128 if (numeric_p && success_p) | |
2129 { | |
2130 font->numeric[XLFD_POINT_SIZE] = xlfd_point_size (f, font); | |
2131 font->numeric[XLFD_RESY] = atoi (font->fields[XLFD_RESY]); | |
2132 font->numeric[XLFD_SLANT] = xlfd_numeric_slant (font); | |
2133 font->numeric[XLFD_WEIGHT] = xlfd_numeric_weight (font); | |
2134 font->numeric[XLFD_SWIDTH] = xlfd_numeric_swidth (font); | |
2135 } | |
2136 | |
2137 return success_p; | |
2138 } | |
2139 | |
2140 | |
2141 /* Build an XLFD font name from font name fields in FONT. Value is a | |
2142 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
|
2143 |
24995 | 2144 static char * |
2145 build_font_name (font) | |
2146 struct font_name *font; | |
2147 { | |
2148 int i; | |
2149 int size = 100; | |
2150 char *font_name = (char *) xmalloc (size); | |
2151 int total_length = 0; | |
2152 | |
2153 for (i = 0; i < XLFD_LAST; ++i) | |
2154 { | |
2155 /* Add 1 because of the leading `-'. */ | |
2156 int len = strlen (font->fields[i]) + 1; | |
2157 | |
2158 /* Reallocate font_name if necessary. Add 1 for the final | |
2159 NUL-byte. */ | |
2160 if (total_length + len + 1 >= size) | |
2161 { | |
2162 int new_size = max (2 * size, size + len + 1); | |
2163 int sz = new_size * sizeof *font_name; | |
2164 font_name = (char *) xrealloc (font_name, sz); | |
2165 size = new_size; | |
2166 } | |
2167 | |
2168 font_name[total_length] = '-'; | |
2169 bcopy (font->fields[i], font_name + total_length + 1, len - 1); | |
2170 total_length += len; | |
2171 } | |
2172 | |
2173 font_name[total_length] = 0; | |
2174 return font_name; | |
2175 } | |
2176 | |
2177 | |
2178 /* Free an array FONTS of N font_name structures. This frees FONTS | |
2179 itself and all `name' fields in its elements. */ | |
2180 | |
2181 static INLINE void | |
2182 free_font_names (fonts, n) | |
2183 struct font_name *fonts; | |
2184 int n; | |
2185 { | |
2186 while (n) | |
2187 xfree (fonts[--n].name); | |
2188 xfree (fonts); | |
2189 } | |
2190 | |
2191 | |
2192 /* Sort vector FONTS of font_name structures which contains NFONTS | |
2193 elements using qsort and comparison function CMPFN. F is the frame | |
2194 on which the fonts will be used. The global variable font_frame | |
2195 is temporarily set to F to make it available in CMPFN. */ | |
2196 | |
2197 static INLINE void | |
2198 sort_fonts (f, fonts, nfonts, cmpfn) | |
2199 struct frame *f; | |
2200 struct font_name *fonts; | |
2201 int nfonts; | |
2202 int (*cmpfn) P_ ((const void *, const void *)); | |
2203 { | |
2204 font_frame = f; | |
2205 qsort (fonts, nfonts, sizeof *fonts, cmpfn); | |
2206 font_frame = NULL; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2207 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2208 |
24995 | 2209 |
2210 /* Get fonts matching PATTERN on frame F. If F is null, use the first | |
2211 display in x_display_list. FONTS is a pointer to a vector of | |
2212 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try | |
2213 alternative patterns from Valternate_fontname_alist if no fonts are | |
2214 found matching PATTERN. SCALABLE_FONTS_P non-zero means include | |
2215 scalable fonts. | |
2216 | |
2217 For all fonts found, set FONTS[i].name to the name of the font, | |
2218 allocated via xmalloc, and split font names into fields. Ignore | |
2219 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
|
2220 |
24995 | 2221 This is similar to x_list_fonts. The differences are: |
2222 | |
2223 1. It avoids consing. | |
2224 2. It never calls XLoadQueryFont. */ | |
2225 | |
2226 static int | |
2227 x_face_list_fonts (f, pattern, fonts, nfonts, try_alternatives_p, | |
2228 scalable_fonts_p) | |
2229 struct frame *f; | |
2230 char *pattern; | |
2231 struct font_name *fonts; | |
2232 int nfonts, try_alternatives_p; | |
2233 int scalable_fonts_p; | |
2234 { | |
2235 int n, i, j; | |
2236 char **names; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2237 #ifdef HAVE_X_WINDOWS |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2238 Display *dpy = f ? FRAME_X_DISPLAY (f) : x_display_list->display; |
24995 | 2239 |
2240 /* Get the list of fonts matching PATTERN from the X server. */ | |
2241 BLOCK_INPUT; | |
2242 names = XListFonts (dpy, pattern, nfonts, &n); | |
2243 UNBLOCK_INPUT; | |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
2244 #endif /* HAVE_X_WINDOWS */ |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2245 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2246 /* 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
|
2247 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
|
2248 Lisp_Object lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2249 Lisp_Object lpattern, tem; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2250 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2251 n = 0; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2252 names = NULL; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2253 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2254 lpattern = build_string (pattern); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2255 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2256 /* 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
|
2257 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2258 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
|
2259 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2260 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2261 /* Count fonts returned */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2262 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
|
2263 n++; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2264 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2265 /* Allocate array. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2266 if (n) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2267 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
|
2268 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2269 /* 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
|
2270 tem = lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2271 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
|
2272 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2273 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
|
2274 tem = XCDR (tem); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2275 } |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
2276 #endif /* WINDOWSNT */ |
24995 | 2277 |
2278 if (names) | |
2279 { | |
2280 /* Make a copy of the font names we got from X, and | |
2281 split them into fields. */ | |
2282 for (i = j = 0; i < n; ++i) | |
2283 { | |
2284 /* Make a copy of the font name. */ | |
2285 fonts[j].name = xstrdup (names[i]); | |
2286 | |
2287 /* Ignore fonts having a name that we can't parse. */ | |
2288 if (!split_font_name (f, fonts + j, 1)) | |
2289 xfree (fonts[j].name); | |
2290 else if (font_scalable_p (fonts + j)) | |
2291 { | |
2292 if (!scalable_fonts_p | |
2293 || !may_use_scalable_font_p (fonts + j, names[i])) | |
2294 xfree (fonts[j].name); | |
2295 else | |
2296 ++j; | |
2297 } | |
2298 else | |
2299 ++j; | |
2300 } | |
2301 | |
2302 n = j; | |
2303 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2304 #ifdef HAVE_X_WINDOWS |
24995 | 2305 /* Free font names. */ |
2306 BLOCK_INPUT; | |
2307 XFreeFontNames (names); | |
2308 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2309 #endif |
24995 | 2310 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2311 |
24995 | 2312 |
2313 /* If no fonts found, try patterns from Valternate_fontname_alist. */ | |
2314 if (n == 0 && try_alternatives_p) | |
2315 { | |
2316 Lisp_Object list = Valternate_fontname_alist; | |
2317 | |
2318 while (CONSP (list)) | |
2319 { | |
2320 Lisp_Object entry = XCAR (list); | |
2321 if (CONSP (entry) | |
2322 && STRINGP (XCAR (entry)) | |
2323 && strcmp (XSTRING (XCAR (entry))->data, pattern) == 0) | |
2324 break; | |
2325 list = XCDR (list); | |
2326 } | |
2327 | |
2328 if (CONSP (list)) | |
2329 { | |
2330 Lisp_Object patterns = XCAR (list); | |
2331 Lisp_Object name; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2332 |
24995 | 2333 while (CONSP (patterns) |
2334 /* If list is screwed up, give up. */ | |
2335 && (name = XCAR (patterns), | |
2336 STRINGP (name)) | |
2337 /* Ignore patterns equal to PATTERN because we tried that | |
2338 already with no success. */ | |
2339 && (strcmp (XSTRING (name)->data, pattern) == 0 | |
2340 || (n = x_face_list_fonts (f, XSTRING (name)->data, | |
2341 fonts, nfonts, 0, | |
2342 scalable_fonts_p), | |
2343 n == 0))) | |
2344 patterns = XCDR (patterns); | |
2345 } | |
2346 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2347 |
24995 | 2348 return n; |
2349 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2350 |
24995 | 2351 |
2352 /* Determine the first font matching PATTERN on frame F. Return in | |
2353 *FONT the matching font name, split into fields. Value is non-zero | |
2354 if a match was found. */ | |
2355 | |
2356 static int | |
2357 first_font_matching (f, pattern, font) | |
2358 struct frame *f; | |
2359 char *pattern; | |
2360 struct font_name *font; | |
2361 { | |
2362 int nfonts = 100; | |
2363 struct font_name *fonts; | |
2364 | |
2365 fonts = (struct font_name *) xmalloc (nfonts * sizeof *fonts); | |
2366 nfonts = x_face_list_fonts (f, pattern, fonts, nfonts, 1, 0); | |
2367 | |
2368 if (nfonts > 0) | |
2369 { | |
2370 bcopy (&fonts[0], font, sizeof *font); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2371 |
24995 | 2372 fonts[0].name = NULL; |
2373 free_font_names (fonts, nfonts); | |
2374 } | |
2375 | |
2376 return nfonts > 0; | |
2377 } | |
2378 | |
2379 | |
2380 /* Determine fonts matching PATTERN on frame F. Sort resulting fonts | |
2381 using comparison function CMPFN. Value is the number of fonts | |
2382 found. If value is non-zero, *FONTS is set to a vector of | |
2383 font_name structures allocated from the heap containing matching | |
2384 fonts. Each element of *FONTS contains a name member that is also | |
2385 allocated from the heap. Font names in these structures are split | |
2386 into fields. Use free_font_names to free such an array. */ | |
2387 | |
2388 static int | |
2389 sorted_font_list (f, pattern, cmpfn, fonts) | |
2390 struct frame *f; | |
2391 char *pattern; | |
2392 int (*cmpfn) P_ ((const void *, const void *)); | |
2393 struct font_name **fonts; | |
2394 { | |
2395 int nfonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2396 |
24995 | 2397 /* Get the list of fonts matching pattern. 100 should suffice. */ |
25270 | 2398 nfonts = DEFAULT_FONT_LIST_LIMIT; |
2399 if (INTEGERP (Vfont_list_limit) && XINT (Vfont_list_limit) > 0) | |
2400 nfonts = XFASTINT (Vfont_list_limit); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2401 |
24995 | 2402 *fonts = (struct font_name *) xmalloc (nfonts * sizeof **fonts); |
2403 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1, 1); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2404 |
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2405 /* Sort the resulting array and return it in *FONTS. If no |
24995 | 2406 fonts were found, make sure to set *FONTS to null. */ |
2407 if (nfonts) | |
2408 sort_fonts (f, *fonts, nfonts, cmpfn); | |
2409 else | |
2410 { | |
2411 xfree (*fonts); | |
2412 *fonts = NULL; | |
2413 } | |
2414 | |
2415 return nfonts; | |
2416 } | |
2417 | |
2418 | |
2419 /* Compare two font_name structures *A and *B. Value is analogous to | |
2420 strcmp. Sort order is given by the global variable | |
2421 font_sort_order. Font names are sorted so that, everything else | |
2422 being equal, fonts with a resolution closer to that of the frame on | |
2423 which they are used are listed first. The global variable | |
2424 font_frame is the frame on which we operate. */ | |
2425 | |
2426 static int | |
2427 cmp_font_names (a, b) | |
2428 const void *a, *b; | |
2429 { | |
2430 struct font_name *x = (struct font_name *) a; | |
2431 struct font_name *y = (struct font_name *) b; | |
2432 int cmp; | |
2433 | |
2434 /* All strings have been converted to lower-case by split_font_name, | |
2435 so we can use strcmp here. */ | |
2436 cmp = strcmp (x->fields[XLFD_FAMILY], y->fields[XLFD_FAMILY]); | |
2437 if (cmp == 0) | |
2438 { | |
2439 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2440 |
24995 | 2441 for (i = 0; i < DIM (font_sort_order) && cmp == 0; ++i) |
2442 { | |
2443 int j = font_sort_order[i]; | |
2444 cmp = x->numeric[j] - y->numeric[j]; | |
2445 } | |
2446 | |
2447 if (cmp == 0) | |
2448 { | |
2449 /* Everything else being equal, we prefer fonts with an | |
2450 y-resolution closer to that of the frame. */ | |
2451 int resy = FRAME_X_DISPLAY_INFO (font_frame)->resy; | |
2452 int x_resy = x->numeric[XLFD_RESY]; | |
2453 int y_resy = y->numeric[XLFD_RESY]; | |
2454 cmp = abs (resy - x_resy) - abs (resy - y_resy); | |
2455 } | |
2456 } | |
2457 | |
2458 return cmp; | |
2459 } | |
2460 | |
2461 | |
2462 /* 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
|
2463 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
|
2464 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
|
2465 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
|
2466 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
|
2467 Value is the number of fonts found. */ |
24995 | 2468 |
2469 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2470 font_list (f, pattern, family, registry, fonts) |
24995 | 2471 struct frame *f; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2472 Lisp_Object pattern, family, registry; |
24995 | 2473 struct font_name **fonts; |
2474 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2475 char *pattern_str, *family_str, *registry_str; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2476 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2477 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2478 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2479 family_str = (NILP (family) ? "*" : (char *) XSTRING (family)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2480 registry_str = (NILP (registry) ? "*" : (char *) XSTRING (registry)->data); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2481 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2482 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
|
2483 + strlen (registry_str) |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2484 + 10); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2485 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
|
2486 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
|
2487 strcat (pattern_str, "-*-"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2488 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
|
2489 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
|
2490 { |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2491 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
|
2492 strcat (pattern_str, "-*"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2493 else |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2494 strcat (pattern_str, "*-*"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2495 } |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2496 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2497 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2498 pattern_str = (char *) XSTRING (pattern)->data; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2499 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2500 return sorted_font_list (f, pattern_str, cmp_font_names, fonts); |
24995 | 2501 } |
2502 | |
2503 | |
2504 /* 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
|
2505 x-family-fonts and x-font-family-list to remove duplicate font |
24995 | 2506 entries. */ |
2507 | |
2508 static void | |
2509 remove_duplicates (list) | |
2510 Lisp_Object list; | |
2511 { | |
2512 Lisp_Object tail = list; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2513 |
24995 | 2514 while (!NILP (tail) && !NILP (XCDR (tail))) |
2515 { | |
2516 Lisp_Object next = XCDR (tail); | |
2517 if (!NILP (Fequal (XCAR (next), XCAR (tail)))) | |
2518 XCDR (tail) = XCDR (next); | |
2519 else | |
2520 tail = XCDR (tail); | |
2521 } | |
2522 } | |
2523 | |
2524 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2525 DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0, |
24995 | 2526 "Return a list of available fonts of family FAMILY on FRAME.\n\ |
2527 If FAMILY is omitted or nil, list all families.\n\ | |
2528 Otherwise, FAMILY must be a string, possibly containing wildcards\n\ | |
2529 `?' and `*'.\n\ | |
2530 If FRAME is omitted or nil, use the selected frame.\n\ | |
2531 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT\n\ | |
25270 | 2532 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].\n\ |
24995 | 2533 FAMILY is the font family name. POINT-SIZE is the size of the\n\ |
2534 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the\n\ | |
2535 width, weight and slant of the font. These symbols are the same as for\n\ | |
2536 face attributes. FIXED-P is non-nil if the font is fixed-pitch.\n\ | |
25270 | 2537 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string\n\ |
2538 giving the registry and encoding of the font.\n\ | |
24995 | 2539 The result list is sorted according to the current setting of\n\ |
2540 the face font sort order.") | |
2541 (family, frame) | |
2542 Lisp_Object family, frame; | |
2543 { | |
2544 struct frame *f = check_x_frame (frame); | |
2545 struct font_name *fonts; | |
2546 int i, nfonts; | |
2547 Lisp_Object result; | |
2548 struct gcpro gcpro1; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2549 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2550 if (!NILP (family)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2551 CHECK_STRING (family, 1); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2552 |
24995 | 2553 result = Qnil; |
2554 GCPRO1 (result); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2555 nfonts = font_list (f, Qnil, family, Qnil, &fonts); |
24995 | 2556 for (i = nfonts - 1; i >= 0; --i) |
2557 { | |
25270 | 2558 Lisp_Object v = Fmake_vector (make_number (8), Qnil); |
2559 char *tem; | |
24995 | 2560 |
2561 ASET (v, 0, build_string (fonts[i].fields[XLFD_FAMILY])); | |
2562 ASET (v, 1, xlfd_symbolic_swidth (fonts + i)); | |
2563 ASET (v, 2, make_number (xlfd_point_size (f, fonts + i))); | |
2564 ASET (v, 3, xlfd_symbolic_weight (fonts + i)); | |
2565 ASET (v, 4, xlfd_symbolic_slant (fonts + i)); | |
2566 ASET (v, 5, xlfd_fixed_p (fonts + i) ? Qt : Qnil); | |
25270 | 2567 tem = build_font_name (fonts + i); |
2568 ASET (v, 6, build_string (tem)); | |
2569 sprintf (tem, "%s-%s", fonts[i].fields[XLFD_REGISTRY], | |
2570 fonts[i].fields[XLFD_ENCODING]); | |
2571 ASET (v, 7, build_string (tem)); | |
2572 xfree (tem); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2573 |
24995 | 2574 result = Fcons (v, result); |
2575 } | |
2576 | |
2577 remove_duplicates (result); | |
2578 free_font_names (fonts, nfonts); | |
2579 UNGCPRO; | |
2580 return result; | |
2581 } | |
2582 | |
2583 | |
2584 DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list, | |
2585 0, 1, 0, | |
2586 "Return a list of available font families on FRAME.\n\ | |
2587 If FRAME is omitted or nil, use the selected frame.\n\ | |
2588 Value is a list of conses (FAMILY . FIXED-P) where FAMILY\n\ | |
2589 is a font family, and FIXED-P is non-nil if fonts of that family\n\ | |
2590 are fixed-pitch.") | |
2591 (frame) | |
2592 Lisp_Object frame; | |
2593 { | |
2594 struct frame *f = check_x_frame (frame); | |
2595 int nfonts, i; | |
2596 struct font_name *fonts; | |
2597 Lisp_Object result; | |
2598 struct gcpro gcpro1; | |
25270 | 2599 int count = specpdl_ptr - specpdl; |
2600 int limit; | |
2601 | |
2602 /* Let's consider all fonts. Increase the limit for matching | |
2603 fonts until we have them all. */ | |
2604 for (limit = 500;;) | |
2605 { | |
2606 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
|
2607 nfonts = font_list (f, Qnil, Qnil, Qnil, &fonts); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2608 |
25270 | 2609 if (nfonts == limit) |
2610 { | |
2611 free_font_names (fonts, nfonts); | |
2612 limit *= 2; | |
2613 } | |
2614 else | |
2615 break; | |
2616 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2617 |
24995 | 2618 result = Qnil; |
2619 GCPRO1 (result); | |
2620 for (i = nfonts - 1; i >= 0; --i) | |
2621 result = Fcons (Fcons (build_string (fonts[i].fields[XLFD_FAMILY]), | |
2622 xlfd_fixed_p (fonts + i) ? Qt : Qnil), | |
2623 result); | |
2624 | |
2625 remove_duplicates (result); | |
2626 free_font_names (fonts, nfonts); | |
2627 UNGCPRO; | |
25270 | 2628 return unbind_to (count, result); |
24995 | 2629 } |
2630 | |
2631 | |
2632 DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0, | |
2633 "Return a list of the names of available fonts matching PATTERN.\n\ | |
2634 If optional arguments FACE and FRAME are specified, return only fonts\n\ | |
2635 the same size as FACE on FRAME.\n\ | |
2636 PATTERN is a string, perhaps with wildcard characters;\n\ | |
2637 the * character matches any substring, and\n\ | |
2638 the ? character matches any single character.\n\ | |
2639 PATTERN is case-insensitive.\n\ | |
2640 FACE is a face name--a symbol.\n\ | |
2641 \n\ | |
2642 The return value is a list of strings, suitable as arguments to\n\ | |
2643 set-face-font.\n\ | |
2644 \n\ | |
2645 Fonts Emacs can't use may or may not be excluded\n\ | |
2646 even if they match PATTERN and FACE.\n\ | |
2647 The optional fourth argument MAXIMUM sets a limit on how many\n\ | |
2648 fonts to match. The first MAXIMUM fonts are reported.\n\ | |
2649 The optional fifth argument WIDTH, if specified, is a number of columns\n\ | |
2650 occupied by a character of a font. In that case, return only fonts\n\ | |
2651 the WIDTH times as wide as FACE on FRAME.") | |
2652 (pattern, face, frame, maximum, width) | |
2653 Lisp_Object pattern, face, frame, maximum, width; | |
2654 { | |
2655 struct frame *f; | |
2656 int size; | |
2657 int maxnames; | |
2658 | |
2659 check_x (); | |
2660 CHECK_STRING (pattern, 0); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2661 |
24995 | 2662 if (NILP (maximum)) |
2663 maxnames = 2000; | |
2664 else | |
2665 { | |
2666 CHECK_NATNUM (maximum, 0); | |
2667 maxnames = XINT (maximum); | |
2668 } | |
2669 | |
2670 if (!NILP (width)) | |
2671 CHECK_NUMBER (width, 4); | |
2672 | |
2673 /* We can't simply call check_x_frame because this function may be | |
2674 called before any frame is created. */ | |
2675 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
|
2676 if (!FRAME_WINDOW_P (f)) |
24995 | 2677 { |
2678 /* Perhaps we have not yet created any frame. */ | |
2679 f = NULL; | |
2680 face = Qnil; | |
2681 } | |
2682 | |
2683 /* Determine the width standard for comparison with the fonts we find. */ | |
2684 | |
2685 if (NILP (face)) | |
2686 size = 0; | |
2687 else | |
2688 { | |
2689 /* This is of limited utility since it works with character | |
2690 widths. Keep it for compatibility. --gerd. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2691 int face_id = lookup_named_face (f, face, 0); |
24995 | 2692 struct face *face = FACE_FROM_ID (f, face_id); |
2693 | |
2694 if (face->font) | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2695 size = FONT_WIDTH (face->font); |
24995 | 2696 else |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2697 size = FONT_WIDTH (FRAME_FONT (f)); |
24995 | 2698 |
2699 if (!NILP (width)) | |
2700 size *= XINT (width); | |
2701 } | |
2702 | |
2703 { | |
2704 Lisp_Object args[2]; | |
2705 | |
2706 args[0] = x_list_fonts (f, pattern, size, maxnames); | |
2707 if (f == NULL) | |
2708 /* We don't have to check fontsets. */ | |
2709 return args[0]; | |
2710 args[1] = list_fontsets (f, pattern, size); | |
2711 return Fnconc (2, args); | |
2712 } | |
2713 } | |
2714 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2715 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 2716 |
2717 | |
2718 | |
2719 /*********************************************************************** | |
2720 Lisp Faces | |
2721 ***********************************************************************/ | |
2722 | |
2723 /* Access face attributes of face FACE, a Lisp vector. */ | |
2724 | |
2725 #define LFACE_FAMILY(LFACE) \ | |
2726 XVECTOR (LFACE)->contents[LFACE_FAMILY_INDEX] | |
2727 #define LFACE_HEIGHT(LFACE) \ | |
2728 XVECTOR (LFACE)->contents[LFACE_HEIGHT_INDEX] | |
2729 #define LFACE_WEIGHT(LFACE) \ | |
2730 XVECTOR (LFACE)->contents[LFACE_WEIGHT_INDEX] | |
2731 #define LFACE_SLANT(LFACE) \ | |
2732 XVECTOR (LFACE)->contents[LFACE_SLANT_INDEX] | |
2733 #define LFACE_UNDERLINE(LFACE) \ | |
2734 XVECTOR (LFACE)->contents[LFACE_UNDERLINE_INDEX] | |
2735 #define LFACE_INVERSE(LFACE) \ | |
2736 XVECTOR (LFACE)->contents[LFACE_INVERSE_INDEX] | |
2737 #define LFACE_FOREGROUND(LFACE) \ | |
2738 XVECTOR (LFACE)->contents[LFACE_FOREGROUND_INDEX] | |
2739 #define LFACE_BACKGROUND(LFACE) \ | |
2740 XVECTOR (LFACE)->contents[LFACE_BACKGROUND_INDEX] | |
2741 #define LFACE_STIPPLE(LFACE) \ | |
2742 XVECTOR (LFACE)->contents[LFACE_STIPPLE_INDEX] | |
2743 #define LFACE_SWIDTH(LFACE) \ | |
2744 XVECTOR (LFACE)->contents[LFACE_SWIDTH_INDEX] | |
2745 #define LFACE_OVERLINE(LFACE) \ | |
2746 XVECTOR (LFACE)->contents[LFACE_OVERLINE_INDEX] | |
2747 #define LFACE_STRIKE_THROUGH(LFACE) \ | |
2748 XVECTOR (LFACE)->contents[LFACE_STRIKE_THROUGH_INDEX] | |
2749 #define LFACE_BOX(LFACE) \ | |
2750 XVECTOR (LFACE)->contents[LFACE_BOX_INDEX] | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2751 #define LFACE_FONT(LFACE) \ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2752 XVECTOR (LFACE)->contents[LFACE_FONT_INDEX] |
31178 | 2753 #define LFACE_INHERIT(LFACE) \ |
2754 XVECTOR (LFACE)->contents[LFACE_INHERIT_INDEX] | |
24995 | 2755 |
2756 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size | |
2757 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */ | |
2758 | |
2759 #define LFACEP(LFACE) \ | |
2760 (VECTORP (LFACE) \ | |
2761 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \ | |
2762 && EQ (XVECTOR (LFACE)->contents[0], Qface)) | |
2763 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2764 |
24995 | 2765 #if GLYPH_DEBUG |
2766 | |
2767 /* Check consistency of Lisp face attribute vector ATTRS. */ | |
2768 | |
2769 static void | |
2770 check_lface_attrs (attrs) | |
2771 Lisp_Object *attrs; | |
2772 { | |
2773 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX]) | |
2774 || STRINGP (attrs[LFACE_FAMILY_INDEX])); | |
2775 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX]) | |
2776 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX])); | |
2777 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX]) | |
31178 | 2778 || INTEGERP (attrs[LFACE_HEIGHT_INDEX]) |
2779 || FLOATP (attrs[LFACE_HEIGHT_INDEX]) | |
2780 || FUNCTIONP (attrs[LFACE_HEIGHT_INDEX])); | |
24995 | 2781 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX]) |
2782 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX])); | |
2783 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX]) | |
2784 || SYMBOLP (attrs[LFACE_SLANT_INDEX])); | |
2785 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX]) | |
2786 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX]) | |
2787 || STRINGP (attrs[LFACE_UNDERLINE_INDEX])); | |
2788 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX]) | |
2789 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX]) | |
2790 || STRINGP (attrs[LFACE_OVERLINE_INDEX])); | |
2791 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2792 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2793 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX])); | |
2794 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX]) | |
2795 || SYMBOLP (attrs[LFACE_BOX_INDEX]) | |
2796 || STRINGP (attrs[LFACE_BOX_INDEX]) | |
2797 || INTEGERP (attrs[LFACE_BOX_INDEX]) | |
2798 || CONSP (attrs[LFACE_BOX_INDEX])); | |
2799 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX]) | |
2800 || SYMBOLP (attrs[LFACE_INVERSE_INDEX])); | |
2801 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX]) | |
2802 || STRINGP (attrs[LFACE_FOREGROUND_INDEX])); | |
2803 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX]) | |
2804 || STRINGP (attrs[LFACE_BACKGROUND_INDEX])); | |
31178 | 2805 xassert (UNSPECIFIEDP (attrs[LFACE_INHERIT_INDEX]) |
2806 || NILP (attrs[LFACE_INHERIT_INDEX]) | |
2807 || SYMBOLP (attrs[LFACE_INHERIT_INDEX]) | |
2808 || CONSP (attrs[LFACE_INHERIT_INDEX])); | |
24995 | 2809 #ifdef HAVE_WINDOW_SYSTEM |
2810 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX]) | |
2811 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX]) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
2812 || !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
|
2813 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
|
2814 || NILP (attrs[LFACE_FONT_INDEX]) |
2f636fd2f714
(check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
Gerd Moellmann <gerd@gnu.org>
parents:
28230
diff
changeset
|
2815 || STRINGP (attrs[LFACE_FONT_INDEX])); |
24995 | 2816 #endif |
2817 } | |
2818 | |
2819 | |
2820 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */ | |
2821 | |
2822 static void | |
2823 check_lface (lface) | |
2824 Lisp_Object lface; | |
2825 { | |
2826 if (!NILP (lface)) | |
2827 { | |
2828 xassert (LFACEP (lface)); | |
2829 check_lface_attrs (XVECTOR (lface)->contents); | |
2830 } | |
2831 } | |
2832 | |
2833 #else /* GLYPH_DEBUG == 0 */ | |
2834 | |
2835 #define check_lface_attrs(attrs) (void) 0 | |
2836 #define check_lface(lface) (void) 0 | |
2837 | |
2838 #endif /* GLYPH_DEBUG == 0 */ | |
2839 | |
2840 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2841 /* 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
|
2842 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
|
2843 return that face's name. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2844 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2845 static Lisp_Object |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2846 resolve_face_name (face_name) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2847 Lisp_Object face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2848 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2849 Lisp_Object aliased; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2850 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2851 if (STRINGP (face_name)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2852 face_name = intern (XSTRING (face_name)->data); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2853 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2854 for (;;) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2855 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2856 aliased = Fget (face_name, Qface_alias); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2857 if (NILP (aliased)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2858 break; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2859 else |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2860 face_name = aliased; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2861 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2862 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2863 return face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2864 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2865 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2866 |
24995 | 2867 /* Return the face definition of FACE_NAME on frame F. F null means |
2868 return the global definition. FACE_NAME may be a string or a | |
2869 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
|
2870 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
|
2871 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
|
2872 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
|
2873 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
|
2874 name. */ |
24995 | 2875 |
2876 static INLINE Lisp_Object | |
2877 lface_from_face_name (f, face_name, signal_p) | |
2878 struct frame *f; | |
2879 Lisp_Object face_name; | |
2880 int signal_p; | |
2881 { | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2882 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2883 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2884 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
|
2885 |
24995 | 2886 if (f) |
2887 lface = assq_no_quit (face_name, f->face_alist); | |
2888 else | |
2889 lface = assq_no_quit (face_name, Vface_new_frame_defaults); | |
2890 | |
2891 if (CONSP (lface)) | |
2892 lface = XCDR (lface); | |
2893 else if (signal_p) | |
2894 signal_error ("Invalid face", face_name); | |
2895 | |
2896 check_lface (lface); | |
2897 return lface; | |
2898 } | |
2899 | |
2900 | |
2901 /* Get face attributes of face FACE_NAME from frame-local faces on | |
2902 frame F. Store the resulting attributes in ATTRS which must point | |
2903 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P | |
2904 is non-zero, signal an error if FACE_NAME does not name a face. | |
2905 Otherwise, value is zero if FACE_NAME is not a face. */ | |
2906 | |
2907 static INLINE int | |
2908 get_lface_attributes (f, face_name, attrs, signal_p) | |
2909 struct frame *f; | |
2910 Lisp_Object face_name; | |
2911 Lisp_Object *attrs; | |
2912 int signal_p; | |
2913 { | |
2914 Lisp_Object lface; | |
2915 int success_p; | |
2916 | |
2917 lface = lface_from_face_name (f, face_name, signal_p); | |
2918 if (!NILP (lface)) | |
2919 { | |
2920 bcopy (XVECTOR (lface)->contents, attrs, | |
2921 LFACE_VECTOR_SIZE * sizeof *attrs); | |
2922 success_p = 1; | |
2923 } | |
2924 else | |
2925 success_p = 0; | |
2926 | |
2927 return success_p; | |
2928 } | |
2929 | |
2930 | |
2931 /* Non-zero if all attributes in face attribute vector ATTRS are | |
2932 specified, i.e. are non-nil. */ | |
2933 | |
2934 static int | |
2935 lface_fully_specified_p (attrs) | |
2936 Lisp_Object *attrs; | |
2937 { | |
2938 int i; | |
2939 | |
2940 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
|
2941 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
|
2942 if (UNSPECIFIEDP (attrs[i])) |
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
2943 break; |
24995 | 2944 |
2945 return i == LFACE_VECTOR_SIZE; | |
2946 } | |
2947 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2948 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2949 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2950 /* 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
|
2951 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
|
2952 unspecified attributes of LFACE. The exception is `font' |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2953 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
|
2954 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2955 If FONTNAME is not available on frame F, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2956 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
|
2957 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
|
2958 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
|
2959 in LFACE and return 1. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2960 Otherwise, return 1. */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2961 |
24995 | 2962 static int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2963 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
|
2964 struct frame *f; |
24995 | 2965 Lisp_Object lface; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2966 Lisp_Object fontname; |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2967 int force_p, may_fail_p; |
24995 | 2968 { |
2969 struct font_name font; | |
2970 char *buffer; | |
2971 int pt; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2972 int have_xlfd_p; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2973 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2974 char *font_name = XSTRING (fontname)->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2975 struct font_info *font_info; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2976 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2977 /* 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
|
2978 fontset = fs_query_fontset (fontname, 0); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2979 if (fontset >= 0) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2980 font_name = XSTRING (fontset_ascii (fontset))->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2981 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2982 /* 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
|
2983 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
|
2984 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
|
2985 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
|
2986 later. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2987 BLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2988 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
|
2989 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2990 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2991 if (!font_info) |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2992 { |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2993 if (may_fail_p) |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2994 return 0; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2995 abort (); |
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 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2998 font.name = STRDUPA (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2999 have_xlfd_p = split_font_name (f, &font, 1); |
24995 | 3000 |
3001 /* 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
|
3002 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
|
3003 name conforming to XLFD, set normal values. */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3004 |
24995 | 3005 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface))) |
3006 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3007 Lisp_Object val; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3008 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3009 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3010 buffer = (char *) alloca (strlen (font.fields[XLFD_FAMILY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3011 + strlen (font.fields[XLFD_FOUNDRY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3012 + 2); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3013 sprintf (buffer, "%s-%s", font.fields[XLFD_FOUNDRY], |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3014 font.fields[XLFD_FAMILY]); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3015 val = build_string (buffer); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3016 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3017 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3018 val = build_string ("*"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3019 LFACE_FAMILY (lface) = val; |
24995 | 3020 } |
3021 | |
3022 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface))) | |
3023 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3024 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3025 pt = xlfd_point_size (f, &font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3026 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3027 pt = pixel_point_size (f, font_info->height * 10); |
24995 | 3028 xassert (pt > 0); |
3029 LFACE_HEIGHT (lface) = make_number (pt); | |
3030 } | |
3031 | |
3032 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3033 LFACE_SWIDTH (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3034 = have_xlfd_p ? xlfd_symbolic_swidth (&font) : Qnormal; |
24995 | 3035 |
3036 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3037 LFACE_WEIGHT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3038 = have_xlfd_p ? xlfd_symbolic_weight (&font) : Qnormal; |
24995 | 3039 |
3040 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3041 LFACE_SLANT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3042 = have_xlfd_p ? xlfd_symbolic_slant (&font) : Qnormal; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3043 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3044 LFACE_FONT (lface) = fontname; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3045 |
24995 | 3046 return 1; |
3047 } | |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
3048 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3049 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3050 |
3051 | |
31178 | 3052 /* Merges the face height FROM with the face height TO, and returns the |
3053 merged height. If FROM is an invalid height, then INVALID is | |
3054 returned instead. FROM may be a either an absolute face height or a | |
3055 `relative' height, and TO must be an absolute height. The returned | |
3056 value is always an absolute height. GCPRO is a lisp value that will | |
3057 be protected from garbage-collection if this function makes a call | |
3058 into lisp. */ | |
3059 | |
3060 Lisp_Object | |
3061 merge_face_heights (from, to, invalid, gcpro) | |
3062 Lisp_Object from, to, invalid, gcpro; | |
3063 { | |
3064 int result = 0; | |
3065 | |
3066 if (INTEGERP (from)) | |
3067 result = XINT (from); | |
3068 else if (NUMBERP (from)) | |
3069 result = XFLOATINT (from) * XINT (to); | |
3070 #if 0 /* Probably not so useful. */ | |
3071 else if (CONSP (from) && CONSP (XCDR (from))) | |
3072 { | |
3073 if (EQ (XCAR(from), Qplus) || EQ (XCAR(from), Qminus)) | |
3074 { | |
3075 if (INTEGERP (XCAR (XCDR (from)))) | |
3076 { | |
3077 int inc = XINT (XCAR (XCDR (from))); | |
3078 if (EQ (XCAR (from), Qminus)) | |
3079 inc = -inc; | |
3080 | |
3081 result = XFASTINT (to); | |
3082 if (result + inc > 0) | |
3083 /* Note that `underflows' don't mean FROM is invalid, so | |
3084 we just pin the result at TO if it would otherwise be | |
3085 negative or 0. */ | |
3086 result += inc; | |
3087 } | |
3088 } | |
3089 } | |
3090 #endif | |
3091 else if (FUNCTIONP (from)) | |
3092 { | |
3093 /* Call function with current height as argument. | |
3094 From is the new height. */ | |
3095 Lisp_Object args[2], height; | |
3096 struct gcpro gcpro1; | |
3097 | |
3098 GCPRO1 (gcpro); | |
3099 | |
3100 args[0] = from; | |
3101 args[1] = to; | |
32176
01156edaa3f9
(merge_face_heights): Use safe_call instead of
Gerd Moellmann <gerd@gnu.org>
parents:
31940
diff
changeset
|
3102 height = safe_call (2, args); |
31178 | 3103 |
3104 UNGCPRO; | |
3105 | |
3106 if (NUMBERP (height)) | |
3107 result = XFLOATINT (height); | |
3108 } | |
3109 | |
3110 if (result > 0) | |
3111 return make_number (result); | |
3112 else | |
3113 return invalid; | |
3114 } | |
3115 | |
3116 | |
3117 /* 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
|
3118 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
|
3119 completely specified and contain only absolute attributes. Every |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3120 specified attribute of FROM overrides the corresponding attribute of |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3121 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
|
3122 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
|
3123 face inheritance; it should be Qnil when called from other places. */ |
24995 | 3124 |
3125 static INLINE void | |
31178 | 3126 merge_face_vectors (f, from, to, cycle_check) |
3127 struct frame *f; | |
24995 | 3128 Lisp_Object *from, *to; |
31178 | 3129 Lisp_Object cycle_check; |
24995 | 3130 { |
3131 int i; | |
31178 | 3132 |
3133 /* If FROM inherits from some other faces, merge their attributes into | |
3134 TO before merging FROM's direct attributes. Note that an :inherit | |
3135 attribute of `unspecified' is the same as one of nil; we never | |
3136 merge :inherit attributes, so nil is more correct, but lots of | |
3137 other code uses `unspecified' as a generic value for face attributes. */ | |
3138 if (!UNSPECIFIEDP (from[LFACE_INHERIT_INDEX]) | |
3139 && !NILP (from[LFACE_INHERIT_INDEX])) | |
3140 merge_face_inheritance (f, from[LFACE_INHERIT_INDEX], to, cycle_check); | |
3141 | |
31221 | 3142 /* If TO specifies a :font attribute, and FROM specifies some |
3143 font-related attribute, we need to clear TO's :font attribute | |
3144 (because it will be inconsistent with whatever FROM specifies, and | |
3145 FROM takes precedence). */ | |
3146 if (!NILP (to[LFACE_FONT_INDEX]) | |
3147 && (!UNSPECIFIEDP (from[LFACE_FAMILY_INDEX]) | |
3148 || !UNSPECIFIEDP (from[LFACE_HEIGHT_INDEX]) | |
3149 || !UNSPECIFIEDP (from[LFACE_WEIGHT_INDEX]) | |
3150 || !UNSPECIFIEDP (from[LFACE_SLANT_INDEX]) | |
3151 || !UNSPECIFIEDP (from[LFACE_SWIDTH_INDEX]))) | |
3152 to[LFACE_FONT_INDEX] = Qnil; | |
3153 | |
24995 | 3154 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) |
3155 if (!UNSPECIFIEDP (from[i])) | |
31178 | 3156 if (i == LFACE_HEIGHT_INDEX && !INTEGERP (from[i])) |
3157 to[i] = merge_face_heights (from[i], to[i], to[i], cycle_check); | |
3158 else | |
3159 to[i] = from[i]; | |
3160 | |
3161 /* TO is always an absolute face, which should inherit from nothing. | |
3162 We blindly copy the :inherit attribute above and fix it up here. */ | |
3163 to[LFACE_INHERIT_INDEX] = Qnil; | |
3164 } | |
3165 | |
31202
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
3166 |
31178 | 3167 /* Checks the `cycle check' variable CHECK to see if it indicates that |
3168 EL is part of a cycle; CHECK must be either Qnil or a value returned | |
3169 by an earlier use of CYCLE_CHECK. SUSPICIOUS is the number of | |
3170 elements after which a cycle might be suspected; after that many | |
3171 elements, this macro begins consing in order to keep more precise | |
3172 track of elements. | |
3173 | |
3174 Returns NIL if a cycle was detected, otherwise a new value for CHECK | |
3175 that includes EL. | |
3176 | |
3177 CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so | |
3178 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
|
3179 |
31522
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3180 #define CYCLE_CHECK(check, el, suspicious) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3181 (NILP (check) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3182 ? make_number (0) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3183 : (INTEGERP (check) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3184 ? (XFASTINT (check) < (suspicious) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3185 ? make_number (XFASTINT (check) + 1) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3186 : Fcons (el, Qnil)) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3187 : (!NILP (Fmemq ((el), (check))) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3188 ? Qnil \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3189 : Fcons ((el), (check))))) |
31178 | 3190 |
31221 | 3191 |
3192 /* Merge face attributes from the face on frame F whose name is | |
3193 INHERITS, into the vector of face attributes TO; INHERITS may also be | |
3194 a list of face names, in which case they are applied in order. | |
3195 CYCLE_CHECK is used to detect loops in face inheritance. | |
3196 Returns true if any of the inherited attributes are `font-related'. */ | |
3197 | |
31178 | 3198 static void |
3199 merge_face_inheritance (f, inherit, to, cycle_check) | |
3200 struct frame *f; | |
3201 Lisp_Object inherit; | |
3202 Lisp_Object *to; | |
3203 Lisp_Object cycle_check; | |
3204 { | |
3205 if (SYMBOLP (inherit) && !EQ (inherit, Qunspecified)) | |
3206 /* Inherit from the named face INHERIT. */ | |
3207 { | |
3208 Lisp_Object lface; | |
3209 | |
3210 /* Make sure we're not in an inheritance loop. */ | |
3211 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15); | |
3212 if (NILP (cycle_check)) | |
3213 /* Cycle detected, ignore any further inheritance. */ | |
3214 return; | |
3215 | |
3216 lface = lface_from_face_name (f, inherit, 0); | |
3217 if (!NILP (lface)) | |
3218 merge_face_vectors (f, XVECTOR (lface)->contents, to, cycle_check); | |
3219 } | |
3220 else if (CONSP (inherit)) | |
3221 /* Handle a list of inherited faces by calling ourselves recursively | |
3222 on each element. Note that we only do so for symbol elements, so | |
3223 it's not possible to infinitely recurse. */ | |
3224 { | |
3225 while (CONSP (inherit)) | |
3226 { | |
3227 if (SYMBOLP (XCAR (inherit))) | |
3228 merge_face_inheritance (f, XCAR (inherit), to, cycle_check); | |
3229 | |
3230 /* Check for a circular inheritance list. */ | |
3231 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15); | |
3232 if (NILP (cycle_check)) | |
3233 /* Cycle detected. */ | |
3234 break; | |
3235 | |
3236 inherit = XCDR (inherit); | |
3237 } | |
3238 } | |
24995 | 3239 } |
3240 | |
3241 | |
3242 /* Given a Lisp face attribute vector TO and a Lisp object PROP that | |
3243 is a face property, determine the resulting face attributes on | |
3244 frame F, and store them in TO. PROP may be a single face | |
3245 specification or a list of such specifications. Each face | |
3246 specification can be | |
3247 | |
3248 1. A symbol or string naming a Lisp face. | |
3249 | |
3250 2. A property list of the form (KEYWORD VALUE ...) where each | |
3251 KEYWORD is a face attribute name, and value is an appropriate value | |
3252 for that attribute. | |
3253 | |
3254 3. Conses or the form (FOREGROUND-COLOR . COLOR) or | |
3255 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is | |
3256 for compatibility with 20.2. | |
3257 | |
3258 Face specifications earlier in lists take precedence over later | |
3259 specifications. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3260 |
24995 | 3261 static void |
3262 merge_face_vector_with_property (f, to, prop) | |
3263 struct frame *f; | |
3264 Lisp_Object *to; | |
3265 Lisp_Object prop; | |
3266 { | |
3267 if (CONSP (prop)) | |
3268 { | |
3269 Lisp_Object first = XCAR (prop); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3270 |
24995 | 3271 if (EQ (first, Qforeground_color) |
3272 || EQ (first, Qbackground_color)) | |
3273 { | |
3274 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR | |
3275 . COLOR). COLOR must be a string. */ | |
3276 Lisp_Object color_name = XCDR (prop); | |
3277 Lisp_Object color = first; | |
3278 | |
3279 if (STRINGP (color_name)) | |
3280 { | |
3281 if (EQ (color, Qforeground_color)) | |
3282 to[LFACE_FOREGROUND_INDEX] = color_name; | |
3283 else | |
3284 to[LFACE_BACKGROUND_INDEX] = color_name; | |
3285 } | |
3286 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3287 add_to_log ("Invalid face color", color_name, Qnil); |
24995 | 3288 } |
3289 else if (SYMBOLP (first) | |
3290 && *XSYMBOL (first)->name->data == ':') | |
3291 { | |
3292 /* Assume this is the property list form. */ | |
3293 while (CONSP (prop) && CONSP (XCDR (prop))) | |
3294 { | |
3295 Lisp_Object keyword = XCAR (prop); | |
3296 Lisp_Object value = XCAR (XCDR (prop)); | |
3297 | |
3298 if (EQ (keyword, QCfamily)) | |
3299 { | |
3300 if (STRINGP (value)) | |
3301 to[LFACE_FAMILY_INDEX] = value; | |
3302 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3303 add_to_log ("Invalid face font family", value, Qnil); |
24995 | 3304 } |
3305 else if (EQ (keyword, QCheight)) | |
3306 { | |
31178 | 3307 Lisp_Object new_height = |
3308 merge_face_heights (value, to[LFACE_HEIGHT_INDEX], | |
3309 Qnil, Qnil); | |
3310 | |
3311 if (NILP (new_height)) | |
3312 add_to_log ("Invalid face font height", value, Qnil); | |
24995 | 3313 else |
31178 | 3314 to[LFACE_HEIGHT_INDEX] = new_height; |
24995 | 3315 } |
3316 else if (EQ (keyword, QCweight)) | |
3317 { | |
3318 if (SYMBOLP (value) | |
3319 && face_numeric_weight (value) >= 0) | |
3320 to[LFACE_WEIGHT_INDEX] = value; | |
3321 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3322 add_to_log ("Invalid face weight", value, Qnil); |
24995 | 3323 } |
3324 else if (EQ (keyword, QCslant)) | |
3325 { | |
3326 if (SYMBOLP (value) | |
3327 && face_numeric_slant (value) >= 0) | |
3328 to[LFACE_SLANT_INDEX] = value; | |
3329 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3330 add_to_log ("Invalid face slant", value, Qnil); |
24995 | 3331 } |
3332 else if (EQ (keyword, QCunderline)) | |
3333 { | |
3334 if (EQ (value, Qt) | |
3335 || NILP (value) | |
3336 || STRINGP (value)) | |
3337 to[LFACE_UNDERLINE_INDEX] = value; | |
3338 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3339 add_to_log ("Invalid face underline", value, Qnil); |
24995 | 3340 } |
3341 else if (EQ (keyword, QCoverline)) | |
3342 { | |
3343 if (EQ (value, Qt) | |
3344 || NILP (value) | |
3345 || STRINGP (value)) | |
3346 to[LFACE_OVERLINE_INDEX] = value; | |
3347 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3348 add_to_log ("Invalid face overline", value, Qnil); |
24995 | 3349 } |
3350 else if (EQ (keyword, QCstrike_through)) | |
3351 { | |
3352 if (EQ (value, Qt) | |
3353 || NILP (value) | |
3354 || STRINGP (value)) | |
3355 to[LFACE_STRIKE_THROUGH_INDEX] = value; | |
3356 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3357 add_to_log ("Invalid face strike-through", value, Qnil); |
24995 | 3358 } |
3359 else if (EQ (keyword, QCbox)) | |
3360 { | |
3361 if (EQ (value, Qt)) | |
3362 value = make_number (1); | |
3363 if (INTEGERP (value) | |
3364 || STRINGP (value) | |
3365 || CONSP (value) | |
3366 || NILP (value)) | |
3367 to[LFACE_BOX_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 box", value, Qnil); |
24995 | 3370 } |
3371 else if (EQ (keyword, QCinverse_video) | |
3372 || EQ (keyword, QCreverse_video)) | |
3373 { | |
3374 if (EQ (value, Qt) || NILP (value)) | |
3375 to[LFACE_INVERSE_INDEX] = value; | |
3376 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3377 add_to_log ("Invalid face inverse-video", value, Qnil); |
24995 | 3378 } |
3379 else if (EQ (keyword, QCforeground)) | |
3380 { | |
3381 if (STRINGP (value)) | |
3382 to[LFACE_FOREGROUND_INDEX] = value; | |
3383 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3384 add_to_log ("Invalid face foreground", value, Qnil); |
24995 | 3385 } |
3386 else if (EQ (keyword, QCbackground)) | |
3387 { | |
3388 if (STRINGP (value)) | |
3389 to[LFACE_BACKGROUND_INDEX] = value; | |
3390 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3391 add_to_log ("Invalid face background", value, Qnil); |
24995 | 3392 } |
3393 else if (EQ (keyword, QCstipple)) | |
3394 { | |
3395 #ifdef HAVE_X_WINDOWS | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3396 Lisp_Object pixmap_p = Fbitmap_spec_p (value); |
24995 | 3397 if (!NILP (pixmap_p)) |
3398 to[LFACE_STIPPLE_INDEX] = value; | |
3399 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3400 add_to_log ("Invalid face stipple", value, Qnil); |
24995 | 3401 #endif |
3402 } | |
3403 else if (EQ (keyword, QCwidth)) | |
3404 { | |
3405 if (SYMBOLP (value) | |
3406 && face_numeric_swidth (value) >= 0) | |
3407 to[LFACE_SWIDTH_INDEX] = value; | |
3408 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3409 add_to_log ("Invalid face width", value, Qnil); |
24995 | 3410 } |
31178 | 3411 else if (EQ (keyword, QCinherit)) |
3412 { | |
3413 if (SYMBOLP (value)) | |
3414 to[LFACE_INHERIT_INDEX] = value; | |
3415 else | |
3416 { | |
3417 Lisp_Object tail; | |
3418 for (tail = value; CONSP (tail); tail = XCDR (tail)) | |
3419 if (!SYMBOLP (XCAR (tail))) | |
3420 break; | |
3421 if (NILP (tail)) | |
3422 to[LFACE_INHERIT_INDEX] = value; | |
3423 else | |
3424 add_to_log ("Invalid face inherit", value, Qnil); | |
3425 } | |
3426 } | |
24995 | 3427 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3428 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
|
3429 keyword, Qnil); |
24995 | 3430 |
3431 prop = XCDR (XCDR (prop)); | |
3432 } | |
3433 } | |
3434 else | |
3435 { | |
3436 /* This is a list of face specs. Specifications at the | |
3437 beginning of the list take precedence over later | |
3438 specifications, so we have to merge starting with the | |
3439 last specification. */ | |
3440 Lisp_Object next = XCDR (prop); | |
3441 if (!NILP (next)) | |
3442 merge_face_vector_with_property (f, to, next); | |
3443 merge_face_vector_with_property (f, to, first); | |
3444 } | |
3445 } | |
3446 else | |
3447 { | |
3448 /* PROP ought to be a face name. */ | |
3449 Lisp_Object lface = lface_from_face_name (f, prop, 0); | |
3450 if (NILP (lface)) | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3451 add_to_log ("Invalid face text property value: %s", prop, Qnil); |
24995 | 3452 else |
31178 | 3453 merge_face_vectors (f, XVECTOR (lface)->contents, to, Qnil); |
24995 | 3454 } |
3455 } | |
3456 | |
3457 | |
3458 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face, | |
3459 Sinternal_make_lisp_face, 1, 2, 0, | |
3460 "Make FACE, a symbol, a Lisp face with all attributes nil.\n\ | |
3461 If FACE was not known as a face before, create a new one.\n\ | |
3462 If optional argument FRAME is specified, make a frame-local face\n\ | |
3463 for that frame. Otherwise operate on the global face definition.\n\ | |
3464 Value is a vector of face attributes.") | |
3465 (face, frame) | |
3466 Lisp_Object face, frame; | |
3467 { | |
3468 Lisp_Object global_lface, lface; | |
3469 struct frame *f; | |
3470 int i; | |
3471 | |
3472 CHECK_SYMBOL (face, 0); | |
3473 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
|
3474 |
24995 | 3475 if (!NILP (frame)) |
3476 { | |
3477 CHECK_LIVE_FRAME (frame, 1); | |
3478 f = XFRAME (frame); | |
3479 lface = lface_from_face_name (f, face, 0); | |
3480 } | |
3481 else | |
3482 f = NULL, lface = Qnil; | |
3483 | |
3484 /* Add a global definition if there is none. */ | |
3485 if (NILP (global_lface)) | |
3486 { | |
3487 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3488 Qunspecified); | |
3489 XVECTOR (global_lface)->contents[0] = Qface; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3490 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface), |
24995 | 3491 Vface_new_frame_defaults); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3492 |
24995 | 3493 /* Assign the new Lisp face a unique ID. The mapping from Lisp |
3494 face id to Lisp face is given by the vector lface_id_to_name. | |
3495 The mapping from Lisp face to Lisp face id is given by the | |
3496 property `face' of the Lisp face name. */ | |
3497 if (next_lface_id == lface_id_to_name_size) | |
3498 { | |
3499 int new_size = max (50, 2 * lface_id_to_name_size); | |
3500 int sz = new_size * sizeof *lface_id_to_name; | |
3501 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz); | |
3502 lface_id_to_name_size = new_size; | |
3503 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3504 |
24995 | 3505 lface_id_to_name[next_lface_id] = face; |
3506 Fput (face, Qface, make_number (next_lface_id)); | |
3507 ++next_lface_id; | |
3508 } | |
3509 else if (f == NULL) | |
3510 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3511 XVECTOR (global_lface)->contents[i] = Qunspecified; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3512 |
24995 | 3513 /* Add a frame-local definition. */ |
3514 if (f) | |
3515 { | |
3516 if (NILP (lface)) | |
3517 { | |
3518 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3519 Qunspecified); | |
3520 XVECTOR (lface)->contents[0] = Qface; | |
3521 f->face_alist = Fcons (Fcons (face, lface), f->face_alist); | |
3522 } | |
3523 else | |
3524 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3525 XVECTOR (lface)->contents[i] = Qunspecified; | |
3526 } | |
3527 else | |
3528 lface = global_lface; | |
3529 | |
3530 xassert (LFACEP (lface)); | |
3531 check_lface (lface); | |
3532 return lface; | |
3533 } | |
3534 | |
3535 | |
3536 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p, | |
3537 Sinternal_lisp_face_p, 1, 2, 0, | |
3538 "Return non-nil if FACE names a face.\n\ | |
3539 If optional second parameter FRAME is non-nil, check for the\n\ | |
3540 existence of a frame-local face with name FACE on that frame.\n\ | |
3541 Otherwise check for the existence of a global face.") | |
3542 (face, frame) | |
3543 Lisp_Object face, frame; | |
3544 { | |
3545 Lisp_Object lface; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3546 |
24995 | 3547 if (!NILP (frame)) |
3548 { | |
3549 CHECK_LIVE_FRAME (frame, 1); | |
3550 lface = lface_from_face_name (XFRAME (frame), face, 0); | |
3551 } | |
3552 else | |
3553 lface = lface_from_face_name (NULL, face, 0); | |
3554 | |
3555 return lface; | |
3556 } | |
3557 | |
3558 | |
3559 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face, | |
3560 Sinternal_copy_lisp_face, 4, 4, 0, | |
3561 "Copy face FROM to TO.\n\ | |
3562 If FRAME it t, copy the global face definition of FROM to the\n\ | |
3563 global face definition of TO. Otherwise, copy the frame-local\n\ | |
3564 definition of FROM on FRAME to the frame-local definition of TO\n\ | |
3565 on NEW-FRAME, or FRAME if NEW-FRAME is nil.\n\ | |
3566 \n\ | |
3567 Value is TO.") | |
3568 (from, to, frame, new_frame) | |
3569 Lisp_Object from, to, frame, new_frame; | |
3570 { | |
3571 Lisp_Object lface, copy; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3572 |
24995 | 3573 CHECK_SYMBOL (from, 0); |
3574 CHECK_SYMBOL (to, 1); | |
3575 if (NILP (new_frame)) | |
3576 new_frame = frame; | |
3577 | |
3578 if (EQ (frame, Qt)) | |
3579 { | |
3580 /* Copy global definition of FROM. We don't make copies of | |
3581 strings etc. because 20.2 didn't do it either. */ | |
3582 lface = lface_from_face_name (NULL, from, 1); | |
3583 copy = Finternal_make_lisp_face (to, Qnil); | |
3584 } | |
3585 else | |
3586 { | |
3587 /* Copy frame-local definition of FROM. */ | |
3588 CHECK_LIVE_FRAME (frame, 2); | |
3589 CHECK_LIVE_FRAME (new_frame, 3); | |
3590 lface = lface_from_face_name (XFRAME (frame), from, 1); | |
3591 copy = Finternal_make_lisp_face (to, new_frame); | |
3592 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3593 |
24995 | 3594 bcopy (XVECTOR (lface)->contents, XVECTOR (copy)->contents, |
3595 LFACE_VECTOR_SIZE * sizeof (Lisp_Object)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3596 |
24995 | 3597 return to; |
3598 } | |
3599 | |
3600 | |
3601 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute, | |
3602 Sinternal_set_lisp_face_attribute, 3, 4, 0, | |
3603 "Set attribute ATTR of FACE to VALUE.\n\ | |
31440
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3604 FRAME being a frame means change the face on that frame.\n\ |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3605 FRAME nil means change change the face of the selected frame.\n\ |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3606 FRAME t means change the default for new frames.\n\ |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3607 FRAME 0 means change the face on all frames, and change the default\n\ |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3608 for new frames.") |
24995 | 3609 (face, attr, value, frame) |
3610 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
|
3611 { |
24995 | 3612 Lisp_Object lface; |
3613 Lisp_Object old_value = Qnil; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3614 /* Set 1 if ATTR is QCfont. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3615 int font_attr_p = 0; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3616 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */ |
24995 | 3617 int font_related_attr_p = 0; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3618 |
24995 | 3619 CHECK_SYMBOL (face, 0); |
3620 CHECK_SYMBOL (attr, 1); | |
3621 | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3622 face = resolve_face_name (face); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3623 |
31440
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3624 /* If FRAME is 0, change face on all frames, and change the |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3625 default for new frames. */ |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3626 if (INTEGERP (frame) && XINT (frame) == 0) |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3627 { |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3628 Lisp_Object tail; |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
3629 Finternal_set_lisp_face_attribute (face, attr, value, Qt); |
31440
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3630 FOR_EACH_FRAME (tail, frame) |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3631 Finternal_set_lisp_face_attribute (face, attr, value, frame); |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
3632 return face; |
31440
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3633 } |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3634 |
24995 | 3635 /* Set lface to the Lisp attribute vector of FACE. */ |
3636 if (EQ (frame, Qt)) | |
3637 lface = lface_from_face_name (NULL, face, 1); | |
3638 else | |
3639 { | |
3640 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3641 frame = selected_frame; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3642 |
24995 | 3643 CHECK_LIVE_FRAME (frame, 3); |
3644 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
|
3645 |
24995 | 3646 /* If a frame-local face doesn't exist yet, create one. */ |
3647 if (NILP (lface)) | |
3648 lface = Finternal_make_lisp_face (face, frame); | |
3649 } | |
3650 | |
3651 if (EQ (attr, QCfamily)) | |
3652 { | |
3653 if (!UNSPECIFIEDP (value)) | |
3654 { | |
3655 CHECK_STRING (value, 3); | |
3656 if (XSTRING (value)->size == 0) | |
3657 signal_error ("Invalid face family", value); | |
3658 } | |
3659 old_value = LFACE_FAMILY (lface); | |
3660 LFACE_FAMILY (lface) = value; | |
3661 font_related_attr_p = 1; | |
3662 } | |
3663 else if (EQ (attr, QCheight)) | |
3664 { | |
3665 if (!UNSPECIFIEDP (value)) | |
3666 { | |
31519
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3667 Lisp_Object test = |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3668 (EQ (face, Qdefault) ? value : |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3669 /* The default face must have an absolute size, otherwise, we do |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3670 a test merge with a random height to see if VALUE's ok. */ |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3671 merge_face_heights (value, make_number(10), Qnil, Qnil)); |
31178 | 3672 |
3673 if (!INTEGERP(test) || XINT(test) <= 0) | |
24995 | 3674 signal_error ("Invalid face height", value); |
3675 } | |
31178 | 3676 |
24995 | 3677 old_value = LFACE_HEIGHT (lface); |
3678 LFACE_HEIGHT (lface) = value; | |
3679 font_related_attr_p = 1; | |
3680 } | |
3681 else if (EQ (attr, QCweight)) | |
3682 { | |
3683 if (!UNSPECIFIEDP (value)) | |
3684 { | |
3685 CHECK_SYMBOL (value, 3); | |
3686 if (face_numeric_weight (value) < 0) | |
3687 signal_error ("Invalid face weight", value); | |
3688 } | |
3689 old_value = LFACE_WEIGHT (lface); | |
3690 LFACE_WEIGHT (lface) = value; | |
3691 font_related_attr_p = 1; | |
3692 } | |
3693 else if (EQ (attr, QCslant)) | |
3694 { | |
3695 if (!UNSPECIFIEDP (value)) | |
3696 { | |
3697 CHECK_SYMBOL (value, 3); | |
3698 if (face_numeric_slant (value) < 0) | |
3699 signal_error ("Invalid face slant", value); | |
3700 } | |
3701 old_value = LFACE_SLANT (lface); | |
3702 LFACE_SLANT (lface) = value; | |
3703 font_related_attr_p = 1; | |
3704 } | |
3705 else if (EQ (attr, QCunderline)) | |
3706 { | |
3707 if (!UNSPECIFIEDP (value)) | |
3708 if ((SYMBOLP (value) | |
3709 && !EQ (value, Qt) | |
3710 && !EQ (value, Qnil)) | |
3711 /* Underline color. */ | |
3712 || (STRINGP (value) | |
3713 && XSTRING (value)->size == 0)) | |
3714 signal_error ("Invalid face underline", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3715 |
24995 | 3716 old_value = LFACE_UNDERLINE (lface); |
3717 LFACE_UNDERLINE (lface) = value; | |
3718 } | |
3719 else if (EQ (attr, QCoverline)) | |
3720 { | |
3721 if (!UNSPECIFIEDP (value)) | |
3722 if ((SYMBOLP (value) | |
3723 && !EQ (value, Qt) | |
3724 && !EQ (value, Qnil)) | |
3725 /* Overline color. */ | |
3726 || (STRINGP (value) | |
3727 && XSTRING (value)->size == 0)) | |
3728 signal_error ("Invalid face overline", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3729 |
24995 | 3730 old_value = LFACE_OVERLINE (lface); |
3731 LFACE_OVERLINE (lface) = value; | |
3732 } | |
3733 else if (EQ (attr, QCstrike_through)) | |
3734 { | |
3735 if (!UNSPECIFIEDP (value)) | |
3736 if ((SYMBOLP (value) | |
3737 && !EQ (value, Qt) | |
3738 && !EQ (value, Qnil)) | |
3739 /* Strike-through color. */ | |
3740 || (STRINGP (value) | |
3741 && XSTRING (value)->size == 0)) | |
3742 signal_error ("Invalid face strike-through", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3743 |
24995 | 3744 old_value = LFACE_STRIKE_THROUGH (lface); |
3745 LFACE_STRIKE_THROUGH (lface) = value; | |
3746 } | |
3747 else if (EQ (attr, QCbox)) | |
3748 { | |
3749 int valid_p; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3750 |
24995 | 3751 /* Allow t meaning a simple box of width 1 in foreground color |
3752 of the face. */ | |
3753 if (EQ (value, Qt)) | |
3754 value = make_number (1); | |
3755 | |
3756 if (UNSPECIFIEDP (value)) | |
3757 valid_p = 1; | |
3758 else if (NILP (value)) | |
3759 valid_p = 1; | |
3760 else if (INTEGERP (value)) | |
3761 valid_p = XINT (value) > 0; | |
3762 else if (STRINGP (value)) | |
3763 valid_p = XSTRING (value)->size > 0; | |
3764 else if (CONSP (value)) | |
3765 { | |
3766 Lisp_Object tem; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3767 |
24995 | 3768 tem = value; |
3769 while (CONSP (tem)) | |
3770 { | |
3771 Lisp_Object k, v; | |
3772 | |
3773 k = XCAR (tem); | |
3774 tem = XCDR (tem); | |
3775 if (!CONSP (tem)) | |
3776 break; | |
3777 v = XCAR (tem); | |
3778 tem = XCDR (tem); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3779 |
24995 | 3780 if (EQ (k, QCline_width)) |
3781 { | |
3782 if (!INTEGERP (v) || XINT (v) <= 0) | |
3783 break; | |
3784 } | |
3785 else if (EQ (k, QCcolor)) | |
3786 { | |
3787 if (!STRINGP (v) || XSTRING (v)->size == 0) | |
3788 break; | |
3789 } | |
3790 else if (EQ (k, QCstyle)) | |
3791 { | |
3792 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button)) | |
3793 break; | |
3794 } | |
3795 else | |
3796 break; | |
3797 } | |
3798 | |
3799 valid_p = NILP (tem); | |
3800 } | |
3801 else | |
3802 valid_p = 0; | |
3803 | |
3804 if (!valid_p) | |
3805 signal_error ("Invalid face box", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3806 |
24995 | 3807 old_value = LFACE_BOX (lface); |
3808 LFACE_BOX (lface) = value; | |
3809 } | |
3810 else if (EQ (attr, QCinverse_video) | |
3811 || EQ (attr, QCreverse_video)) | |
3812 { | |
3813 if (!UNSPECIFIEDP (value)) | |
3814 { | |
3815 CHECK_SYMBOL (value, 3); | |
3816 if (!EQ (value, Qt) && !NILP (value)) | |
3817 signal_error ("Invalid inverse-video face attribute value", value); | |
3818 } | |
3819 old_value = LFACE_INVERSE (lface); | |
3820 LFACE_INVERSE (lface) = value; | |
3821 } | |
3822 else if (EQ (attr, QCforeground)) | |
3823 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3824 if (!UNSPECIFIEDP (value)) |
24995 | 3825 { |
3826 /* Don't check for valid color names here because it depends | |
3827 on the frame (display) whether the color will be valid | |
3828 when the face is realized. */ | |
3829 CHECK_STRING (value, 3); | |
3830 if (XSTRING (value)->size == 0) | |
3831 signal_error ("Empty foreground color value", value); | |
3832 } | |
3833 old_value = LFACE_FOREGROUND (lface); | |
3834 LFACE_FOREGROUND (lface) = value; | |
3835 } | |
3836 else if (EQ (attr, QCbackground)) | |
3837 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3838 if (!UNSPECIFIEDP (value)) |
24995 | 3839 { |
3840 /* Don't check for valid color names here because it depends | |
3841 on the frame (display) whether the color will be valid | |
3842 when the face is realized. */ | |
3843 CHECK_STRING (value, 3); | |
3844 if (XSTRING (value)->size == 0) | |
3845 signal_error ("Empty background color value", value); | |
3846 } | |
3847 old_value = LFACE_BACKGROUND (lface); | |
3848 LFACE_BACKGROUND (lface) = value; | |
3849 } | |
3850 else if (EQ (attr, QCstipple)) | |
3851 { | |
3852 #ifdef HAVE_X_WINDOWS | |
3853 if (!UNSPECIFIEDP (value) | |
3854 && !NILP (value) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3855 && NILP (Fbitmap_spec_p (value))) |
24995 | 3856 signal_error ("Invalid stipple attribute", value); |
3857 old_value = LFACE_STIPPLE (lface); | |
3858 LFACE_STIPPLE (lface) = value; | |
3859 #endif /* HAVE_X_WINDOWS */ | |
3860 } | |
3861 else if (EQ (attr, QCwidth)) | |
3862 { | |
3863 if (!UNSPECIFIEDP (value)) | |
3864 { | |
3865 CHECK_SYMBOL (value, 3); | |
3866 if (face_numeric_swidth (value) < 0) | |
3867 signal_error ("Invalid face width", value); | |
3868 } | |
3869 old_value = LFACE_SWIDTH (lface); | |
3870 LFACE_SWIDTH (lface) = value; | |
3871 font_related_attr_p = 1; | |
3872 } | |
3873 else if (EQ (attr, QCfont)) | |
3874 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3875 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3876 /* Set font-related attributes of the Lisp face from an |
3877 XLFD font name. */ | |
3878 struct frame *f; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3879 Lisp_Object tmp; |
24995 | 3880 |
3881 CHECK_STRING (value, 3); | |
3882 if (EQ (frame, Qt)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3883 f = SELECTED_FRAME (); |
24995 | 3884 else |
3885 f = check_x_frame (frame); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3886 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3887 /* 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
|
3888 a case, use the base fontset name. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3889 tmp = Fquery_fontset (value, Qnil); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3890 if (!NILP (tmp)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3891 value = tmp; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3892 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3893 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
|
3894 signal_error ("Invalid font or fontset name", value); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3895 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3896 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
|
3897 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3898 } |
31178 | 3899 else if (EQ (attr, QCinherit)) |
3900 { | |
3901 Lisp_Object tail; | |
3902 if (SYMBOLP (value)) | |
3903 tail = Qnil; | |
3904 else | |
3905 for (tail = value; CONSP (tail); tail = XCDR (tail)) | |
3906 if (!SYMBOLP (XCAR (tail))) | |
3907 break; | |
3908 if (NILP (tail)) | |
3909 LFACE_INHERIT (lface) = value; | |
3910 else | |
31202
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
3911 signal_error ("Invalid face inheritance", value); |
31178 | 3912 } |
24995 | 3913 else if (EQ (attr, QCbold)) |
3914 { | |
3915 old_value = LFACE_WEIGHT (lface); | |
3916 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold; | |
3917 font_related_attr_p = 1; | |
3918 } | |
3919 else if (EQ (attr, QCitalic)) | |
3920 { | |
3921 old_value = LFACE_SLANT (lface); | |
3922 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic; | |
3923 font_related_attr_p = 1; | |
3924 } | |
3925 else | |
3926 signal_error ("Invalid face attribute name", attr); | |
3927 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3928 if (font_related_attr_p |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3929 && !UNSPECIFIEDP (value)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3930 /* 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
|
3931 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
|
3932 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
|
3933 selection mechanism doesn't use it. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3934 LFACE_FONT (lface) = Qnil; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3935 |
24995 | 3936 /* Changing a named face means that all realized faces depending on |
3937 that face are invalid. Since we cannot tell which realized faces | |
3938 depend on the face, make sure they are all removed. This is done | |
3939 by incrementing face_change_count. The next call to | |
3940 init_iterator will then free realized faces. */ | |
3941 if (!EQ (frame, Qt) | |
3942 && (EQ (attr, QCfont) | |
3943 || NILP (Fequal (old_value, value)))) | |
3944 { | |
3945 ++face_change_count; | |
3946 ++windows_or_buffers_changed; | |
3947 } | |
3948 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3949 #ifdef HAVE_WINDOW_SYSTEM |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3950 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3951 if (!EQ (frame, Qt) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3952 && !UNSPECIFIEDP (value) |
24995 | 3953 && NILP (Fequal (old_value, value))) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3954 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3955 Lisp_Object param; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3956 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3957 param = Qnil; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3958 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3959 if (EQ (face, Qdefault)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3960 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3961 /* 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
|
3962 reflected in changed `font' frame parameters. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3963 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
|
3964 && lface_fully_specified_p (XVECTOR (lface)->contents)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3965 set_font_frame_param (frame, lface); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3966 else if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3967 param = Qforeground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3968 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3969 param = Qbackground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3970 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3971 #ifndef WINDOWSNT |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3972 else if (EQ (face, Qscroll_bar)) |
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 /* 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
|
3975 `scroll-bar-foreground' and `scroll-bar-background'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3976 if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3977 param = Qscroll_bar_foreground; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3978 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3979 param = Qscroll_bar_background; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3980 } |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
3981 #endif /* not WINDOWSNT */ |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3982 else if (EQ (face, Qborder)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3983 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3984 /* Changing background color of `border' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3985 `border-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3986 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3987 param = Qborder_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3988 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3989 else if (EQ (face, Qcursor)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3990 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3991 /* Changing background color of `cursor' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3992 `cursor-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3993 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3994 param = Qcursor_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3995 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3996 else if (EQ (face, Qmouse)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3997 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3998 /* Changing background color of `mouse' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3999 `mouse-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4000 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4001 param = Qmouse_color; |
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 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4004 if (!NILP (param)) |
31449
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4005 { |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4006 Lisp_Object cons; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4007 cons = XCAR (Vparam_value_alist); |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4008 XCAR (cons) = param; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4009 XCDR (cons) = value; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4010 Fmodify_frame_parameters (frame, Vparam_value_alist); |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4011 } |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4012 } |
24995 | 4013 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4014 #endif /* HAVE_WINDOW_SYSTEM */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4015 |
24995 | 4016 return face; |
4017 } | |
4018 | |
4019 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4020 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4021 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4022 /* 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
|
4023 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
|
4024 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
|
4025 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
|
4026 there's no matching font, signals an error. */ |
24995 | 4027 |
4028 static void | |
4029 set_font_frame_param (frame, lface) | |
4030 Lisp_Object frame, lface; | |
4031 { | |
4032 struct frame *f = XFRAME (frame); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4033 Lisp_Object font_name; |
24995 | 4034 char *font; |
4035 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4036 if (STRINGP (LFACE_FONT (lface))) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4037 font_name = LFACE_FONT (lface); |
24995 | 4038 else |
4039 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4040 /* 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
|
4041 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
|
4042 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
|
4043 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
|
4044 if (!font) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4045 error ("No font matches the specified attribute"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4046 font_name = build_string (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4047 xfree (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4048 } |
31292
b176433657cc
(set_font_frame_param): Use Fmodify_frame_parameters
Gerd Moellmann <gerd@gnu.org>
parents:
31259
diff
changeset
|
4049 |
b176433657cc
(set_font_frame_param): Use Fmodify_frame_parameters
Gerd Moellmann <gerd@gnu.org>
parents:
31259
diff
changeset
|
4050 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font_name), Qnil)); |
24995 | 4051 } |
4052 | |
4053 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4054 /* 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
|
4055 has been assigned the value NEW_VALUE. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4056 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4057 void |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4058 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
|
4059 struct frame *f; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4060 Lisp_Object param, new_value; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4061 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4062 Lisp_Object lface; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4063 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4064 /* 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
|
4065 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
|
4066 face-set-after-frame-defaults. */ |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4067 if (NILP (f->face_alist)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4068 return; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4069 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4070 if (EQ (param, Qforeground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4071 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4072 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4073 LFACE_FOREGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4074 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4075 realize_basic_faces (f); |
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 else if (EQ (param, Qbackground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4078 { |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4079 Lisp_Object frame; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4080 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4081 /* 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
|
4082 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
|
4083 frame-update-face-colors to do that. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4084 XSETFRAME (frame, f); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4085 call1 (Qframe_update_face_colors, frame); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4086 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4087 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4088 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4089 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4090 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4091 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4092 if (EQ (param, Qborder_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4093 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4094 lface = lface_from_face_name (f, Qborder, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4095 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4096 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4097 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4098 else if (EQ (param, Qcursor_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4099 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4100 lface = lface_from_face_name (f, Qcursor, 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 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4104 else if (EQ (param, Qmouse_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4105 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4106 lface = lface_from_face_name (f, Qmouse, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4107 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4108 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4109 } |
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 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4112 |
24995 | 4113 /* Get the value of X resource RESOURCE, class CLASS for the display |
4114 of frame FRAME. This is here because ordinary `x-get-resource' | |
4115 doesn't take a frame argument. */ | |
4116 | |
4117 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource, | |
4118 Sinternal_face_x_get_resource, 3, 3, 0, "") | |
4119 (resource, class, frame) | |
4120 Lisp_Object resource, class, frame; | |
4121 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4122 Lisp_Object value = Qnil; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4123 #ifndef WINDOWSNT |
24995 | 4124 CHECK_STRING (resource, 0); |
4125 CHECK_STRING (class, 1); | |
4126 CHECK_LIVE_FRAME (frame, 2); | |
4127 BLOCK_INPUT; | |
4128 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)), | |
4129 resource, class, Qnil, Qnil); | |
4130 UNBLOCK_INPUT; | |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
4131 #endif /* not WINDOWSNT */ |
24995 | 4132 return value; |
4133 } | |
4134 | |
4135 | |
4136 /* Return resource string VALUE as a boolean value, i.e. nil, or t. | |
4137 If VALUE is "on" or "true", return t. If VALUE is "off" or | |
4138 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an | |
4139 error; if SIGNAL_P is zero, return 0. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4140 |
24995 | 4141 static Lisp_Object |
4142 face_boolean_x_resource_value (value, signal_p) | |
4143 Lisp_Object value; | |
4144 int signal_p; | |
4145 { | |
4146 Lisp_Object result = make_number (0); | |
4147 | |
4148 xassert (STRINGP (value)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4149 |
24995 | 4150 if (xstricmp (XSTRING (value)->data, "on") == 0 |
4151 || xstricmp (XSTRING (value)->data, "true") == 0) | |
4152 result = Qt; | |
4153 else if (xstricmp (XSTRING (value)->data, "off") == 0 | |
4154 || xstricmp (XSTRING (value)->data, "false") == 0) | |
4155 result = Qnil; | |
4156 else if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
4157 result = Qunspecified; | |
4158 else if (signal_p) | |
4159 signal_error ("Invalid face attribute value from X resource", value); | |
4160 | |
4161 return result; | |
4162 } | |
4163 | |
4164 | |
4165 DEFUN ("internal-set-lisp-face-attribute-from-resource", | |
4166 Finternal_set_lisp_face_attribute_from_resource, | |
4167 Sinternal_set_lisp_face_attribute_from_resource, | |
4168 3, 4, 0, "") | |
4169 (face, attr, value, frame) | |
4170 Lisp_Object face, attr, value, frame; | |
4171 { | |
4172 CHECK_SYMBOL (face, 0); | |
4173 CHECK_SYMBOL (attr, 1); | |
4174 CHECK_STRING (value, 2); | |
4175 | |
4176 if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
4177 value = Qunspecified; | |
4178 else if (EQ (attr, QCheight)) | |
4179 { | |
4180 value = Fstring_to_number (value, make_number (10)); | |
4181 if (XINT (value) <= 0) | |
4182 signal_error ("Invalid face height from X resource", value); | |
4183 } | |
4184 else if (EQ (attr, QCbold) || EQ (attr, QCitalic)) | |
4185 value = face_boolean_x_resource_value (value, 1); | |
4186 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth)) | |
4187 value = intern (XSTRING (value)->data); | |
4188 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video)) | |
4189 value = face_boolean_x_resource_value (value, 1); | |
4190 else if (EQ (attr, QCunderline) | |
4191 || EQ (attr, QCoverline) | |
4192 || EQ (attr, QCstrike_through) | |
4193 || EQ (attr, QCbox)) | |
4194 { | |
4195 Lisp_Object boolean_value; | |
4196 | |
4197 /* If the result of face_boolean_x_resource_value is t or nil, | |
4198 VALUE does NOT specify a color. */ | |
4199 boolean_value = face_boolean_x_resource_value (value, 0); | |
4200 if (SYMBOLP (boolean_value)) | |
4201 value = boolean_value; | |
4202 } | |
4203 | |
4204 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
|
4205 } |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4206 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4207 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4208 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4209 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4210 #ifdef HAVE_X_WINDOWS |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4211 /*********************************************************************** |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4212 Menu face |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4213 ***********************************************************************/ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4214 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4215 #ifdef USE_X_TOOLKIT |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4216 |
29897
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
4217 #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
|
4218 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4219 /* 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
|
4220 XtApplyToWidgets. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4221 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4222 struct x_resources |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4223 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4224 Arg *av; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4225 int ac; |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4229 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4230 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4231 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
|
4232 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
|
4233 |
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 /* 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
|
4236 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
|
4237 submenu. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4238 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4239 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4240 xm_apply_resources (w, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4241 Widget w; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4242 XtPointer p; |
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 Widget submenu = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4245 struct x_resources *res = (struct x_resources *) p; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4246 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4247 XtSetValues (w, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4248 XtVaGetValues (w, XmNsubMenuId, &submenu, NULL); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4249 if (submenu) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4250 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4251 XtSetValues (submenu, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4252 XtApplyToWidgets (submenu, xm_apply_resources, p); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4253 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4254 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4255 |
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 /* 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
|
4258 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
|
4259 following problems: |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4260 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4261 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
|
4262 somewhere in LessTif. */ |
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 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4265 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
|
4266 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4267 Widget widget; |
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 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4270 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4271 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4272 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4273 XmFontList fl = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4274 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4275 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
|
4276 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
|
4277 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4278 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4279 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4280 XtSetArg (av[ac], XmNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4281 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4282 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4283 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4284 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4285 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4286 XtSetArg (av[ac], XmNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4287 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4288 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4289 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4290 /* 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
|
4291 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4292 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4293 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4294 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4295 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4296 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4297 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4298 #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
|
4299 in LessTif during geometry computation. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4300 XmFontListEntry fe; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4301 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
|
4302 fl = XmFontListAppendEntry (NULL, fe); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4303 XtSetArg (av[ac], XmNfontList, fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4304 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4305 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4306 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4307 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4308 xassert (ac <= sizeof av / sizeof *av); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4309 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4310 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4311 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4312 struct x_resources res; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4313 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4314 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4315 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4316 XtApplyToWidgets (widget, xm_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4317 if (fl) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4318 XmFontListFree (fl); |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4322 #endif /* USE_MOTIF */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4323 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4324 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4325 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4326 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
|
4327 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
|
4328 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4329 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4330 /* 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
|
4331 structure. */ |
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 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4334 xl_apply_resources (widget, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4335 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4336 XtPointer p; |
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 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
|
4339 XtSetValues (widget, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4340 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4341 |
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 /* 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
|
4344 This is the Lucid version. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4345 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4346 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4347 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
|
4348 struct frame *f; |
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 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4351 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4352 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4353 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4354 int ac = 0; |
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 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
|
4357 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
|
4358 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4359 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4360 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4361 XtSetArg (av[ac], XtNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4362 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4363 } |
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 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4366 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4367 XtSetArg (av[ac], XtNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4368 ++ac; |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4371 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4372 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4373 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4374 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4375 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4376 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
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 XtSetArg (av[ac], XtNfont, face->font); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4379 ++ac; |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4382 if (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 struct x_resources res; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4385 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4386 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4387 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4388 /* 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
|
4389 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
|
4390 is a function from lwlib. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4391 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4392 XtApplyToWidgets (widget, xl_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4393 } |
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 #endif /* USE_LUCID */ |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4399 /* 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
|
4400 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4401 void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4402 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
|
4403 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4404 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4405 { |
26759
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4406 /* 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
|
4407 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
|
4408 will need the `menu' face. */ |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4409 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
|
4410 recompute_basic_faces (f); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4411 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4412 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4413 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
|
4414 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4415 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4416 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
|
4417 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4418 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4419 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4420 #endif /* USE_X_TOOLKIT */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4421 |
24995 | 4422 #endif /* HAVE_X_WINDOWS */ |
4423 | |
4424 | |
4425 | |
4426 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute, | |
4427 Sinternal_get_lisp_face_attribute, | |
4428 2, 3, 0, | |
4429 "Return face attribute KEYWORD of face SYMBOL.\n\ | |
4430 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid\n\ | |
4431 face attribute name, signal an error.\n\ | |
4432 If the optional argument FRAME is given, report on face FACE in that\n\ | |
4433 frame. If FRAME is t, report on the defaults for face FACE (for new\n\ | |
4434 frames). If FRAME is omitted or nil, use the selected frame.") | |
4435 (symbol, keyword, frame) | |
4436 Lisp_Object symbol, keyword, frame; | |
4437 { | |
4438 Lisp_Object lface, value = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4439 |
24995 | 4440 CHECK_SYMBOL (symbol, 0); |
4441 CHECK_SYMBOL (keyword, 1); | |
4442 | |
4443 if (EQ (frame, Qt)) | |
4444 lface = lface_from_face_name (NULL, symbol, 1); | |
4445 else | |
4446 { | |
4447 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4448 frame = selected_frame; |
24995 | 4449 CHECK_LIVE_FRAME (frame, 2); |
4450 lface = lface_from_face_name (XFRAME (frame), symbol, 1); | |
4451 } | |
4452 | |
4453 if (EQ (keyword, QCfamily)) | |
4454 value = LFACE_FAMILY (lface); | |
4455 else if (EQ (keyword, QCheight)) | |
4456 value = LFACE_HEIGHT (lface); | |
4457 else if (EQ (keyword, QCweight)) | |
4458 value = LFACE_WEIGHT (lface); | |
4459 else if (EQ (keyword, QCslant)) | |
4460 value = LFACE_SLANT (lface); | |
4461 else if (EQ (keyword, QCunderline)) | |
4462 value = LFACE_UNDERLINE (lface); | |
4463 else if (EQ (keyword, QCoverline)) | |
4464 value = LFACE_OVERLINE (lface); | |
4465 else if (EQ (keyword, QCstrike_through)) | |
4466 value = LFACE_STRIKE_THROUGH (lface); | |
4467 else if (EQ (keyword, QCbox)) | |
4468 value = LFACE_BOX (lface); | |
4469 else if (EQ (keyword, QCinverse_video) | |
4470 || EQ (keyword, QCreverse_video)) | |
4471 value = LFACE_INVERSE (lface); | |
4472 else if (EQ (keyword, QCforeground)) | |
4473 value = LFACE_FOREGROUND (lface); | |
4474 else if (EQ (keyword, QCbackground)) | |
4475 value = LFACE_BACKGROUND (lface); | |
4476 else if (EQ (keyword, QCstipple)) | |
4477 value = LFACE_STIPPLE (lface); | |
4478 else if (EQ (keyword, QCwidth)) | |
4479 value = LFACE_SWIDTH (lface); | |
31178 | 4480 else if (EQ (keyword, QCinherit)) |
4481 value = LFACE_INHERIT (lface); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4482 else if (EQ (keyword, QCfont)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4483 value = LFACE_FONT (lface); |
24995 | 4484 else |
4485 signal_error ("Invalid face attribute name", keyword); | |
4486 | |
4487 return value; | |
4488 } | |
4489 | |
4490 | |
4491 DEFUN ("internal-lisp-face-attribute-values", | |
4492 Finternal_lisp_face_attribute_values, | |
4493 Sinternal_lisp_face_attribute_values, 1, 1, 0, | |
4494 "Return a list of valid discrete values for face attribute ATTR.\n\ | |
4495 Value is nil if ATTR doesn't have a discrete set of valid values.") | |
4496 (attr) | |
4497 Lisp_Object attr; | |
4498 { | |
4499 Lisp_Object result = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4500 |
24995 | 4501 CHECK_SYMBOL (attr, 0); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4502 |
24995 | 4503 if (EQ (attr, QCweight) |
4504 || EQ (attr, QCslant) | |
4505 || EQ (attr, QCwidth)) | |
4506 { | |
4507 /* Extract permissible symbols from tables. */ | |
4508 struct table_entry *table; | |
4509 int i, dim; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4510 |
24995 | 4511 if (EQ (attr, QCweight)) |
4512 table = weight_table, dim = DIM (weight_table); | |
4513 else if (EQ (attr, QCslant)) | |
4514 table = slant_table, dim = DIM (slant_table); | |
4515 else | |
4516 table = swidth_table, dim = DIM (swidth_table); | |
4517 | |
4518 for (i = 0; i < dim; ++i) | |
4519 { | |
4520 Lisp_Object symbol = *table[i].symbol; | |
4521 Lisp_Object tail = result; | |
4522 | |
4523 while (!NILP (tail) | |
4524 && !EQ (XCAR (tail), symbol)) | |
4525 tail = XCDR (tail); | |
4526 | |
4527 if (NILP (tail)) | |
4528 result = Fcons (symbol, result); | |
4529 } | |
4530 } | |
4531 else if (EQ (attr, QCunderline)) | |
4532 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4533 else if (EQ (attr, QCoverline)) | |
4534 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4535 else if (EQ (attr, QCstrike_through)) | |
4536 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4537 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video)) | |
4538 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4539 | |
4540 return result; | |
4541 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4542 |
24995 | 4543 |
4544 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
|
4545 Sinternal_merge_in_global_face, 2, 2, 0, |
31518
1594b23da757
(internal-merge-in-global-face): Fix newline in doc string.
Dave Love <fx@gnu.org>
parents:
31507
diff
changeset
|
4546 "Add attributes from frame-default definition of FACE to FACE on FRAME.\n\ |
31483
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4547 Default face attributes override any local face attributes.") |
24995 | 4548 (face, frame) |
4549 Lisp_Object face, frame; | |
4550 { | |
31483
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4551 int i; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4552 Lisp_Object global_lface, local_lface, *gvec, *lvec; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4553 |
24995 | 4554 CHECK_LIVE_FRAME (frame, 1); |
4555 global_lface = lface_from_face_name (NULL, face, 1); | |
4556 local_lface = lface_from_face_name (XFRAME (frame), face, 0); | |
4557 if (NILP (local_lface)) | |
4558 local_lface = Finternal_make_lisp_face (face, frame); | |
31483
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4559 |
31519
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
4560 /* Make every specified global attribute override the local one. |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
4561 BEWARE!! This is only used from `face-set-after-frame-default' where |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
4562 the local frame is defined from default specs in `face-defface-spec' |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
4563 and those should be overridden by global settings. Hence the strange |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
4564 "global before local" priority. */ |
31483
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4565 lvec = XVECTOR (local_lface)->contents; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4566 gvec = XVECTOR (global_lface)->contents; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4567 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4568 if (! UNSPECIFIEDP (gvec[i])) |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4569 lvec[i] = gvec[i]; |
31507
ac6d049932e9
(Finternal_merge_in_global_face): Return a Lisp object.
Gerd Moellmann <gerd@gnu.org>
parents:
31483
diff
changeset
|
4570 |
ac6d049932e9
(Finternal_merge_in_global_face): Return a Lisp object.
Gerd Moellmann <gerd@gnu.org>
parents:
31483
diff
changeset
|
4571 return Qnil; |
24995 | 4572 } |
4573 | |
4574 | |
4575 /* The following function is implemented for compatibility with 20.2. | |
4576 The function is used in x-resolve-fonts when it is asked to | |
4577 return fonts with the same size as the font of a face. This is | |
4578 done in fontset.el. */ | |
4579 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4580 DEFUN ("face-font", Fface_font, Sface_font, 1, 2, 0, |
24995 | 4581 "Return the font name of face FACE, or nil if it is unspecified.\n\ |
4582 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4583 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4584 The font default for a face is either nil, or a list\n\ | |
4585 of the form (bold), (italic) or (bold italic).\n\ | |
4586 If FRAME is omitted or nil, use the selected frame.") | |
4587 (face, frame) | |
4588 Lisp_Object face, frame; | |
4589 { | |
4590 if (EQ (frame, Qt)) | |
4591 { | |
4592 Lisp_Object result = Qnil; | |
4593 Lisp_Object lface = lface_from_face_name (NULL, face, 1); | |
4594 | |
4595 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface)) | |
4596 && !EQ (LFACE_WEIGHT (lface), Qnormal)) | |
4597 result = Fcons (Qbold, result); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4598 |
24995 | 4599 if (!NILP (LFACE_SLANT (lface)) |
4600 && !EQ (LFACE_SLANT (lface), Qnormal)) | |
4601 result = Fcons (Qitalic, result); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4602 |
24995 | 4603 return result; |
4604 } | |
4605 else | |
4606 { | |
4607 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
|
4608 int face_id = lookup_named_face (f, face, 0); |
24995 | 4609 struct face *face = FACE_FROM_ID (f, face_id); |
4610 return build_string (face->font_name); | |
4611 } | |
4612 } | |
4613 | |
4614 | |
4615 /* Compare face vectors V1 and V2 for equality. Value is non-zero if | |
4616 all attributes are `equal'. Tries to be fast because this function | |
4617 is called quite often. */ | |
4618 | |
4619 static INLINE int | |
4620 lface_equal_p (v1, v2) | |
4621 Lisp_Object *v1, *v2; | |
4622 { | |
4623 int i, equal_p = 1; | |
4624 | |
4625 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i) | |
4626 { | |
4627 Lisp_Object a = v1[i]; | |
4628 Lisp_Object b = v2[i]; | |
4629 | |
4630 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil, | |
4631 and the other is specified. */ | |
4632 equal_p = XTYPE (a) == XTYPE (b); | |
4633 if (!equal_p) | |
4634 break; | |
4635 | |
4636 if (!EQ (a, b)) | |
4637 { | |
4638 switch (XTYPE (a)) | |
4639 { | |
4640 case Lisp_String: | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4641 equal_p = ((STRING_BYTES (XSTRING (a)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4642 == STRING_BYTES (XSTRING (b))) |
24995 | 4643 && bcmp (XSTRING (a)->data, XSTRING (b)->data, |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4644 STRING_BYTES (XSTRING (a))) == 0); |
24995 | 4645 break; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4646 |
24995 | 4647 case Lisp_Int: |
4648 case Lisp_Symbol: | |
4649 equal_p = 0; | |
4650 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4651 |
24995 | 4652 default: |
4653 equal_p = !NILP (Fequal (a, b)); | |
4654 break; | |
4655 } | |
4656 } | |
4657 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4658 |
24995 | 4659 return equal_p; |
4660 } | |
4661 | |
4662 | |
4663 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p, | |
4664 Sinternal_lisp_face_equal_p, 2, 3, 0, | |
4665 "True if FACE1 and FACE2 are equal.\n\ | |
4666 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4667 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4668 If FRAME is omitted or nil, use the selected frame.") | |
4669 (face1, face2, frame) | |
4670 Lisp_Object face1, face2, frame; | |
4671 { | |
4672 int equal_p; | |
4673 struct frame *f; | |
4674 Lisp_Object lface1, lface2; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4675 |
24995 | 4676 if (EQ (frame, Qt)) |
4677 f = NULL; | |
4678 else | |
4679 /* Don't use check_x_frame here because this function is called | |
4680 before X frames exist. At that time, if FRAME is nil, | |
4681 selected_frame will be used which is the frame dumped with | |
4682 Emacs. That frame is not an X frame. */ | |
4683 f = frame_or_selected_frame (frame, 2); | |
4684 | |
4685 lface1 = lface_from_face_name (NULL, face1, 1); | |
4686 lface2 = lface_from_face_name (NULL, face2, 1); | |
4687 equal_p = lface_equal_p (XVECTOR (lface1)->contents, | |
4688 XVECTOR (lface2)->contents); | |
4689 return equal_p ? Qt : Qnil; | |
4690 } | |
4691 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4692 |
24995 | 4693 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p, |
4694 Sinternal_lisp_face_empty_p, 1, 2, 0, | |
4695 "True if FACE has no attribute specified.\n\ | |
4696 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4697 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4698 If FRAME is omitted or nil, use the selected frame.") | |
4699 (face, frame) | |
4700 Lisp_Object face, frame; | |
4701 { | |
4702 struct frame *f; | |
4703 Lisp_Object lface; | |
4704 int i; | |
4705 | |
4706 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4707 frame = selected_frame; |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4708 CHECK_LIVE_FRAME (frame, 0); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4709 f = XFRAME (frame); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4710 |
24995 | 4711 if (EQ (frame, Qt)) |
4712 lface = lface_from_face_name (NULL, face, 1); | |
4713 else | |
4714 lface = lface_from_face_name (f, face, 1); | |
4715 | |
4716 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
4717 if (!UNSPECIFIEDP (XVECTOR (lface)->contents[i])) | |
4718 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4719 |
24995 | 4720 return i == LFACE_VECTOR_SIZE ? Qt : Qnil; |
4721 } | |
4722 | |
4723 | |
4724 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
|
4725 0, 1, 0, |
24995 | 4726 "Return an alist of frame-local faces defined on FRAME.\n\ |
4727 For internal use only.") | |
4728 (frame) | |
4729 Lisp_Object frame; | |
4730 { | |
4731 struct frame *f = frame_or_selected_frame (frame, 0); | |
4732 return f->face_alist; | |
4733 } | |
4734 | |
4735 | |
4736 /* Return a hash code for Lisp string STRING with case ignored. Used | |
4737 below in computing a hash value for a Lisp face. */ | |
4738 | |
4739 static INLINE unsigned | |
4740 hash_string_case_insensitive (string) | |
4741 Lisp_Object string; | |
4742 { | |
4743 unsigned char *s; | |
4744 unsigned hash = 0; | |
4745 xassert (STRINGP (string)); | |
4746 for (s = XSTRING (string)->data; *s; ++s) | |
4747 hash = (hash << 1) ^ tolower (*s); | |
4748 return hash; | |
4749 } | |
4750 | |
4751 | |
4752 /* Return a hash code for face attribute vector V. */ | |
4753 | |
4754 static INLINE unsigned | |
4755 lface_hash (v) | |
4756 Lisp_Object *v; | |
4757 { | |
4758 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX]) | |
4759 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX]) | |
4760 ^ 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
|
4761 ^ 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
|
4762 ^ 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
|
4763 ^ XFASTINT (v[LFACE_SWIDTH_INDEX]) |
24995 | 4764 ^ XFASTINT (v[LFACE_HEIGHT_INDEX])); |
4765 } | |
4766 | |
4767 | |
4768 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without | |
4769 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
|
4770 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
|
4771 and LFACE2 must be fully-specified. */ |
24995 | 4772 |
4773 static INLINE int | |
4774 lface_same_font_attributes_p (lface1, lface2) | |
4775 Lisp_Object *lface1, *lface2; | |
4776 { | |
4777 xassert (lface_fully_specified_p (lface1) | |
4778 && lface_fully_specified_p (lface2)); | |
4779 return (xstricmp (XSTRING (lface1[LFACE_FAMILY_INDEX])->data, | |
4780 XSTRING (lface2[LFACE_FAMILY_INDEX])->data) == 0 | |
31178 | 4781 && EQ (lface1[LFACE_HEIGHT_INDEX], lface2[LFACE_HEIGHT_INDEX]) |
24995 | 4782 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX]) |
4783 && 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
|
4784 && 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
|
4785 && (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
|
4786 || (STRINGP (lface1[LFACE_FONT_INDEX]) |
28263
73181b84ea57
(lface_same_font_attributes_p): Compare font attributes
Gerd Moellmann <gerd@gnu.org>
parents:
28237
diff
changeset
|
4787 && STRINGP (lface2[LFACE_FONT_INDEX]) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4788 && xstricmp (XSTRING (lface1[LFACE_FONT_INDEX])->data, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4789 XSTRING (lface2[LFACE_FONT_INDEX])->data)))); |
24995 | 4790 } |
4791 | |
4792 | |
4793 | |
4794 /*********************************************************************** | |
4795 Realized Faces | |
4796 ***********************************************************************/ | |
4797 | |
4798 /* 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
|
4799 vector ATTR. */ |
24995 | 4800 |
4801 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4802 make_realized_face (attr) |
24995 | 4803 Lisp_Object *attr; |
4804 { | |
4805 struct face *face = (struct face *) xmalloc (sizeof *face); | |
4806 bzero (face, sizeof *face); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4807 face->ascii_face = face; |
24995 | 4808 bcopy (attr, face->lface, sizeof face->lface); |
4809 return face; | |
4810 } | |
4811 | |
4812 | |
4813 /* Free realized face FACE, including its X resources. FACE may | |
4814 be null. */ | |
4815 | |
4816 static void | |
4817 free_realized_face (f, face) | |
4818 struct frame *f; | |
4819 struct face *face; | |
4820 { | |
4821 if (face) | |
4822 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4823 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4824 if (FRAME_WINDOW_P (f)) |
24995 | 4825 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4826 /* 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
|
4827 if (face->fontset >= 0 && face == face->ascii_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4828 free_face_fontset (f, face); |
24995 | 4829 if (face->gc) |
4830 { | |
4831 x_free_gc (f, face->gc); | |
4832 face->gc = 0; | |
4833 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4834 |
24995 | 4835 free_face_colors (f, face); |
4836 x_destroy_bitmap (f, face->stipple); | |
4837 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4838 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4839 |
4840 xfree (face); | |
4841 } | |
4842 } | |
4843 | |
4844 | |
4845 /* Prepare face FACE for subsequent display on frame F. This | |
4846 allocated GCs if they haven't been allocated yet or have been freed | |
4847 by clearing the face cache. */ | |
4848 | |
4849 void | |
4850 prepare_face_for_display (f, face) | |
4851 struct frame *f; | |
4852 struct face *face; | |
4853 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4854 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4855 xassert (FRAME_WINDOW_P (f)); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4856 |
24995 | 4857 if (face->gc == 0) |
4858 { | |
4859 XGCValues xgcv; | |
4860 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures; | |
4861 | |
4862 xgcv.foreground = face->foreground; | |
4863 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
|
4864 #ifdef HAVE_X_WINDOWS |
24995 | 4865 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
|
4866 #endif |
24995 | 4867 /* The font of FACE may be null if we couldn't load it. */ |
4868 if (face->font) | |
4869 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4870 #ifdef HAVE_X_WINDOWS |
24995 | 4871 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
|
4872 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4873 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4874 xgcv.font = face->font; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4875 #endif |
24995 | 4876 mask |= GCFont; |
4877 } | |
4878 | |
4879 BLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4880 #ifdef HAVE_X_WINDOWS |
24995 | 4881 if (face->stipple) |
4882 { | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
4883 xgcv.fill_style = FillOpaqueStippled; |
24995 | 4884 xgcv.stipple = x_bitmap_pixmap (f, face->stipple); |
4885 mask |= GCFillStyle | GCStipple; | |
4886 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4887 #endif |
24995 | 4888 face->gc = x_create_gc (f, mask, &xgcv); |
4889 UNBLOCK_INPUT; | |
4890 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4891 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4892 } |
4893 | |
4894 | |
4895 /*********************************************************************** | |
4896 Face Cache | |
4897 ***********************************************************************/ | |
4898 | |
4899 /* Return a new face cache for frame F. */ | |
4900 | |
4901 static struct face_cache * | |
4902 make_face_cache (f) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4903 struct frame *f; |
24995 | 4904 { |
4905 struct face_cache *c; | |
4906 int size; | |
4907 | |
4908 c = (struct face_cache *) xmalloc (sizeof *c); | |
4909 bzero (c, sizeof *c); | |
4910 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4911 c->buckets = (struct face **) xmalloc (size); | |
4912 bzero (c->buckets, size); | |
4913 c->size = 50; | |
4914 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id); | |
4915 c->f = f; | |
4916 return c; | |
4917 } | |
4918 | |
4919 | |
4920 /* Clear out all graphics contexts for all realized faces, except for | |
4921 the basic faces. This should be done from time to time just to avoid | |
4922 keeping too many graphics contexts that are no longer needed. */ | |
4923 | |
4924 static void | |
4925 clear_face_gcs (c) | |
4926 struct face_cache *c; | |
4927 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4928 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
|
4929 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4930 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4931 int i; |
4932 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i) | |
4933 { | |
4934 struct face *face = c->faces_by_id[i]; | |
4935 if (face && face->gc) | |
4936 { | |
4937 x_free_gc (c->f, face->gc); | |
4938 face->gc = 0; | |
4939 } | |
4940 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4941 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4942 } |
4943 } | |
4944 | |
4945 | |
4946 /* Free all realized faces in face cache C, including basic faces. C | |
4947 may be null. If faces are freed, make sure the frame's current | |
4948 matrix is marked invalid, so that a display caused by an expose | |
4949 event doesn't try to use faces we destroyed. */ | |
4950 | |
4951 static void | |
4952 free_realized_faces (c) | |
4953 struct face_cache *c; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4954 { |
24995 | 4955 if (c && c->used) |
4956 { | |
4957 int i, size; | |
4958 struct frame *f = c->f; | |
4959 | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4960 /* 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
|
4961 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
|
4962 current matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4963 BLOCK_INPUT; |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4964 |
24995 | 4965 for (i = 0; i < c->used; ++i) |
4966 { | |
4967 free_realized_face (f, c->faces_by_id[i]); | |
4968 c->faces_by_id[i] = NULL; | |
4969 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4970 |
24995 | 4971 c->used = 0; |
4972 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4973 bzero (c->buckets, size); | |
4974 | |
4975 /* Must do a thorough redisplay the next time. Mark current | |
4976 matrices as invalid because they will reference faces freed | |
4977 above. This function is also called when a frame is | |
4978 destroyed. In this case, the root window of F is nil. */ | |
4979 if (WINDOWP (f->root_window)) | |
4980 { | |
4981 clear_current_matrices (f); | |
4982 ++windows_or_buffers_changed; | |
4983 } | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4984 |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4985 UNBLOCK_INPUT; |
24995 | 4986 } |
4987 } | |
4988 | |
4989 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4990 /* 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
|
4991 has FONTSET. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4992 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4993 void |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4994 free_realized_multibyte_face (f, fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4995 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4996 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4997 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4998 struct face_cache *cache = FRAME_FACE_CACHE (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4999 struct face *face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5000 int i; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5001 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5002 /* 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
|
5003 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
|
5004 matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5005 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5006 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5007 for (i = 0; i < cache->used; i++) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5008 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5009 face = cache->faces_by_id[i]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5010 if (face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5011 && face != face->ascii_face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5012 && face->fontset == fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5013 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5014 uncache_face (cache, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5015 free_realized_face (f, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5016 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5017 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5018 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5019 /* 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
|
5020 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
|
5021 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
|
5022 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
|
5023 if (WINDOWP (f->root_window)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5024 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5025 clear_current_matrices (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5026 ++windows_or_buffers_changed; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5027 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5028 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5029 UNBLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5030 } |
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 |
24995 | 5033 /* Free all realized faces on FRAME or on all frames if FRAME is nil. |
5034 This is done after attributes of a named face have been changed, | |
5035 because we can't tell which realized faces depend on that face. */ | |
5036 | |
5037 void | |
5038 free_all_realized_faces (frame) | |
5039 Lisp_Object frame; | |
5040 { | |
5041 if (NILP (frame)) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5042 { |
24995 | 5043 Lisp_Object rest; |
5044 FOR_EACH_FRAME (rest, frame) | |
5045 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
5046 } | |
5047 else | |
5048 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
5049 } | |
5050 | |
5051 | |
5052 /* Free face cache C and faces in it, including their X resources. */ | |
5053 | |
5054 static void | |
5055 free_face_cache (c) | |
5056 struct face_cache *c; | |
5057 { | |
5058 if (c) | |
5059 { | |
5060 free_realized_faces (c); | |
5061 xfree (c->buckets); | |
5062 xfree (c->faces_by_id); | |
5063 xfree (c); | |
5064 } | |
5065 } | |
5066 | |
5067 | |
5068 /* Cache realized face FACE in face cache C. HASH is the hash value | |
5069 of FACE. If FACE->fontset >= 0, add the new face to the end of the | |
5070 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
|
5071 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
|
5072 faces with the same attributes but for specific characters exist. */ |
24995 | 5073 |
5074 static void | |
5075 cache_face (c, face, hash) | |
5076 struct face_cache *c; | |
5077 struct face *face; | |
5078 unsigned hash; | |
5079 { | |
5080 int i = hash % FACE_CACHE_BUCKETS_SIZE; | |
5081 | |
5082 face->hash = hash; | |
5083 | |
5084 if (face->fontset >= 0) | |
5085 { | |
5086 struct face *last = c->buckets[i]; | |
5087 if (last) | |
5088 { | |
5089 while (last->next) | |
5090 last = last->next; | |
5091 last->next = face; | |
5092 face->prev = last; | |
5093 face->next = NULL; | |
5094 } | |
5095 else | |
5096 { | |
5097 c->buckets[i] = face; | |
5098 face->prev = face->next = NULL; | |
5099 } | |
5100 } | |
5101 else | |
5102 { | |
5103 face->prev = NULL; | |
5104 face->next = c->buckets[i]; | |
5105 if (face->next) | |
5106 face->next->prev = face; | |
5107 c->buckets[i] = face; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5108 } |
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5109 |
24995 | 5110 /* Find a free slot in C->faces_by_id and use the index of the free |
5111 slot as FACE->id. */ | |
5112 for (i = 0; i < c->used; ++i) | |
5113 if (c->faces_by_id[i] == NULL) | |
5114 break; | |
5115 face->id = i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5116 |
24995 | 5117 /* Maybe enlarge C->faces_by_id. */ |
5118 if (i == c->used && c->used == c->size) | |
5119 { | |
5120 int new_size = 2 * c->size; | |
5121 int sz = new_size * sizeof *c->faces_by_id; | |
5122 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz); | |
5123 c->size = new_size; | |
5124 } | |
5125 | |
5126 #if GLYPH_DEBUG | |
5127 /* Check that FACE got a unique id. */ | |
5128 { | |
5129 int j, n; | |
5130 struct face *face; | |
5131 | |
5132 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j) | |
5133 for (face = c->buckets[j]; face; face = face->next) | |
5134 if (face->id == i) | |
5135 ++n; | |
5136 | |
5137 xassert (n == 1); | |
5138 } | |
5139 #endif /* GLYPH_DEBUG */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5140 |
24995 | 5141 c->faces_by_id[i] = face; |
5142 if (i == c->used) | |
5143 ++c->used; | |
5144 } | |
5145 | |
5146 | |
5147 /* Remove face FACE from cache C. */ | |
5148 | |
5149 static void | |
5150 uncache_face (c, face) | |
5151 struct face_cache *c; | |
5152 struct face *face; | |
5153 { | |
5154 int i = face->hash % FACE_CACHE_BUCKETS_SIZE; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5155 |
24995 | 5156 if (face->prev) |
5157 face->prev->next = face->next; | |
5158 else | |
5159 c->buckets[i] = face->next; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5160 |
24995 | 5161 if (face->next) |
5162 face->next->prev = face->prev; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5163 |
24995 | 5164 c->faces_by_id[face->id] = NULL; |
5165 if (face->id == c->used) | |
5166 --c->used; | |
5167 } | |
5168 | |
5169 | |
5170 /* 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
|
5171 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
|
5172 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
|
5173 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
|
5174 is a face that has the same attributes. */ |
24995 | 5175 |
5176 INLINE int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5177 lookup_face (f, attr, c, base_face) |
24995 | 5178 struct frame *f; |
5179 Lisp_Object *attr; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5180 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5181 struct face *base_face; |
24995 | 5182 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5183 struct face_cache *cache = FRAME_FACE_CACHE (f); |
24995 | 5184 unsigned hash; |
5185 int i; | |
5186 struct face *face; | |
5187 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5188 xassert (cache != NULL); |
24995 | 5189 check_lface_attrs (attr); |
5190 | |
5191 /* Look up ATTR in the face cache. */ | |
5192 hash = lface_hash (attr); | |
5193 i = hash % FACE_CACHE_BUCKETS_SIZE; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5194 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5195 for (face = cache->buckets[i]; face; face = face->next) |
24995 | 5196 if (face->hash == hash |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5197 && (!FRAME_WINDOW_P (f) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5198 || FACE_SUITABLE_FOR_CHAR_P (face, c)) |
24995 | 5199 && lface_equal_p (face->lface, attr)) |
5200 break; | |
5201 | |
5202 /* If not found, realize a new face. */ | |
5203 if (face == NULL) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5204 face = realize_face (cache, attr, c, base_face, -1); |
24995 | 5205 |
5206 #if GLYPH_DEBUG | |
5207 xassert (face == FACE_FROM_ID (f, face->id)); | |
28409 | 5208 |
5209 /* When this function is called from face_for_char (in this case, C is | |
5210 a multibyte character), a fontset of a face returned by | |
5211 realize_face is not yet set, i.e. FACE_SUITABLE_FOR_CHAR_P (FACE, | |
5212 C) is not sutisfied. The fontset is set for this face by | |
5213 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
|
5214 #if 0 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5215 if (FRAME_WINDOW_P (f)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5216 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
|
5217 #endif |
24995 | 5218 #endif /* GLYPH_DEBUG */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5219 |
24995 | 5220 return face->id; |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5221 } |
24995 | 5222 |
5223 | |
5224 /* 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
|
5225 frame F suitable for displaying character C. */ |
24995 | 5226 |
5227 int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5228 lookup_named_face (f, symbol, c) |
24995 | 5229 struct frame *f; |
5230 Lisp_Object symbol; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5231 int c; |
24995 | 5232 { |
5233 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5234 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
5235 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5236 | |
5237 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
5238 bcopy (default_face->lface, attrs, sizeof attrs); | |
31178 | 5239 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
|
5240 return lookup_face (f, attrs, c, NULL); |
24995 | 5241 } |
5242 | |
5243 | |
5244 /* Return the ID of the realized ASCII face of Lisp face with ID | |
5245 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */ | |
5246 | |
5247 int | |
5248 ascii_face_of_lisp_face (f, lface_id) | |
5249 struct frame *f; | |
5250 int lface_id; | |
5251 { | |
5252 int face_id; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5253 |
24995 | 5254 if (lface_id >= 0 && lface_id < lface_id_to_name_size) |
5255 { | |
5256 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
|
5257 face_id = lookup_named_face (f, face_name, 0); |
24995 | 5258 } |
5259 else | |
5260 face_id = -1; | |
5261 | |
5262 return face_id; | |
5263 } | |
5264 | |
5265 | |
5266 /* Return a face for charset ASCII that is like the face with id | |
5267 FACE_ID on frame F, but has a font that is STEPS steps smaller. | |
5268 STEPS < 0 means larger. Value is the id of the face. */ | |
5269 | |
5270 int | |
5271 smaller_face (f, face_id, steps) | |
5272 struct frame *f; | |
5273 int face_id, steps; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5274 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5275 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5276 struct face *face; |
5277 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5278 int pt, last_pt, last_height; | |
5279 int delta; | |
5280 int new_face_id; | |
5281 struct face *new_face; | |
5282 | |
5283 /* If not called for an X frame, just return the original face. */ | |
5284 if (FRAME_TERMCAP_P (f)) | |
5285 return face_id; | |
5286 | |
5287 /* Try in increments of 1/2 pt. */ | |
5288 delta = steps < 0 ? 5 : -5; | |
5289 steps = abs (steps); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5290 |
24995 | 5291 face = FACE_FROM_ID (f, face_id); |
5292 bcopy (face->lface, attrs, sizeof attrs); | |
5293 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5294 new_face_id = face_id; | |
5295 last_height = FONT_HEIGHT (face->font); | |
5296 | |
5297 while (steps | |
5298 && pt + delta > 0 | |
5299 /* Give up if we cannot find a font within 10pt. */ | |
5300 && abs (last_pt - pt) < 100) | |
5301 { | |
5302 /* Look up a face for a slightly smaller/larger font. */ | |
5303 pt += delta; | |
5304 attrs[LFACE_HEIGHT_INDEX] = make_number (pt); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5305 new_face_id = lookup_face (f, attrs, 0, NULL); |
24995 | 5306 new_face = FACE_FROM_ID (f, new_face_id); |
5307 | |
5308 /* If height changes, count that as one step. */ | |
31463
628bb2264f46
(smaller_face): Compare font heights with `<' and `>'
Gerd Moellmann <gerd@gnu.org>
parents:
31449
diff
changeset
|
5309 if ((delta < 0 && FONT_HEIGHT (new_face->font) < last_height) |
628bb2264f46
(smaller_face): Compare font heights with `<' and `>'
Gerd Moellmann <gerd@gnu.org>
parents:
31449
diff
changeset
|
5310 || (delta > 0 && FONT_HEIGHT (new_face->font) > last_height)) |
24995 | 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 /* Value is non-zero if FONT is an exact match for face attributes in | |
5534 SPECIFIED. SPECIFIED is an array of face attribute values in font | |
5535 sort order. */ | |
5536 | |
5537 static int | |
5538 exact_face_match_p (specified, font) | |
5539 int *specified; | |
5540 struct font_name *font; | |
5541 { | |
5542 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5543 |
24995 | 5544 for (i = 0; i < 4; ++i) |
5545 if (specified[i] != font->numeric[font_sort_order[i]]) | |
5546 break; | |
5547 | |
5548 return i == 4; | |
5549 } | |
5550 | |
5551 | |
5552 /* Value is the name of a scaled font, generated from scalable font | |
5553 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to. | |
5554 Value is allocated from heap. */ | |
5555 | |
5556 static char * | |
5557 build_scalable_font_name (f, font, specified_pt) | |
5558 struct frame *f; | |
5559 struct font_name *font; | |
5560 int specified_pt; | |
5561 { | |
5562 char point_size[20], pixel_size[20]; | |
5563 int pixel_value; | |
5564 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
5565 double pt; | |
5566 | |
5567 /* If scalable font is for a specific resolution, compute | |
5568 the point size we must specify from the resolution of | |
5569 the display and the specified resolution of the font. */ | |
5570 if (font->numeric[XLFD_RESY] != 0) | |
5571 { | |
5572 pt = resy / font->numeric[XLFD_RESY] * specified_pt + 0.5; | |
5573 pixel_value = font->numeric[XLFD_RESY] / 720.0 * pt; | |
5574 } | |
5575 else | |
5576 { | |
5577 pt = specified_pt; | |
5578 pixel_value = resy / 720.0 * pt; | |
5579 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5580 |
24995 | 5581 /* Set point size of the font. */ |
5582 sprintf (point_size, "%d", (int) pt); | |
5583 font->fields[XLFD_POINT_SIZE] = point_size; | |
5584 font->numeric[XLFD_POINT_SIZE] = pt; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5585 |
24995 | 5586 /* Set pixel size. */ |
5587 sprintf (pixel_size, "%d", pixel_value); | |
5588 font->fields[XLFD_PIXEL_SIZE] = pixel_size; | |
5589 font->numeric[XLFD_PIXEL_SIZE] = pixel_value; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5590 |
24995 | 5591 /* If font doesn't specify its resolution, use the |
5592 resolution of the display. */ | |
5593 if (font->numeric[XLFD_RESY] == 0) | |
5594 { | |
5595 char buffer[20]; | |
5596 sprintf (buffer, "%d", (int) resy); | |
5597 font->fields[XLFD_RESY] = buffer; | |
5598 font->numeric[XLFD_RESY] = resy; | |
5599 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5600 |
24995 | 5601 if (strcmp (font->fields[XLFD_RESX], "0") == 0) |
5602 { | |
5603 char buffer[20]; | |
5604 int resx = FRAME_X_DISPLAY_INFO (f)->resx; | |
5605 sprintf (buffer, "%d", resx); | |
5606 font->fields[XLFD_RESX] = buffer; | |
5607 font->numeric[XLFD_RESX] = resx; | |
5608 } | |
5609 | |
5610 return build_font_name (font); | |
5611 } | |
5612 | |
5613 | |
5614 /* Value is non-zero if we are allowed to use scalable font FONT. We | |
5615 can't run a Lisp function here since this function may be called | |
5616 with input blocked. */ | |
5617 | |
5618 static int | |
5619 may_use_scalable_font_p (font, name) | |
5620 struct font_name *font; | |
5621 char *name; | |
5622 { | |
5623 if (EQ (Vscalable_fonts_allowed, Qt)) | |
5624 return 1; | |
5625 else if (CONSP (Vscalable_fonts_allowed)) | |
5626 { | |
5627 Lisp_Object tail, regexp; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5628 |
24995 | 5629 for (tail = Vscalable_fonts_allowed; CONSP (tail); tail = XCDR (tail)) |
5630 { | |
5631 regexp = XCAR (tail); | |
5632 if (STRINGP (regexp) | |
5633 && fast_c_string_match_ignore_case (regexp, name) >= 0) | |
5634 return 1; | |
5635 } | |
5636 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5637 |
24995 | 5638 return 0; |
5639 } | |
5640 | |
5641 | |
5642 | |
5643 /* Return the name of the best matching font for face attributes | |
5644 ATTRS in the array of font_name structures FONTS which contains | |
5645 NFONTS elements. Value is a font name which is allocated from | |
5646 the heap. FONTS is freed by this function. */ | |
5647 | |
5648 static char * | |
5649 best_matching_font (f, attrs, fonts, nfonts) | |
5650 struct frame *f; | |
5651 Lisp_Object *attrs; | |
5652 struct font_name *fonts; | |
5653 int nfonts; | |
5654 { | |
5655 char *font_name; | |
5656 struct font_name *best; | |
31507
ac6d049932e9
(Finternal_merge_in_global_face): Return a Lisp object.
Gerd Moellmann <gerd@gnu.org>
parents:
31483
diff
changeset
|
5657 int i, pt = 0; |
24995 | 5658 int specified[4]; |
5659 int exact_p; | |
5660 | |
5661 if (nfonts == 0) | |
5662 return NULL; | |
5663 | |
5664 /* Make specified font attributes available in `specified', | |
5665 indexed by sort order. */ | |
5666 for (i = 0; i < DIM (font_sort_order); ++i) | |
5667 { | |
5668 int xlfd_idx = font_sort_order[i]; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5669 |
24995 | 5670 if (xlfd_idx == XLFD_SWIDTH) |
5671 specified[i] = face_numeric_swidth (attrs[LFACE_SWIDTH_INDEX]); | |
5672 else if (xlfd_idx == XLFD_POINT_SIZE) | |
5673 specified[i] = pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5674 else if (xlfd_idx == XLFD_WEIGHT) | |
5675 specified[i] = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
5676 else if (xlfd_idx == XLFD_SLANT) | |
5677 specified[i] = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
5678 else | |
5679 abort (); | |
5680 } | |
5681 | |
5682 exact_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5683 |
24995 | 5684 /* Start with the first non-scalable font in the list. */ |
5685 for (i = 0; i < nfonts; ++i) | |
5686 if (!font_scalable_p (fonts + i)) | |
5687 break; | |
5688 | |
5689 /* Find the best match among the non-scalable fonts. */ | |
5690 if (i < nfonts) | |
5691 { | |
5692 best = fonts + i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5693 |
24995 | 5694 for (i = 1; i < nfonts; ++i) |
5695 if (!font_scalable_p (fonts + i) | |
5696 && better_font_p (specified, fonts + i, best, 1)) | |
5697 { | |
5698 best = fonts + i; | |
5699 | |
5700 exact_p = exact_face_match_p (specified, best); | |
5701 if (exact_p) | |
5702 break; | |
5703 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5704 |
24995 | 5705 } |
5706 else | |
5707 best = NULL; | |
5708 | |
5709 /* Unless we found an exact match among non-scalable fonts, see if | |
5710 we can find a better match among scalable fonts. */ | |
5711 if (!exact_p) | |
5712 { | |
5713 /* A scalable font is better if | |
5714 | |
5715 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
|
5716 |
24995 | 5717 2. the best non-scalable font doesn't have the required |
5718 point size, and the scalable fonts weight, slant, swidth | |
5719 isn't worse. */ | |
5720 | |
5721 int non_scalable_has_exact_height_p; | |
5722 | |
5723 if (best && best->numeric[XLFD_POINT_SIZE] == pt) | |
5724 non_scalable_has_exact_height_p = 1; | |
5725 else | |
5726 non_scalable_has_exact_height_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5727 |
24995 | 5728 for (i = 0; i < nfonts; ++i) |
5729 if (font_scalable_p (fonts + i)) | |
5730 { | |
5731 if (best == NULL | |
5732 || better_font_p (specified, fonts + i, best, 0) | |
5733 || (!non_scalable_has_exact_height_p | |
5734 && !better_font_p (specified, best, fonts + i, 0))) | |
5735 best = fonts + i; | |
5736 } | |
5737 } | |
5738 | |
5739 if (font_scalable_p (best)) | |
5740 font_name = build_scalable_font_name (f, best, pt); | |
5741 else | |
5742 font_name = build_font_name (best); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5743 |
24995 | 5744 /* Free font_name structures. */ |
5745 free_font_names (fonts, nfonts); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5746 |
24995 | 5747 return font_name; |
5748 } | |
5749 | |
5750 | |
5751 /* Try to get a list of fonts on frame F with font family FAMILY and | |
5752 registry/encoding REGISTRY. Return in *FONTS a pointer to a vector | |
5753 of font_name structures for the fonts matched. Value is the number | |
5754 of fonts found. */ | |
5755 | |
5756 static int | |
5757 try_font_list (f, attrs, pattern, family, registry, fonts) | |
5758 struct frame *f; | |
5759 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5760 Lisp_Object pattern, family, registry; |
24995 | 5761 struct font_name **fonts; |
5762 { | |
5763 int nfonts; | |
5764 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5765 if (NILP (family) && STRINGP (attrs[LFACE_FAMILY_INDEX])) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5766 family = attrs[LFACE_FAMILY_INDEX]; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5767 |
24995 | 5768 nfonts = font_list (f, pattern, family, registry, fonts); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5769 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5770 if (nfonts == 0 && !NILP (family)) |
24995 | 5771 { |
5772 Lisp_Object alter; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5773 |
24995 | 5774 /* Try alternative font families from |
5775 Vface_alternative_font_family_alist. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5776 alter = Fassoc (family, Vface_alternative_font_family_alist); |
24995 | 5777 if (CONSP (alter)) |
5778 for (alter = XCDR (alter); | |
5779 CONSP (alter) && nfonts == 0; | |
5780 alter = XCDR (alter)) | |
5781 { | |
5782 if (STRINGP (XCAR (alter))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5783 nfonts = font_list (f, Qnil, XCAR (alter), registry, fonts); |
24995 | 5784 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5785 |
24995 | 5786 /* Try font family of the default face or "fixed". */ |
5787 if (nfonts == 0) | |
5788 { | |
5789 struct face *dflt = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5790 if (dflt) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5791 family = dflt->lface[LFACE_FAMILY_INDEX]; |
24995 | 5792 else |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5793 family = build_string ("fixed"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5794 nfonts = font_list (f, Qnil, family, registry, fonts); |
24995 | 5795 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5796 |
24995 | 5797 /* Try any family with the given registry. */ |
5798 if (nfonts == 0) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5799 nfonts = font_list (f, Qnil, Qnil, registry, fonts); |
24995 | 5800 } |
5801 | |
5802 return nfonts; | |
5803 } | |
5804 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5805 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5806 /* 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
|
5807 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
|
5808 attribute of ATTRS doesn't name a fontset. */ |
24995 | 5809 |
5810 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5811 face_fontset (attrs) |
24995 | 5812 Lisp_Object *attrs; |
5813 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5814 Lisp_Object name; |
24995 | 5815 int fontset; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5816 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5817 name = attrs[LFACE_FONT_INDEX]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5818 if (!STRINGP (name)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5819 return -1; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5820 return fs_query_fontset (name, 0); |
24995 | 5821 } |
5822 | |
5823 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5824 /* 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
|
5825 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
|
5826 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
|
5827 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
|
5828 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
|
5829 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
|
5830 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
|
5831 character. */ |
24995 | 5832 |
5833 static char * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5834 choose_face_font (f, attrs, fontset, c) |
24995 | 5835 struct frame *f; |
5836 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5837 int fontset, c; |
24995 | 5838 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5839 Lisp_Object pattern; |
24995 | 5840 char *font_name = NULL; |
5841 struct font_name *fonts; | |
5842 int nfonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5843 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5844 /* 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
|
5845 a font for C. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5846 pattern = fontset_font_pattern (f, fontset, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5847 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5848 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5849 xassert (!SINGLE_BYTE_CHAR_P (c)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5850 return NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5851 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5852 /* 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
|
5853 if (STRINGP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5854 return xstrdup (XSTRING (pattern)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5855 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5856 /* 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
|
5857 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
|
5858 character. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5859 if (STRINGP (attrs[LFACE_FAMILY_INDEX]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5860 && SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5861 XCAR (pattern) = Qnil; |
24995 | 5862 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5863 /* Get a list of fonts matching that pattern and choose the |
24995 | 5864 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
|
5865 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
|
5866 &fonts); |
24995 | 5867 font_name = best_matching_font (f, attrs, fonts, nfonts); |
5868 return font_name; | |
5869 } | |
5870 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5871 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5872 |
5873 | |
5874 | |
5875 /*********************************************************************** | |
5876 Face Realization | |
5877 ***********************************************************************/ | |
5878 | |
5879 /* Realize basic faces on frame F. Value is zero if frame parameters | |
5880 of F don't contain enough information needed to realize the default | |
5881 face. */ | |
5882 | |
5883 static int | |
5884 realize_basic_faces (f) | |
2342 | 5885 struct frame *f; |
24995 | 5886 { |
5887 int success_p = 0; | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5888 |
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5889 /* 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
|
5890 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
|
5891 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5892 |
24995 | 5893 if (realize_default_face (f)) |
5894 { | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
5895 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
|
5896 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
|
5897 realize_named_face (f, Qfringe, BITMAP_AREA_FACE_ID); |
25546 | 5898 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
|
5899 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
|
5900 realize_named_face (f, Qborder, BORDER_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5901 realize_named_face (f, Qcursor, CURSOR_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5902 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
|
5903 realize_named_face (f, Qmenu, MENU_FACE_ID); |
24995 | 5904 success_p = 1; |
5905 } | |
5906 | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5907 UNBLOCK_INPUT; |
24995 | 5908 return success_p; |
5909 } | |
5910 | |
5911 | |
5912 /* Realize the default face on frame F. If the face is not fully | |
5913 specified, make it fully-specified. Attributes of the default face | |
5914 that are not explicitly specified are taken from frame parameters. */ | |
5915 | |
5916 static int | |
5917 realize_default_face (f) | |
5918 struct frame *f; | |
5919 { | |
5920 struct face_cache *c = FRAME_FACE_CACHE (f); | |
5921 Lisp_Object lface; | |
5922 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5923 Lisp_Object frame_font; | |
5924 struct face *face; | |
5925 int fontset; | |
5926 | |
5927 /* If the `default' face is not yet known, create it. */ | |
5928 lface = lface_from_face_name (f, Qdefault, 0); | |
5929 if (NILP (lface)) | |
5930 { | |
5931 Lisp_Object frame; | |
5932 XSETFRAME (frame, f); | |
5933 lface = Finternal_make_lisp_face (Qdefault, frame); | |
5934 } | |
5935 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5936 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5937 if (FRAME_WINDOW_P (f)) |
24995 | 5938 { |
5939 /* Set frame_font to the value of the `font' frame parameter. */ | |
5940 frame_font = Fassq (Qfont, f->param_alist); | |
5941 xassert (CONSP (frame_font) && STRINGP (XCDR (frame_font))); | |
5942 frame_font = XCDR (frame_font); | |
31940
d69d99161d39
(realize_default_face): Call set_lface_from_font_name
Gerd Moellmann <gerd@gnu.org>
parents:
31570
diff
changeset
|
5943 set_lface_from_font_name (f, lface, frame_font, 1, 1); |
24995 | 5944 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5945 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5946 |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5947 if (!FRAME_WINDOW_P (f)) |
24995 | 5948 { |
5949 LFACE_FAMILY (lface) = build_string ("default"); | |
5950 LFACE_SWIDTH (lface) = Qnormal; | |
5951 LFACE_HEIGHT (lface) = make_number (1); | |
5952 LFACE_WEIGHT (lface) = Qnormal; | |
5953 LFACE_SLANT (lface) = Qnormal; | |
5954 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5955 |
24995 | 5956 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface))) |
5957 LFACE_UNDERLINE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5958 |
24995 | 5959 if (UNSPECIFIEDP (LFACE_OVERLINE (lface))) |
5960 LFACE_OVERLINE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5961 |
24995 | 5962 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface))) |
5963 LFACE_STRIKE_THROUGH (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5964 |
24995 | 5965 if (UNSPECIFIEDP (LFACE_BOX (lface))) |
5966 LFACE_BOX (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5967 |
24995 | 5968 if (UNSPECIFIEDP (LFACE_INVERSE (lface))) |
5969 LFACE_INVERSE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5970 |
24995 | 5971 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
5972 { | |
5973 /* This function is called so early that colors are not yet | |
5974 set in the frame parameter list. */ | |
5975 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
|
5976 |
24995 | 5977 if (CONSP (color) && STRINGP (XCDR (color))) |
5978 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
|
5979 else if (FRAME_WINDOW_P (f)) |
24995 | 5980 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5981 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
|
5982 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
|
5983 else |
24995 | 5984 abort (); |
5985 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5986 |
24995 | 5987 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
5988 { | |
5989 /* This function is called so early that colors are not yet | |
5990 set in the frame parameter list. */ | |
5991 Lisp_Object color = Fassq (Qbackground_color, f->param_alist); | |
5992 if (CONSP (color) && STRINGP (XCDR (color))) | |
5993 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
|
5994 else if (FRAME_WINDOW_P (f)) |
24995 | 5995 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5996 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
|
5997 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
|
5998 else |
24995 | 5999 abort (); |
6000 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6001 |
24995 | 6002 if (UNSPECIFIEDP (LFACE_STIPPLE (lface))) |
6003 LFACE_STIPPLE (lface) = Qnil; | |
6004 | |
6005 /* Realize the face; it must be fully-specified now. */ | |
6006 xassert (lface_fully_specified_p (XVECTOR (lface)->contents)); | |
6007 check_lface (lface); | |
6008 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6009 face = realize_face (c, attrs, 0, NULL, DEFAULT_FACE_ID); |
24995 | 6010 return 1; |
6011 } | |
6012 | |
6013 | |
6014 /* Realize basic faces other than the default face in face cache C. | |
6015 SYMBOL is the face name, ID is the face id the realized face must | |
6016 have. The default face must have been realized already. */ | |
6017 | |
6018 static void | |
6019 realize_named_face (f, symbol, id) | |
6020 struct frame *f; | |
6021 Lisp_Object symbol; | |
6022 int id; | |
6023 { | |
6024 struct face_cache *c = FRAME_FACE_CACHE (f); | |
6025 Lisp_Object lface = lface_from_face_name (f, symbol, 0); | |
6026 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6027 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
6028 struct face *new_face; | |
6029 | |
6030 /* The default face must exist and be fully specified. */ | |
6031 get_lface_attributes (f, Qdefault, attrs, 1); | |
6032 check_lface_attrs (attrs); | |
6033 xassert (lface_fully_specified_p (attrs)); | |
6034 | |
6035 /* If SYMBOL isn't know as a face, create it. */ | |
6036 if (NILP (lface)) | |
6037 { | |
6038 Lisp_Object frame; | |
6039 XSETFRAME (frame, f); | |
6040 lface = Finternal_make_lisp_face (symbol, frame); | |
6041 } | |
6042 | |
6043 /* Merge SYMBOL's face with the default face. */ | |
6044 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
31178 | 6045 merge_face_vectors (f, symbol_attrs, attrs, Qnil); |
24995 | 6046 |
6047 /* Realize the face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6048 new_face = realize_face (c, attrs, 0, NULL, id); |
24995 | 6049 } |
6050 | |
6051 | |
6052 /* 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
|
6053 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
|
6054 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
|
6055 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
|
6056 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
|
6057 pointer to the newly created realized face. */ |
24995 | 6058 |
6059 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6060 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
|
6061 struct face_cache *cache; |
24995 | 6062 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6063 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6064 struct face *base_face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6065 int former_face_id; |
24995 | 6066 { |
6067 struct face *face; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6068 |
24995 | 6069 /* LFACE must be fully specified. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6070 xassert (cache != NULL); |
24995 | 6071 check_lface_attrs (attrs); |
6072 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6073 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
|
6074 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6075 /* Remove the former face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6076 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
|
6077 uncache_face (cache, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6078 free_realized_face (cache->f, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6079 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6080 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6081 if (FRAME_WINDOW_P (cache->f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6082 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
|
6083 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
|
6084 face = realize_tty_face (cache, attrs, c); |
24995 | 6085 else |
6086 abort (); | |
6087 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6088 /* Insert the new face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6089 cache_face (cache, face, lface_hash (attrs)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6090 #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
|
6091 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
|
6092 load_face_font (cache->f, face, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6093 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6094 return face; |
6095 } | |
6096 | |
6097 | |
6098 /* 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
|
6099 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
|
6100 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
|
6101 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
|
6102 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
|
6103 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
|
6104 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
|
6105 face. */ |
24995 | 6106 |
6107 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6108 realize_x_face (cache, attrs, c, base_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6109 struct face_cache *cache; |
24995 | 6110 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6111 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6112 struct face *base_face; |
24995 | 6113 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6114 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 6115 struct face *face, *default_face; |
26875
d6aa11f2a4af
(choose_face_fontset_font): Delete codes for a
Kenichi Handa <handa@m17n.org>
parents:
26759
diff
changeset
|
6116 struct frame *f; |
24995 | 6117 Lisp_Object stipple, overline, strike_through, box; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6118 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6119 xassert (FRAME_WINDOW_P (cache->f)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6120 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
|
6121 || base_face); |
24995 | 6122 |
6123 /* Allocate a new realized face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6124 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6125 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6126 f = cache->f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6127 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6128 /* 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
|
6129 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
|
6130 different font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6131 if (!SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6132 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6133 bcopy (base_face, face, sizeof *face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6134 face->gc = 0; |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6135 |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6136 /* 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
|
6137 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
|
6138 face->background_defaulted_p = 1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6139 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
|
6140 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
|
6141 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
|
6142 face->box_color_defaulted_p = 1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6143 |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6144 /* 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
|
6145 face->font = NULL; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6146 return face; |
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 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6149 /* 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
|
6150 |
24995 | 6151 /* Determine the font to use. Most of the time, the font will be |
6152 the same as the font of the default face, so try that first. */ | |
6153 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6154 if (default_face | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6155 && FACE_SUITABLE_FOR_CHAR_P (default_face, c) |
24995 | 6156 && lface_same_font_attributes_p (default_face->lface, attrs)) |
6157 { | |
6158 face->font = default_face->font; | |
6159 face->fontset = default_face->fontset; | |
6160 face->font_info_id = default_face->font_info_id; | |
6161 face->font_name = default_face->font_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6162 face->ascii_face = face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6163 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6164 /* 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
|
6165 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
|
6166 face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6167 face->fontset |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6168 = make_fontset_for_ascii_face (f, default_face->fontset); |
24995 | 6169 } |
6170 else | |
6171 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6172 /* 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
|
6173 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
|
6174 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
|
6175 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
|
6176 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
|
6177 are constructed from ATTRS. */ |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
6178 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
|
6179 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6180 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
|
6181 fontset = default_face->fontset; |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
6182 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
|
6183 face->font = NULL; /* to force realize_face to load font */ |
24995 | 6184 } |
6185 | |
6186 /* Load colors, and set remaining attributes. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6187 |
24995 | 6188 load_face_colors (f, face, attrs); |
6189 | |
6190 /* Set up box. */ | |
6191 box = attrs[LFACE_BOX_INDEX]; | |
6192 if (STRINGP (box)) | |
6193 { | |
6194 /* A simple box of line width 1 drawn in color given by | |
6195 the string. */ | |
6196 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX], | |
6197 LFACE_BOX_INDEX); | |
6198 face->box = FACE_SIMPLE_BOX; | |
6199 face->box_line_width = 1; | |
6200 } | |
6201 else if (INTEGERP (box)) | |
6202 { | |
6203 /* Simple box of specified line width in foreground color of the | |
6204 face. */ | |
6205 xassert (XINT (box) > 0); | |
6206 face->box = FACE_SIMPLE_BOX; | |
6207 face->box_line_width = XFASTINT (box); | |
6208 face->box_color = face->foreground; | |
6209 face->box_color_defaulted_p = 1; | |
6210 } | |
6211 else if (CONSP (box)) | |
6212 { | |
6213 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW | |
6214 being one of `raised' or `sunken'. */ | |
6215 face->box = FACE_SIMPLE_BOX; | |
6216 face->box_color = face->foreground; | |
6217 face->box_color_defaulted_p = 1; | |
6218 face->box_line_width = 1; | |
6219 | |
6220 while (CONSP (box)) | |
6221 { | |
6222 Lisp_Object keyword, value; | |
6223 | |
6224 keyword = XCAR (box); | |
6225 box = XCDR (box); | |
6226 | |
6227 if (!CONSP (box)) | |
6228 break; | |
6229 value = XCAR (box); | |
6230 box = XCDR (box); | |
6231 | |
6232 if (EQ (keyword, QCline_width)) | |
6233 { | |
6234 if (INTEGERP (value) && XINT (value) > 0) | |
6235 face->box_line_width = XFASTINT (value); | |
6236 } | |
6237 else if (EQ (keyword, QCcolor)) | |
6238 { | |
6239 if (STRINGP (value)) | |
6240 { | |
6241 face->box_color = load_color (f, face, value, | |
6242 LFACE_BOX_INDEX); | |
6243 face->use_box_color_for_shadows_p = 1; | |
6244 } | |
6245 } | |
6246 else if (EQ (keyword, QCstyle)) | |
6247 { | |
6248 if (EQ (value, Qreleased_button)) | |
6249 face->box = FACE_RAISED_BOX; | |
6250 else if (EQ (value, Qpressed_button)) | |
6251 face->box = FACE_SUNKEN_BOX; | |
6252 } | |
6253 } | |
6254 } | |
6255 | |
6256 /* Text underline, overline, strike-through. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6257 |
24995 | 6258 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt)) |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6259 { |
24995 | 6260 /* Use default color (same as foreground color). */ |
6261 face->underline_p = 1; | |
6262 face->underline_defaulted_p = 1; | |
6263 face->underline_color = 0; | |
6264 } | |
6265 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX])) | |
6266 { | |
6267 /* Use specified color. */ | |
6268 face->underline_p = 1; | |
6269 face->underline_defaulted_p = 0; | |
6270 face->underline_color | |
6271 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX], | |
6272 LFACE_UNDERLINE_INDEX); | |
6273 } | |
6274 else if (NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6275 { | |
6276 face->underline_p = 0; | |
6277 face->underline_defaulted_p = 0; | |
6278 face->underline_color = 0; | |
6279 } | |
6280 | |
6281 overline = attrs[LFACE_OVERLINE_INDEX]; | |
6282 if (STRINGP (overline)) | |
6283 { | |
6284 face->overline_color | |
6285 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX], | |
6286 LFACE_OVERLINE_INDEX); | |
6287 face->overline_p = 1; | |
6288 } | |
6289 else if (EQ (overline, Qt)) | |
6290 { | |
6291 face->overline_color = face->foreground; | |
6292 face->overline_color_defaulted_p = 1; | |
6293 face->overline_p = 1; | |
6294 } | |
6295 | |
6296 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX]; | |
6297 if (STRINGP (strike_through)) | |
6298 { | |
6299 face->strike_through_color | |
6300 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX], | |
6301 LFACE_STRIKE_THROUGH_INDEX); | |
6302 face->strike_through_p = 1; | |
6303 } | |
6304 else if (EQ (strike_through, Qt)) | |
6305 { | |
6306 face->strike_through_color = face->foreground; | |
6307 face->strike_through_color_defaulted_p = 1; | |
6308 face->strike_through_p = 1; | |
6309 } | |
6310 | |
6311 stipple = attrs[LFACE_STIPPLE_INDEX]; | |
6312 if (!NILP (stipple)) | |
6313 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h); | |
6314 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6315 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c)); |
24995 | 6316 return face; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6317 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6318 } |
6319 | |
6320 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6321 /* 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
|
6322 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
|
6323 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
|
6324 default foreground/background colors. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6325 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6326 static void |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6327 map_tty_color (f, face, idx, defaulted) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6328 struct frame *f; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6329 struct face *face; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6330 enum lface_attribute_index idx; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6331 int *defaulted; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6332 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6333 Lisp_Object frame, color, def; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6334 int foreground_p = idx == LFACE_FOREGROUND_INDEX; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6335 unsigned long default_pixel, default_other_pixel, pixel; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6336 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6337 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
|
6338 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6339 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6340 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6341 pixel = default_pixel = FACE_TTY_DEFAULT_FG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6342 default_other_pixel = FACE_TTY_DEFAULT_BG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6343 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6344 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6345 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6346 pixel = default_pixel = FACE_TTY_DEFAULT_BG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6347 default_other_pixel = FACE_TTY_DEFAULT_FG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6348 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6349 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6350 XSETFRAME (frame, f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6351 color = face->lface[idx]; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6352 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6353 if (STRINGP (color) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6354 && XSTRING (color)->size |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6355 && CONSP (Vtty_defined_color_alist) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6356 && (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
|
6357 CONSP (def))) |
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 /* 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
|
6360 (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
|
6361 pixel = XINT (XCAR (XCDR (def))); |
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 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6364 if (pixel == default_pixel && STRINGP (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 pixel = load_color (f, face, color, idx); |
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 #if defined (MSDOS) || defined (WINDOWSNT) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6369 /* 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
|
6370 use the foreground color defined by the frame. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6371 #ifdef MSDOS |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6372 if (FRAME_MSDOS_P (f)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6373 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6374 #endif /* MSDOS */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6375 if (pixel == default_pixel |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6376 || pixel == FACE_TTY_DEFAULT_COLOR) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6377 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6378 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6379 pixel = FRAME_FOREGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6380 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6381 pixel = FRAME_BACKGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6382 face->lface[idx] = tty_color_name (f, pixel); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6383 *defaulted = 1; |
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 else if (pixel == default_other_pixel) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6386 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6387 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6388 pixel = FRAME_BACKGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6389 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6390 pixel = FRAME_FOREGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6391 face->lface[idx] = tty_color_name (f, pixel); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6392 *defaulted = 1; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6393 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6394 #ifdef MSDOS |
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 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6397 #endif /* MSDOS or WINDOWSNT */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6398 } |
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 face->foreground = pixel; |
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 face->background = pixel; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6404 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6405 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6406 |
24995 | 6407 /* 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
|
6408 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
|
6409 pointer to the newly created realized face. */ |
24995 | 6410 |
6411 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6412 realize_tty_face (cache, attrs, c) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6413 struct face_cache *cache; |
24995 | 6414 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6415 int c; |
24995 | 6416 { |
6417 struct face *face; | |
6418 int weight, slant; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6419 int face_colors_defaulted = 0; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6420 struct frame *f = cache->f; |
24995 | 6421 |
6422 /* Frame must be a termcap frame. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6423 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
|
6424 |
24995 | 6425 /* Allocate a new realized face. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6426 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6427 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty"; |
24995 | 6428 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6429 /* Map face attributes to TTY appearances. We map slant to |
24995 | 6430 dimmed text because we want italic text to appear differently |
6431 and because dimmed text is probably used infrequently. */ | |
6432 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
6433 slant = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
6434 | |
6435 if (weight > XLFD_WEIGHT_MEDIUM) | |
6436 face->tty_bold_p = 1; | |
6437 if (weight < XLFD_WEIGHT_MEDIUM || slant != XLFD_SLANT_ROMAN) | |
6438 face->tty_dim_p = 1; | |
6439 if (!NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6440 face->tty_underline_p = 1; | |
6441 if (!NILP (attrs[LFACE_INVERSE_INDEX])) | |
6442 face->tty_reverse_p = 1; | |
6443 | |
6444 /* Map color names to color indices. */ | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6445 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
|
6446 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
|
6447 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6448 /* 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
|
6449 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
|
6450 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
|
6451 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
|
6452 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6453 unsigned long tem = face->foreground; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6454 face->foreground = face->background; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6455 face->background = tem; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6456 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6457 |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6458 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
|
6459 && face->tty_bold_p |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6460 && 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
|
6461 && 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
|
6462 face->tty_bold_p = 0; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6463 |
24995 | 6464 return face; |
6465 } | |
6466 | |
6467 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6468 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
|
6469 Ftty_suppress_bold_inverse_default_colors, |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6470 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
|
6471 "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
|
6472 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
|
6473 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
|
6474 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
|
6475 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
|
6476 is non-nil.") |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6477 (suppress) |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6478 Lisp_Object suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6479 { |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6480 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
|
6481 ++face_change_count; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6482 return suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6483 } |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6484 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6485 |
24995 | 6486 |
6487 /*********************************************************************** | |
6488 Computing Faces | |
6489 ***********************************************************************/ | |
6490 | |
6491 /* Return the ID of the face to use to display character CH with face | |
6492 property PROP on frame F in current_buffer. */ | |
6493 | |
6494 int | |
6495 compute_char_face (f, ch, prop) | |
6496 struct frame *f; | |
6497 int ch; | |
6498 Lisp_Object prop; | |
6499 { | |
6500 int face_id; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6501 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6502 if (NILP (current_buffer->enable_multibyte_characters)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6503 ch = -1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6504 |
24995 | 6505 if (NILP (prop)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6506 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6507 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
|
6508 face_id = FACE_FOR_CHAR (f, face, ch); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6509 } |
24995 | 6510 else |
6511 { | |
6512 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6513 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6514 bcopy (default_face->lface, attrs, sizeof attrs); | |
6515 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
|
6516 face_id = lookup_face (f, attrs, ch, NULL); |
24995 | 6517 } |
6518 | |
6519 return face_id; | |
6520 } | |
6521 | |
6522 | |
6523 /* Return the face ID associated with buffer position POS for | |
6524 displaying ASCII characters. Return in *ENDPTR the position at | |
6525 which a different face is needed, as far as text properties and | |
6526 overlays are concerned. W is a window displaying current_buffer. | |
6527 | |
6528 REGION_BEG, REGION_END delimit the region, so it can be | |
6529 highlighted. | |
6530 | |
6531 LIMIT is a position not to scan beyond. That is to limit the time | |
6532 this function can take. | |
6533 | |
6534 If MOUSE is non-zero, use the character's mouse-face, not its face. | |
6535 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6536 The face returned is suitable for displaying ASCII characters. */ |
24995 | 6537 |
6538 int | |
6539 face_at_buffer_position (w, pos, region_beg, region_end, | |
6540 endptr, limit, mouse) | |
2391 | 6541 struct window *w; |
2342 | 6542 int pos; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6543 int region_beg, region_end; |
2342 | 6544 int *endptr; |
5084
863e092a5891
(compute_char_face): Accept new arg LIMIT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6545 int limit; |
6615
96ddf85642d1
(compute_char_face): New arg MOUSE.
Richard M. Stallman <rms@gnu.org>
parents:
5858
diff
changeset
|
6546 int mouse; |
2342 | 6547 { |
24995 | 6548 struct frame *f = XFRAME (w->frame); |
6549 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
|
6550 Lisp_Object prop, position; |
24995 | 6551 int i, noverlays; |
2342 | 6552 Lisp_Object *overlay_vec; |
2391 | 6553 Lisp_Object frame; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6554 int endpos; |
24995 | 6555 Lisp_Object propname = mouse ? Qmouse_face : Qface; |
6556 Lisp_Object limit1, end; | |
6557 struct face *default_face; | |
6558 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
|
6559 |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6560 /* 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
|
6561 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
|
6562 /* xassert (XBUFFER (w->buffer) == current_buffer); */ |
2391 | 6563 |
9284
a969e0eefaf5
(compute_char_face): Use new accessor macros instead of calling XSET directly.
Karl Heuer <kwzh@gnu.org>
parents:
9186
diff
changeset
|
6564 XSETFRAME (frame, f); |
24995 | 6565 XSETFASTINT (position, pos); |
2342 | 6566 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6567 endpos = ZV; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6568 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
|
6569 endpos = region_beg; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6570 |
24995 | 6571 /* Get the `face' or `mouse_face' text property at POS, and |
6572 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
|
6573 prop = Fget_text_property (position, propname, w->buffer); |
24995 | 6574 XSETFASTINT (limit1, (limit < endpos ? limit : endpos)); |
6575 end = Fnext_single_property_change (position, propname, w->buffer, limit1); | |
6576 if (INTEGERP (end)) | |
6577 endpos = XINT (end); | |
6578 | |
6579 /* 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
|
6580 { |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6581 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
|
6582 int len; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6583 |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6584 /* 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
|
6585 len = 40; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6586 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
|
6587 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
|
6588 &next_overlay, NULL, 0); |
24995 | 6589 |
6590 /* If there are more than 40, make enough space for all, and try | |
6591 again. */ | |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6592 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
|
6593 { |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6594 len = noverlays; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6595 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
|
6596 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
|
6597 &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
|
6598 } |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6599 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6600 if (next_overlay < endpos) |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6601 endpos = next_overlay; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6602 } |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6603 |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6604 *endptr = endpos; |
2342 | 6605 |
24995 | 6606 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
|
6607 |
24995 | 6608 /* Optimize common cases where we can use the default face. */ |
6609 if (noverlays == 0 | |
6610 && NILP (prop) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6611 && !(pos >= region_beg && pos < region_end)) |
24995 | 6612 return DEFAULT_FACE_ID; |
6613 | |
6614 /* Begin with attributes from the default face. */ | |
6615 bcopy (default_face->lface, attrs, sizeof attrs); | |
6616 | |
6617 /* Merge in attributes specified via text properties. */ | |
6618 if (!NILP (prop)) | |
6619 merge_face_vector_with_property (f, attrs, prop); | |
6620 | |
6621 /* 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
|
6622 noverlays = sort_overlays (overlay_vec, noverlays, w); |
2342 | 6623 for (i = 0; i < noverlays; i++) |
6624 { | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6625 Lisp_Object oend; |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6626 int oendpos; |
9186
45bac5feb065
(compute_char_face): Handle list as overlay face property.
Richard M. Stallman <rms@gnu.org>
parents:
9184
diff
changeset
|
6627 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6628 prop = Foverlay_get (overlay_vec[i], propname); |
24995 | 6629 if (!NILP (prop)) |
6630 merge_face_vector_with_property (f, attrs, prop); | |
2342 | 6631 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6632 oend = OVERLAY_END (overlay_vec[i]); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6633 oendpos = OVERLAY_POSITION (oend); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6634 if (oendpos < endpos) |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6635 endpos = oendpos; |
2342 | 6636 } |
6637 | |
24995 | 6638 /* 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
|
6639 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
|
6640 { |
24995 | 6641 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
31178 | 6642 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
|
6643 |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6644 if (region_end < endpos) |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6645 endpos = region_end; |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6646 } |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6647 |
2342 | 6648 *endptr = endpos; |
6649 | |
24995 | 6650 /* 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
|
6651 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6652 return lookup_face (f, attrs, 0, NULL); |
2342 | 6653 } |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6654 |
24995 | 6655 |
6656 /* 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
|
6657 window W, for ASCII characters. |
24995 | 6658 |
6659 If STRING is an overlay string, it comes from position BUFPOS in | |
6660 current_buffer, otherwise BUFPOS is zero to indicate that STRING is | |
6661 not an overlay string. W must display the current buffer. | |
6662 REGION_BEG and REGION_END give the start and end positions of the | |
6663 region; both are -1 if no region is visible. BASE_FACE_ID is the | |
6664 id of the basic face to merge with. It is usually equal to | |
25546 | 6665 DEFAULT_FACE_ID but can be MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID |
24995 | 6666 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
|
6667 |
24995 | 6668 Set *ENDPTR to the next position where to check for faces in |
6669 STRING; -1 if the face is constant from POS to the end of the | |
6670 string. | |
6671 | |
6672 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
|
6673 for displaying ASCII characters. */ |
24995 | 6674 |
6675 int | |
6676 face_at_string_position (w, string, pos, bufpos, region_beg, | |
6677 region_end, endptr, base_face_id) | |
6678 struct window *w; | |
6679 Lisp_Object string; | |
6680 int pos, bufpos; | |
6681 int region_beg, region_end; | |
6682 int *endptr; | |
6683 enum face_id base_face_id; | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6684 { |
24995 | 6685 Lisp_Object prop, position, end, limit; |
6686 struct frame *f = XFRAME (WINDOW_FRAME (w)); | |
6687 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6688 struct face *base_face; | |
6689 int multibyte_p = STRING_MULTIBYTE (string); | |
6690 | |
6691 /* Get the value of the face property at the current position within | |
6692 STRING. Value is nil if there is no face property. */ | |
6693 XSETFASTINT (position, pos); | |
6694 prop = Fget_text_property (position, Qface, string); | |
6695 | |
6696 /* Get the next position at which to check for faces. Value of end | |
6697 is nil if face is constant all the way to the end of the string. | |
6698 Otherwise it is a string position where to check faces next. | |
6699 Limit is the maximum position up to which to check for property | |
6700 changes in Fnext_single_property_change. Strings are usually | |
6701 short, so set the limit to the end of the string. */ | |
6702 XSETFASTINT (limit, XSTRING (string)->size); | |
6703 end = Fnext_single_property_change (position, Qface, string, limit); | |
6704 if (INTEGERP (end)) | |
6705 *endptr = XFASTINT (end); | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6706 else |
24995 | 6707 *endptr = -1; |
6708 | |
6709 base_face = FACE_FROM_ID (f, base_face_id); | |
6710 xassert (base_face); | |
6711 | |
6712 /* Optimize the default case that there is no face property and we | |
6713 are not in the region. */ | |
6714 if (NILP (prop) | |
6715 && (base_face_id != DEFAULT_FACE_ID | |
6716 /* BUFPOS <= 0 means STRING is not an overlay string, so | |
6717 that the region doesn't have to be taken into account. */ | |
6718 || bufpos <= 0 | |
6719 || bufpos < region_beg | |
6720 || bufpos >= region_end) | |
6721 && (multibyte_p | |
6722 /* We can't realize faces for different charsets differently | |
6723 if we don't have fonts, so we can stop here if not working | |
6724 on a window-system frame. */ | |
6725 || !FRAME_WINDOW_P (f) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6726 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0))) |
24995 | 6727 return base_face->id; |
6728 | |
6729 /* Begin with attributes from the base face. */ | |
6730 bcopy (base_face->lface, attrs, sizeof attrs); | |
6731 | |
6732 /* Merge in attributes specified via text properties. */ | |
6733 if (!NILP (prop)) | |
6734 merge_face_vector_with_property (f, attrs, prop); | |
6735 | |
6736 /* If in the region, merge in the region face. */ | |
6737 if (bufpos | |
6738 && bufpos >= region_beg | |
6739 && bufpos < region_end) | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6740 { |
24995 | 6741 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
31178 | 6742 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
|
6743 } |
24995 | 6744 |
6745 /* 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
|
6746 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6747 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
|
6748 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6749 |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6750 |
2336 | 6751 |
24995 | 6752 /*********************************************************************** |
6753 Tests | |
6754 ***********************************************************************/ | |
6755 | |
6756 #if GLYPH_DEBUG | |
6757 | |
6758 /* Print the contents of the realized face FACE to stderr. */ | |
6759 | |
6760 static void | |
6761 dump_realized_face (face) | |
6762 struct face *face; | |
2336 | 6763 { |
24995 | 6764 fprintf (stderr, "ID: %d\n", face->id); |
6765 #ifdef HAVE_X_WINDOWS | |
6766 fprintf (stderr, "gc: %d\n", (int) face->gc); | |
6767 #endif | |
6768 fprintf (stderr, "foreground: 0x%lx (%s)\n", | |
6769 face->foreground, | |
6770 XSTRING (face->lface[LFACE_FOREGROUND_INDEX])->data); | |
6771 fprintf (stderr, "background: 0x%lx (%s)\n", | |
6772 face->background, | |
6773 XSTRING (face->lface[LFACE_BACKGROUND_INDEX])->data); | |
6774 fprintf (stderr, "font_name: %s (%s)\n", | |
6775 face->font_name, | |
6776 XSTRING (face->lface[LFACE_FAMILY_INDEX])->data); | |
6777 #ifdef HAVE_X_WINDOWS | |
6778 fprintf (stderr, "font = %p\n", face->font); | |
6779 #endif | |
6780 fprintf (stderr, "font_info_id = %d\n", face->font_info_id); | |
6781 fprintf (stderr, "fontset: %d\n", face->fontset); | |
6782 fprintf (stderr, "underline: %d (%s)\n", | |
6783 face->underline_p, | |
6784 XSTRING (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))->data); | |
6785 fprintf (stderr, "hash: %d\n", face->hash); | |
6786 fprintf (stderr, "charset: %d\n", face->charset); | |
6787 } | |
6788 | |
6789 | |
6790 DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, "") | |
6791 (n) | |
6792 Lisp_Object n; | |
6793 { | |
6794 if (NILP (n)) | |
2336 | 6795 { |
24995 | 6796 int i; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6797 |
24995 | 6798 fprintf (stderr, "font selection order: "); |
6799 for (i = 0; i < DIM (font_sort_order); ++i) | |
6800 fprintf (stderr, "%d ", font_sort_order[i]); | |
6801 fprintf (stderr, "\n"); | |
6802 | |
6803 fprintf (stderr, "alternative fonts: "); | |
6804 debug_print (Vface_alternative_font_family_alist); | |
6805 fprintf (stderr, "\n"); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6806 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6807 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i) |
24995 | 6808 Fdump_face (make_number (i)); |
2336 | 6809 } |
24995 | 6810 else |
6811 { | |
6812 struct face *face; | |
6813 CHECK_NUMBER (n, 0); | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6814 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n)); |
24995 | 6815 if (face == NULL) |
6816 error ("Not a valid face"); | |
6817 dump_realized_face (face); | |
6818 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6819 |
2336 | 6820 return Qnil; |
6821 } | |
6822 | |
6823 | |
24995 | 6824 DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources, |
6825 0, 0, 0, "") | |
6826 () | |
2336 | 6827 { |
24995 | 6828 fprintf (stderr, "number of colors = %d\n", ncolors_allocated); |
6829 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated); | |
6830 fprintf (stderr, "number of GCs = %d\n", ngcs); | |
2336 | 6831 return Qnil; |
6832 } | |
24995 | 6833 |
6834 #endif /* GLYPH_DEBUG != 0 */ | |
6835 | |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6836 |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6837 |
24995 | 6838 /*********************************************************************** |
6839 Initialization | |
6840 ***********************************************************************/ | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
6841 |
2336 | 6842 void |
2391 | 6843 syms_of_xfaces () |
2336 | 6844 { |
2391 | 6845 Qface = intern ("face"); |
6846 staticpro (&Qface); | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6847 Qbitmap_spec_p = intern ("bitmap-spec-p"); |
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6848 staticpro (&Qbitmap_spec_p); |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6849 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
|
6850 staticpro (&Qframe_update_face_colors); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6851 |
24995 | 6852 /* Lisp face attribute keywords. */ |
6853 QCfamily = intern (":family"); | |
6854 staticpro (&QCfamily); | |
6855 QCheight = intern (":height"); | |
6856 staticpro (&QCheight); | |
6857 QCweight = intern (":weight"); | |
6858 staticpro (&QCweight); | |
6859 QCslant = intern (":slant"); | |
6860 staticpro (&QCslant); | |
6861 QCunderline = intern (":underline"); | |
6862 staticpro (&QCunderline); | |
6863 QCinverse_video = intern (":inverse-video"); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6864 staticpro (&QCinverse_video); |
24995 | 6865 QCreverse_video = intern (":reverse-video"); |
6866 staticpro (&QCreverse_video); | |
6867 QCforeground = intern (":foreground"); | |
6868 staticpro (&QCforeground); | |
6869 QCbackground = intern (":background"); | |
6870 staticpro (&QCbackground); | |
6871 QCstipple = intern (":stipple");; | |
6872 staticpro (&QCstipple); | |
6873 QCwidth = intern (":width"); | |
6874 staticpro (&QCwidth); | |
6875 QCfont = intern (":font"); | |
6876 staticpro (&QCfont); | |
6877 QCbold = intern (":bold"); | |
6878 staticpro (&QCbold); | |
6879 QCitalic = intern (":italic"); | |
6880 staticpro (&QCitalic); | |
6881 QCoverline = intern (":overline"); | |
6882 staticpro (&QCoverline); | |
6883 QCstrike_through = intern (":strike-through"); | |
6884 staticpro (&QCstrike_through); | |
6885 QCbox = intern (":box"); | |
6886 staticpro (&QCbox); | |
31178 | 6887 QCinherit = intern (":inherit"); |
6888 staticpro (&QCinherit); | |
24995 | 6889 |
6890 /* Symbols used for Lisp face attribute values. */ | |
6891 QCcolor = intern (":color"); | |
6892 staticpro (&QCcolor); | |
6893 QCline_width = intern (":line-width"); | |
6894 staticpro (&QCline_width); | |
6895 QCstyle = intern (":style"); | |
6896 staticpro (&QCstyle); | |
6897 Qreleased_button = intern ("released-button"); | |
6898 staticpro (&Qreleased_button); | |
6899 Qpressed_button = intern ("pressed-button"); | |
6900 staticpro (&Qpressed_button); | |
6901 Qnormal = intern ("normal"); | |
6902 staticpro (&Qnormal); | |
6903 Qultra_light = intern ("ultra-light"); | |
6904 staticpro (&Qultra_light); | |
6905 Qextra_light = intern ("extra-light"); | |
6906 staticpro (&Qextra_light); | |
6907 Qlight = intern ("light"); | |
6908 staticpro (&Qlight); | |
6909 Qsemi_light = intern ("semi-light"); | |
6910 staticpro (&Qsemi_light); | |
6911 Qsemi_bold = intern ("semi-bold"); | |
6912 staticpro (&Qsemi_bold); | |
6913 Qbold = intern ("bold"); | |
6914 staticpro (&Qbold); | |
6915 Qextra_bold = intern ("extra-bold"); | |
6916 staticpro (&Qextra_bold); | |
6917 Qultra_bold = intern ("ultra-bold"); | |
6918 staticpro (&Qultra_bold); | |
6919 Qoblique = intern ("oblique"); | |
6920 staticpro (&Qoblique); | |
6921 Qitalic = intern ("italic"); | |
6922 staticpro (&Qitalic); | |
6923 Qreverse_oblique = intern ("reverse-oblique"); | |
6924 staticpro (&Qreverse_oblique); | |
6925 Qreverse_italic = intern ("reverse-italic"); | |
6926 staticpro (&Qreverse_italic); | |
6927 Qultra_condensed = intern ("ultra-condensed"); | |
6928 staticpro (&Qultra_condensed); | |
6929 Qextra_condensed = intern ("extra-condensed"); | |
6930 staticpro (&Qextra_condensed); | |
6931 Qcondensed = intern ("condensed"); | |
6932 staticpro (&Qcondensed); | |
6933 Qsemi_condensed = intern ("semi-condensed"); | |
6934 staticpro (&Qsemi_condensed); | |
6935 Qsemi_expanded = intern ("semi-expanded"); | |
6936 staticpro (&Qsemi_expanded); | |
6937 Qexpanded = intern ("expanded"); | |
6938 staticpro (&Qexpanded); | |
6939 Qextra_expanded = intern ("extra-expanded"); | |
6940 staticpro (&Qextra_expanded); | |
6941 Qultra_expanded = intern ("ultra-expanded"); | |
6942 staticpro (&Qultra_expanded); | |
6943 Qbackground_color = intern ("background-color"); | |
6944 staticpro (&Qbackground_color); | |
6945 Qforeground_color = intern ("foreground-color"); | |
6946 staticpro (&Qforeground_color); | |
6947 Qunspecified = intern ("unspecified"); | |
6948 staticpro (&Qunspecified); | |
6949 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6950 Qface_alias = intern ("face-alias"); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6951 staticpro (&Qface_alias); |
24995 | 6952 Qdefault = intern ("default"); |
6953 staticpro (&Qdefault); | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25389
diff
changeset
|
6954 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
|
6955 staticpro (&Qtool_bar); |
24995 | 6956 Qregion = intern ("region"); |
6957 staticpro (&Qregion); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6958 Qfringe = intern ("fringe"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6959 staticpro (&Qfringe); |
25546 | 6960 Qheader_line = intern ("header-line"); |
6961 staticpro (&Qheader_line); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6962 Qscroll_bar = intern ("scroll-bar"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6963 staticpro (&Qscroll_bar); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
6964 Qmenu = intern ("menu"); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
6965 staticpro (&Qmenu); |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6966 Qcursor = intern ("cursor"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6967 staticpro (&Qcursor); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6968 Qborder = intern ("border"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6969 staticpro (&Qborder); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6970 Qmouse = intern ("mouse"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6971 staticpro (&Qmouse); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6972 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
|
6973 staticpro (&Qtty_color_desc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6974 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
|
6975 staticpro (&Qtty_color_by_index); |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6976 Qtty_color_alist = intern ("tty-color-alist"); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6977 staticpro (&Qtty_color_alist); |
24995 | 6978 |
31449
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
6979 Vparam_value_alist = Fcons (Fcons (Qnil, Qnil), Qnil); |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
6980 staticpro (&Vparam_value_alist); |
30304
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
6981 Vface_alternative_font_family_alist = Qnil; |
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
6982 staticpro (&Vface_alternative_font_family_alist); |
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
6983 |
24995 | 6984 defsubr (&Sinternal_make_lisp_face); |
6985 defsubr (&Sinternal_lisp_face_p); | |
6986 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
|
6987 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 6988 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
|
6989 #endif |
27120
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
6990 defsubr (&Scolor_gray_p); |
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
6991 defsubr (&Scolor_supported_p); |
24995 | 6992 defsubr (&Sinternal_get_lisp_face_attribute); |
6993 defsubr (&Sinternal_lisp_face_attribute_values); | |
6994 defsubr (&Sinternal_lisp_face_equal_p); | |
6995 defsubr (&Sinternal_lisp_face_empty_p); | |
6996 defsubr (&Sinternal_copy_lisp_face); | |
6997 defsubr (&Sinternal_merge_in_global_face); | |
6998 defsubr (&Sface_font); | |
6999 defsubr (&Sframe_face_alist); | |
7000 defsubr (&Sinternal_set_font_selection_order); | |
7001 defsubr (&Sinternal_set_alternative_font_family_alist); | |
7002 #if GLYPH_DEBUG | |
7003 defsubr (&Sdump_face); | |
7004 defsubr (&Sshow_face_resources); | |
7005 #endif /* GLYPH_DEBUG */ | |
7006 defsubr (&Sclear_face_cache); | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
7007 defsubr (&Stty_suppress_bold_inverse_default_colors); |
24995 | 7008 |
29711
913fab478495
(syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
Gerd Moellmann <gerd@gnu.org>
parents:
29599
diff
changeset
|
7009 #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
|
7010 defsubr (&Sdump_colors); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
7011 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
7012 |
25270 | 7013 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit, |
7014 "*Limit for font matching.\n\ | |
7015 If an integer > 0, font matching functions won't load more than\n\ | |
7016 that number of fonts when searching for a matching font."); | |
7017 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT); | |
7018 | |
24995 | 7019 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults, |
7020 "List of global face definitions (for internal use only.)"); | |
7021 Vface_new_frame_defaults = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
7022 |
24995 | 7023 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple, |
7024 "*Default stipple pattern used on monochrome displays.\n\ | |
7025 This stipple pattern is used on monochrome displays\n\ | |
7026 instead of shades of gray for a face background color.\n\ | |
7027 See `set-face-stipple' for possible values for this variable."); | |
7028 Vface_default_stipple = build_string ("gray3"); | |
7029 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7030 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
|
7031 "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
|
7032 Vtty_defined_color_alist = Qnil; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7033 |
24995 | 7034 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed, |
7035 "Allowed scalable fonts.\n\ | |
7036 A value of nil means don't allow any scalable fonts.\n\ | |
7037 A value of t means allow any scalable font.\n\ | |
7038 Otherwise, value must be a list of regular expressions. A font may be\n\ | |
7039 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
|
7040 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7041 /* 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
|
7042 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
|
7043 Vscalable_fonts_allowed = Qt; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7044 #else |
24995 | 7045 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
|
7046 #endif |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
7047 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7048 #ifdef HAVE_WINDOW_SYSTEM |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
7049 defsubr (&Sbitmap_spec_p); |
24995 | 7050 defsubr (&Sx_list_fonts); |
7051 defsubr (&Sinternal_face_x_get_resource); | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
7052 defsubr (&Sx_family_fonts); |
24995 | 7053 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
|
7054 #endif /* HAVE_WINDOW_SYSTEM */ |
2336 | 7055 } |