Mercurial > emacs
annotate src/xfaces.c @ 32994:aa53b96ab835
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Fri, 27 Oct 2000 23:14:59 +0000 |
parents | 923b8d6d8277 |
children | ca31e3965686 |
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 |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
221 #ifdef macintosh |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
222 #include "macterm.h" |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
223 #define x_display_info mac_display_info |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
224 #define check_x check_mac |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
225 |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
226 extern XGCValues *XCreateGC (void *, WindowPtr, unsigned long, XGCValues *); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
227 |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
228 static INLINE GC |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
229 x_create_gc (f, mask, xgcv) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
230 struct frame *f; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
231 unsigned long mask; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
232 XGCValues *xgcv; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
233 { |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
234 GC gc; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
235 gc = XCreateGC (FRAME_MAC_DISPLAY (f), FRAME_MAC_WINDOW (f), mask, xgcv); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
236 return gc; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
237 } |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
238 |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
239 static INLINE void |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
240 x_free_gc (f, gc) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
241 struct frame *f; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
242 GC gc; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
243 { |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
244 XFreeGC (FRAME_MAC_DISPLAY (f), gc); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
245 } |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
246 #endif |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
247 |
2336 | 248 #include "buffer.h" |
2391 | 249 #include "dispextern.h" |
2438 | 250 #include "blockinput.h" |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
251 #include "window.h" |
8848 | 252 #include "intervals.h" |
2336 | 253 |
9572 | 254 #ifdef HAVE_X_WINDOWS |
24995 | 255 |
256 /* 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
|
257 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
|
258 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
|
259 #included. */ |
24995 | 260 |
3436
291f28da7ea1
Test XOS_NEEDS_TIME_H, not HPUX, for including time.hj.
Richard M. Stallman <rms@gnu.org>
parents:
3401
diff
changeset
|
261 #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
|
262 #include <time.h> |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
263 #undef USG |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
264 #include <X11/Xos.h> |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
265 #define USG |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
266 #define __TIMEVAL__ |
24995 | 267 #else /* not XOS_NEEDS_TIME_H */ |
2336 | 268 #include <X11/Xos.h> |
24995 | 269 #endif /* not XOS_NEEDS_TIME_H */ |
270 | |
9572 | 271 #endif /* HAVE_X_WINDOWS */ |
24995 | 272 |
273 #include <stdio.h> | |
274 #include <ctype.h> | |
275 #include "keyboard.h" | |
276 | |
277 #ifndef max | |
278 #define max(A, B) ((A) > (B) ? (A) : (B)) | |
279 #define min(A, B) ((A) < (B) ? (A) : (B)) | |
280 #define abs(X) ((X) < 0 ? -(X) : (X)) | |
281 #endif | |
282 | |
283 /* Non-zero if face attribute ATTR is unspecified. */ | |
284 | |
285 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified) | |
286 | |
287 /* Value is the number of elements of VECTOR. */ | |
288 | |
289 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR)) | |
290 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
291 /* Make a copy of string S on the stack using alloca. Value is a pointer |
24995 | 292 to the copy. */ |
293 | |
294 #define STRDUPA(S) strcpy ((char *) alloca (strlen ((S)) + 1), (S)) | |
295 | |
296 /* Make a copy of the contents of Lisp string S on the stack using | |
297 alloca. Value is a pointer to the copy. */ | |
298 | |
299 #define LSTRDUPA(S) STRDUPA (XSTRING ((S))->data) | |
300 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
301 /* Size of hash table of realized faces in face caches (should be a |
24995 | 302 prime number). */ |
303 | |
304 #define FACE_CACHE_BUCKETS_SIZE 1001 | |
305 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
306 /* 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
|
307 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
308 #ifndef HAVE_X_WINDOWS |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
309 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
310 typedef struct |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
311 { |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
312 unsigned long pixel; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
313 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
|
314 char flags; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
315 char pad; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
316 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
317 XColor; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
318 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
319 #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
|
320 |
24995 | 321 /* Keyword symbols used for face attribute names. */ |
322 | |
323 Lisp_Object QCfamily, QCheight, QCweight, QCslant, QCunderline; | |
324 Lisp_Object QCinverse_video, QCforeground, QCbackground, QCstipple; | |
325 Lisp_Object QCwidth, QCfont, QCbold, QCitalic; | |
326 Lisp_Object QCreverse_video; | |
31178 | 327 Lisp_Object QCoverline, QCstrike_through, QCbox, QCinherit; |
24995 | 328 |
329 /* Symbols used for attribute values. */ | |
330 | |
331 Lisp_Object Qnormal, Qbold, Qultra_light, Qextra_light, Qlight; | |
332 Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold; | |
333 Lisp_Object Qoblique, Qitalic, Qreverse_oblique, Qreverse_italic; | |
334 Lisp_Object Qultra_condensed, Qextra_condensed, Qcondensed; | |
335 Lisp_Object Qsemi_condensed, Qsemi_expanded, Qexpanded, Qextra_expanded; | |
336 Lisp_Object Qultra_expanded; | |
337 Lisp_Object Qreleased_button, Qpressed_button; | |
338 Lisp_Object QCstyle, QCcolor, QCline_width; | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
339 Lisp_Object Qunspecified; |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
340 |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
341 char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg"; |
24995 | 342 |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
343 /* 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
|
344 has changed, frame_update_face_colors. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
345 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
346 Lisp_Object Qframe_update_face_colors; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
347 |
24995 | 348 /* Names of basic faces. */ |
349 | |
26574
5510d0cc07c3
Don't duplicate Qmode_line definition done elsewhere.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
350 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
|
351 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
|
352 extern Lisp_Object Qmode_line; |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
353 |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
354 /* 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
|
355 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
|
356 the aliased face. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
357 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
358 Lisp_Object Qface_alias; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
359 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
360 /* Names of frame parameters related to faces. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
361 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
362 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
|
363 extern Lisp_Object Qborder_color, Qcursor_color, Qmouse_color; |
24995 | 364 |
365 /* Default stipple pattern used on monochrome displays. This stipple | |
366 pattern is used on monochrome displays instead of shades of gray | |
367 for a face background color. See `set-face-stipple' for possible | |
368 values for this variable. */ | |
369 | |
370 Lisp_Object Vface_default_stipple; | |
371 | |
372 /* Alist of alternative font families. Each element is of the form | |
373 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded, | |
374 try FAMILY1, then FAMILY2, ... */ | |
375 | |
376 Lisp_Object Vface_alternative_font_family_alist; | |
377 | |
378 /* Allowed scalable fonts. A value of nil means don't allow any | |
379 scalable fonts. A value of t means allow the use of any scalable | |
380 font. Otherwise, value must be a list of regular expressions. A | |
381 font may be scaled if its name matches a regular expression in the | |
382 list. */ | |
383 | |
384 Lisp_Object Vscalable_fonts_allowed; | |
385 | |
25270 | 386 /* Maximum number of fonts to consider in font_list. If not an |
387 integer > 0, DEFAULT_FONT_LIST_LIMIT is used instead. */ | |
388 | |
389 Lisp_Object Vfont_list_limit; | |
390 #define DEFAULT_FONT_LIST_LIMIT 100 | |
391 | |
24995 | 392 /* The symbols `foreground-color' and `background-color' which can be |
393 used as part of a `face' property. This is for compatibility with | |
394 Emacs 20.2. */ | |
395 | |
396 Lisp_Object Qforeground_color, Qbackground_color; | |
397 | |
398 /* The symbols `face' and `mouse-face' used as text properties. */ | |
2342 | 399 |
23730
c71c3ac4b80a
(Qmouse_face): Replace definition with extern decl.
Richard M. Stallman <rms@gnu.org>
parents:
21766
diff
changeset
|
400 Lisp_Object Qface; |
24995 | 401 extern Lisp_Object Qmouse_face; |
402 | |
403 /* Error symbol for wrong_type_argument in load_pixmap. */ | |
404 | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
405 Lisp_Object Qbitmap_spec_p; |
2391 | 406 |
24995 | 407 /* Alist of global face definitions. Each element is of the form |
408 (FACE . LFACE) where FACE is a symbol naming a face and LFACE | |
409 is a Lisp vector of face attributes. These faces are used | |
410 to initialize faces for new frames. */ | |
411 | |
412 Lisp_Object Vface_new_frame_defaults; | |
413 | |
414 /* The next ID to assign to Lisp faces. */ | |
415 | |
416 static int next_lface_id; | |
417 | |
418 /* A vector mapping Lisp face Id's to face names. */ | |
419 | |
420 static Lisp_Object *lface_id_to_name; | |
421 static int lface_id_to_name_size; | |
422 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
423 /* 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
|
424 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
425 Lisp_Object Qtty_color_desc, Qtty_color_by_index; |
24995 | 426 |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
427 /* 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
|
428 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
429 Lisp_Object Qtty_color_alist; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
430 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
431 /* 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
|
432 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
433 Lisp_Object Vtty_defined_color_alist; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
434 |
24995 | 435 /* Counter for calls to clear_face_cache. If this counter reaches |
436 CLEAR_FONT_TABLE_COUNT, and a frame has more than | |
437 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */ | |
438 | |
439 static int clear_font_table_count; | |
440 #define CLEAR_FONT_TABLE_COUNT 100 | |
441 #define CLEAR_FONT_TABLE_NFONTS 10 | |
442 | |
443 /* Non-zero means face attributes have been changed since the last | |
444 redisplay. Used in redisplay_internal. */ | |
445 | |
446 int face_change_count; | |
447 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
448 /* 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
|
449 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
|
450 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
|
451 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
|
452 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
453 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
|
454 |
31449
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
455 /* 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
|
456 Finternal_set_lisp_face_attribute. */ |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
457 |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
458 static Lisp_Object Vparam_value_alist; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
459 |
24995 | 460 /* The total number of colors currently allocated. */ |
461 | |
462 #if GLYPH_DEBUG | |
463 static int ncolors_allocated; | |
464 static int npixmaps_allocated; | |
465 static int ngcs; | |
466 #endif | |
467 | |
468 | |
2336 | 469 |
24995 | 470 /* Function prototypes. */ |
471 | |
472 struct font_name; | |
473 struct table_entry; | |
474 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
475 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
|
476 enum lface_attribute_index, int *)); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
477 static Lisp_Object resolve_face_name P_ ((Lisp_Object)); |
24995 | 478 static int may_use_scalable_font_p P_ ((struct font_name *, char *)); |
479 static void set_font_frame_param P_ ((Lisp_Object, Lisp_Object)); | |
480 static int better_font_p P_ ((int *, struct font_name *, struct font_name *, | |
481 int)); | |
482 static int first_font_matching P_ ((struct frame *f, char *, | |
483 struct font_name *)); | |
484 static int x_face_list_fonts P_ ((struct frame *, char *, | |
485 struct font_name *, int, int, int)); | |
486 static int font_scalable_p P_ ((struct font_name *)); | |
487 static int get_lface_attributes P_ ((struct frame *, Lisp_Object, Lisp_Object *, int)); | |
488 static int load_pixmap P_ ((struct frame *, Lisp_Object, unsigned *, unsigned *)); | |
489 static unsigned char *xstrlwr P_ ((unsigned char *)); | |
490 static void signal_error P_ ((char *, Lisp_Object)); | |
491 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
|
492 static void load_face_font P_ ((struct frame *, struct face *, int)); |
24995 | 493 static void load_face_colors P_ ((struct frame *, struct face *, Lisp_Object *)); |
494 static void free_face_colors P_ ((struct frame *, struct face *)); | |
495 static int face_color_gray_p P_ ((struct frame *, char *)); | |
496 static char *build_font_name P_ ((struct font_name *)); | |
497 static void free_font_names P_ ((struct font_name *, int)); | |
498 static int sorted_font_list P_ ((struct frame *, char *, | |
499 int (*cmpfn) P_ ((const void *, const void *)), | |
500 struct font_name **)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
501 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
|
502 Lisp_Object, struct font_name **)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
503 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
|
504 Lisp_Object, Lisp_Object, struct font_name **)); |
24995 | 505 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
|
506 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
|
507 struct face *, int)); |
24995 | 508 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
|
509 Lisp_Object *, int, struct face *)); |
24995 | 510 static struct face *realize_tty_face P_ ((struct face_cache *, |
511 Lisp_Object *, int)); | |
512 static int realize_basic_faces P_ ((struct frame *)); | |
513 static int realize_default_face P_ ((struct frame *)); | |
514 static void realize_named_face P_ ((struct frame *, Lisp_Object, int)); | |
515 static int lface_fully_specified_p P_ ((Lisp_Object *)); | |
516 static int lface_equal_p P_ ((Lisp_Object *, Lisp_Object *)); | |
517 static unsigned hash_string_case_insensitive P_ ((Lisp_Object)); | |
518 static unsigned lface_hash P_ ((Lisp_Object *)); | |
519 static int lface_same_font_attributes_p P_ ((Lisp_Object *, Lisp_Object *)); | |
520 static struct face_cache *make_face_cache P_ ((struct frame *)); | |
521 static void free_realized_face P_ ((struct frame *, struct face *)); | |
522 static void clear_face_gcs P_ ((struct face_cache *)); | |
523 static void free_face_cache P_ ((struct face_cache *)); | |
524 static int face_numeric_weight P_ ((Lisp_Object)); | |
525 static int face_numeric_slant P_ ((Lisp_Object)); | |
526 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
|
527 static int face_fontset P_ ((Lisp_Object *)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
528 static char *choose_face_font P_ ((struct frame *, Lisp_Object *, int, int)); |
31178 | 529 static void merge_face_vectors P_ ((struct frame *, Lisp_Object *, Lisp_Object*, Lisp_Object)); |
530 static void merge_face_inheritance P_ ((struct frame *f, Lisp_Object, | |
531 Lisp_Object *, Lisp_Object)); | |
24995 | 532 static void merge_face_vector_with_property P_ ((struct frame *, Lisp_Object *, |
533 Lisp_Object)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
534 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
|
535 Lisp_Object, int, int)); |
24995 | 536 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
|
537 static struct face *make_realized_face P_ ((Lisp_Object *)); |
24995 | 538 static void free_realized_faces P_ ((struct face_cache *)); |
539 static char *best_matching_font P_ ((struct frame *, Lisp_Object *, | |
540 struct font_name *, int)); | |
541 static void cache_face P_ ((struct face_cache *, struct face *, unsigned)); | |
542 static void uncache_face P_ ((struct face_cache *, struct face *)); | |
543 static int xlfd_numeric_slant P_ ((struct font_name *)); | |
544 static int xlfd_numeric_weight P_ ((struct font_name *)); | |
545 static int xlfd_numeric_swidth P_ ((struct font_name *)); | |
546 static Lisp_Object xlfd_symbolic_slant P_ ((struct font_name *)); | |
547 static Lisp_Object xlfd_symbolic_weight P_ ((struct font_name *)); | |
548 static Lisp_Object xlfd_symbolic_swidth P_ ((struct font_name *)); | |
549 static int xlfd_fixed_p P_ ((struct font_name *)); | |
550 static int xlfd_numeric_value P_ ((struct table_entry *, int, struct font_name *, | |
551 int, int)); | |
552 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
|
553 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
|
554 Lisp_Object)); |
24995 | 555 static struct table_entry *xlfd_lookup_field_contents P_ ((struct table_entry *, int, |
556 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
|
557 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
558 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 559 |
560 static int split_font_name P_ ((struct frame *, struct font_name *, int)); | |
561 static int xlfd_point_size P_ ((struct frame *, struct font_name *)); | |
562 static void sort_fonts P_ ((struct frame *, struct font_name *, int, | |
563 int (*cmpfn) P_ ((const void *, const void *)))); | |
564 static GC x_create_gc P_ ((struct frame *, unsigned long, XGCValues *)); | |
565 static void x_free_gc P_ ((struct frame *, GC)); | |
566 static void clear_font_table P_ ((struct frame *)); | |
567 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
568 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
569 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
|
570 #endif /* WINDOWSNT */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
571 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
572 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 573 |
574 | |
575 /*********************************************************************** | |
576 Utilities | |
577 ***********************************************************************/ | |
578 | |
579 #ifdef HAVE_X_WINDOWS | |
580 | |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
581 #ifdef DEBUG_X_COLORS |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
582 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
583 /* 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
|
584 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
|
585 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
|
586 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
|
587 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
|
588 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
|
589 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
|
590 single display/screen. --gerd. */ |
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 /* Reference counts for pixel colors. */ |
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 int color_count[256]; |
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 /* Register color PIXEL as allocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
597 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
598 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
599 register_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
600 unsigned long pixel; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
601 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
602 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
603 ++color_count[pixel]; |
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 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
606 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
607 /* Register color PIXEL as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
608 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
609 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
610 unregister_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
611 unsigned long pixel; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
612 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
613 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
614 if (color_count[pixel] > 0) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
615 --color_count[pixel]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
616 else |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
617 abort (); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
618 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
619 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
620 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
621 /* Register N colors from PIXELS as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
622 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
623 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
624 unregister_colors (pixels, n) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
625 unsigned long *pixels; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
626 int n; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
627 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
628 int i; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
629 for (i = 0; i < n; ++i) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
630 unregister_color (pixels[i]); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
631 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
632 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
633 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
634 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
|
635 "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
|
636 () |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
637 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
638 int i, n; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
639 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
640 fputc ('\n', stderr); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
641 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
642 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
|
643 if (color_count[i]) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
644 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
645 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
|
646 ++n; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
647 if (n % 5 == 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
648 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
649 else |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
650 fputc ('\t', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
651 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
652 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
653 if (n % 5 != 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
654 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
655 return Qnil; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
656 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
657 |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
658 #endif /* DEBUG_X_COLORS */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
659 |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
660 |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
661 /* 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
|
662 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
|
663 is called. */ |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
664 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
665 void |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
666 x_free_colors (f, pixels, npixels) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
667 struct frame *f; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
668 unsigned long *pixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
669 int npixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
670 { |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
671 int class = FRAME_X_DISPLAY_INFO (f)->visual->class; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
672 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
673 /* 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
|
674 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
|
675 if (class != StaticColor && class != StaticGray && class != TrueColor) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
676 { |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
677 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
|
678 pixels, npixels, 0); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
679 #ifdef DEBUG_X_COLORS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
680 unregister_colors (pixels, npixels); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
681 #endif |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
682 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
683 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
684 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
685 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
686 /* 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
|
687 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
|
688 is called. */ |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
689 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
690 void |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
691 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
|
692 Display *dpy; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
693 Screen *screen; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
694 Colormap cmap; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
695 unsigned long *pixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
696 int npixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
697 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
698 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
|
699 int class = dpyinfo->visual->class; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
700 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
701 /* 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
|
702 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
|
703 if (class != StaticColor && class != StaticGray && class != TrueColor) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
704 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
705 XFreeColors (dpy, cmap, pixels, npixels, 0); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
706 #ifdef DEBUG_X_COLORS |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
707 unregister_colors (pixels, npixels); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
708 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
709 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
710 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
711 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
712 |
24995 | 713 /* Create and return a GC for use on frame F. GC values and mask |
714 are given by XGCV and MASK. */ | |
715 | |
716 static INLINE GC | |
717 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
|
718 struct frame *f; |
24995 | 719 unsigned long mask; |
720 XGCValues *xgcv; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
721 { |
2336 | 722 GC gc; |
24995 | 723 BLOCK_INPUT; |
724 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv); | |
725 UNBLOCK_INPUT; | |
726 IF_DEBUG (++ngcs); | |
727 return gc; | |
728 } | |
729 | |
730 | |
731 /* Free GC which was used on frame F. */ | |
732 | |
733 static INLINE void | |
734 x_free_gc (f, gc) | |
735 struct frame *f; | |
736 GC gc; | |
737 { | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
738 BLOCK_INPUT; |
24995 | 739 xassert (--ngcs >= 0); |
740 XFreeGC (FRAME_X_DISPLAY (f), gc); | |
741 UNBLOCK_INPUT; | |
742 } | |
743 | |
744 #endif /* HAVE_X_WINDOWS */ | |
745 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
746 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
747 /* W32 emulation of GCs */ |
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 static INLINE GC |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
750 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
|
751 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
752 unsigned long mask; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
753 XGCValues *xgcv; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
754 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
755 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
756 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
757 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
|
758 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
759 IF_DEBUG (++ngcs); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
760 return gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
761 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
762 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
763 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
764 /* 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
|
765 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
766 static INLINE void |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
767 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
|
768 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
769 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
770 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
771 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
772 xassert (--ngcs >= 0); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
773 xfree (gc); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
774 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
775 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
776 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
777 #endif /* WINDOWSNT */ |
24995 | 778 |
779 /* Like stricmp. Used to compare parts of font names which are in | |
780 ISO8859-1. */ | |
781 | |
782 int | |
783 xstricmp (s1, s2) | |
784 unsigned char *s1, *s2; | |
785 { | |
786 while (*s1 && *s2) | |
787 { | |
788 unsigned char c1 = tolower (*s1); | |
789 unsigned char c2 = tolower (*s2); | |
790 if (c1 != c2) | |
791 return c1 < c2 ? -1 : 1; | |
792 ++s1, ++s2; | |
793 } | |
794 | |
795 if (*s1 == 0) | |
796 return *s2 == 0 ? 0 : -1; | |
797 return 1; | |
798 } | |
799 | |
800 | |
801 /* Like strlwr, which might not always be available. */ | |
802 | |
803 static unsigned char * | |
804 xstrlwr (s) | |
805 unsigned char *s; | |
806 { | |
807 unsigned char *p = s; | |
808 | |
809 for (p = s; *p; ++p) | |
810 *p = tolower (*p); | |
811 | |
812 return s; | |
813 } | |
814 | |
815 | |
816 /* Signal `error' with message S, and additional argument ARG. */ | |
817 | |
818 static void | |
819 signal_error (s, arg) | |
820 char *s; | |
821 Lisp_Object arg; | |
822 { | |
823 Fsignal (Qerror, Fcons (build_string (s), Fcons (arg, Qnil))); | |
824 } | |
825 | |
826 | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
827 /* 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
|
828 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
|
829 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
|
830 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
|
831 Lisp function definitions. */ |
24995 | 832 |
833 static INLINE struct frame * | |
834 frame_or_selected_frame (frame, nparam) | |
835 Lisp_Object frame; | |
836 int nparam; | |
837 { | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
838 if (NILP (frame)) |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
839 frame = selected_frame; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
840 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
841 CHECK_LIVE_FRAME (frame, nparam); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
842 return XFRAME (frame); |
24995 | 843 } |
844 | |
845 | |
846 /*********************************************************************** | |
847 Frames and faces | |
848 ***********************************************************************/ | |
849 | |
850 /* 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
|
851 |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
852 void |
24995 | 853 init_frame_faces (f) |
854 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
|
855 { |
24995 | 856 /* Make a face cache, if F doesn't have one. */ |
857 if (FRAME_FACE_CACHE (f) == NULL) | |
858 FRAME_FACE_CACHE (f) = make_face_cache (f); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
859 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
860 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 861 /* 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
|
862 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
|
863 { |
24995 | 864 if (FRAME_X_IMAGE_CACHE (f) == NULL) |
865 FRAME_X_IMAGE_CACHE (f) = make_image_cache (); | |
866 ++FRAME_X_IMAGE_CACHE (f)->refcount; | |
867 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
868 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 869 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
870 /* Realize basic faces. Must have enough information in frame |
24995 | 871 parameters to realize basic faces at this point. */ |
872 #ifdef HAVE_X_WINDOWS | |
873 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f)) | |
874 #endif | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
875 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
876 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
|
877 #endif |
24995 | 878 if (!realize_basic_faces (f)) |
879 abort (); | |
880 } | |
881 | |
882 | |
883 /* Free face cache of frame F. Called from Fdelete_frame. */ | |
884 | |
885 void | |
886 free_frame_faces (f) | |
887 struct frame *f; | |
888 { | |
889 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
|
890 |
24995 | 891 if (face_cache) |
892 { | |
893 free_face_cache (face_cache); | |
894 FRAME_FACE_CACHE (f) = NULL; | |
895 } | |
896 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
897 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
898 if (FRAME_WINDOW_P (f)) |
24995 | 899 { |
900 struct image_cache *image_cache = FRAME_X_IMAGE_CACHE (f); | |
901 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
|
902 { |
24995 | 903 --image_cache->refcount; |
904 if (image_cache->refcount == 0) | |
905 free_image_cache (f); | |
906 } | |
907 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
908 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 909 } |
910 | |
911 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
912 /* 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
|
913 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
|
914 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
|
915 of named faces. */ |
24995 | 916 |
917 void | |
918 recompute_basic_faces (f) | |
919 struct frame *f; | |
920 { | |
921 if (FRAME_FACE_CACHE (f)) | |
922 { | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
923 clear_face_cache (0); |
26601
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
924 if (!realize_basic_faces (f)) |
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
925 abort (); |
24995 | 926 } |
927 } | |
928 | |
929 | |
930 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means | |
931 try to free unused fonts, too. */ | |
932 | |
933 void | |
934 clear_face_cache (clear_fonts_p) | |
935 int clear_fonts_p; | |
936 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
937 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 938 Lisp_Object tail, frame; |
939 struct frame *f; | |
940 | |
941 if (clear_fonts_p | |
942 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT) | |
943 { | |
944 /* From time to time see if we can unload some fonts. This also | |
945 frees all realized faces on all frames. Fonts needed by | |
946 faces will be loaded again when faces are realized again. */ | |
947 clear_font_table_count = 0; | |
948 | |
949 FOR_EACH_FRAME (tail, frame) | |
950 { | |
951 f = XFRAME (frame); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
952 if (FRAME_WINDOW_P (f) |
24995 | 953 && 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
|
954 { |
24995 | 955 free_all_realized_faces (frame); |
956 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
|
957 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
958 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
959 } |
24995 | 960 else |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
961 { |
24995 | 962 /* Clear GCs of realized faces. */ |
963 FOR_EACH_FRAME (tail, frame) | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
964 { |
24995 | 965 f = XFRAME (frame); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
966 if (FRAME_WINDOW_P (f)) |
24995 | 967 { |
968 clear_face_gcs (FRAME_FACE_CACHE (f)); | |
969 clear_image_cache (f, 0); | |
970 } | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
971 } |
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
972 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
973 #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
|
974 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
975 |
24995 | 976 |
977 DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0, | |
978 "Clear face caches on all frames.\n\ | |
979 Optional THOROUGHLY non-nil means try to free unused fonts, too.") | |
980 (thorougly) | |
981 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
|
982 { |
24995 | 983 clear_face_cache (!NILP (thorougly)); |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
984 ++face_change_count; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
985 ++windows_or_buffers_changed; |
24995 | 986 return Qnil; |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
987 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
988 |
24995 | 989 |
990 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
991 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 992 |
993 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
994 /* 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
|
995 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
|
996 from time to time. */ |
24995 | 997 |
998 static void | |
999 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
|
1000 struct frame *f; |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
1001 { |
24995 | 1002 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); |
1003 int i; | |
1004 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1005 xassert (FRAME_WINDOW_P (f)); |
24995 | 1006 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1007 /* Free those fonts that are not used by the frame F as the default. */ |
24995 | 1008 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
|
1009 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1010 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
|
1011 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1012 if (!font_info->name |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1013 || font_info->font == FRAME_FONT (f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1014 continue; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1015 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1016 /* Free names. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1017 if (font_info->full_name != font_info->name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1018 xfree (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1019 xfree (font_info->name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1020 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1021 /* Free the font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1022 BLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1023 #ifdef HAVE_X_WINDOWS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1024 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
|
1025 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1026 #ifdef WINDOWSNT |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1027 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
|
1028 #endif |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1029 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1030 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1031 /* Mark font table slot free. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1032 font_info->font = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1033 font_info->name = font_info->full_name = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1034 } |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1035 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1036 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1037 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1038 |
1039 | |
1040 | |
1041 /*********************************************************************** | |
1042 X Pixmaps | |
1043 ***********************************************************************/ | |
1044 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1045 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1046 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1047 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
|
1048 "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
|
1049 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
|
1050 (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
|
1051 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
|
1052 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
|
1053 (WIDTH + 7)/8 bytes.") |
14090
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1054 (object) |
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1055 Lisp_Object object; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1056 { |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1057 int pixmap_p = 0; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1058 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1059 if (STRINGP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1060 /* 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
|
1061 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1062 else if (CONSP (object)) |
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 /* 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
|
1065 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
|
1066 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
|
1067 Lisp_Object width, height, data; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1068 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1069 height = width = data = Qnil; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1070 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1071 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1072 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1073 width = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1074 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1075 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1076 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1077 height = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1078 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1079 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1080 data = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1081 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1082 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1083 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1084 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1085 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1086 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
|
1087 / 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
|
1088 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
|
1089 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1090 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1091 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1092 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1093 return pixmap_p ? Qt : Qnil; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1094 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1095 |
24995 | 1096 |
1097 /* Load a bitmap according to NAME (which is either a file name or a | |
1098 pixmap spec) for use on frame F. Value is the bitmap_id (see | |
1099 xfns.c). If NAME is nil, return with a bitmap id of zero. If | |
1100 bitmap cannot be loaded, display a message saying so, and return | |
1101 zero. Store the bitmap width in *W_PTR and its height in *H_PTR, | |
1102 if these pointers are not null. */ | |
1103 | |
1104 static int | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1105 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
|
1106 FRAME_PTR f; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1107 Lisp_Object name; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1108 unsigned int *w_ptr, *h_ptr; |
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 int bitmap_id; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1111 Lisp_Object tem; |
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 if (NILP (name)) |
24995 | 1114 return 0; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1115 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1116 tem = Fbitmap_spec_p (name); |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1117 if (NILP (tem)) |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1118 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
|
1119 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1120 BLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1121 if (CONSP (name)) |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1122 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1123 /* Decode a bitmap spec into a bitmap. */ |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1124 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1125 int h, w; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1126 Lisp_Object bits; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1127 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1128 w = XINT (Fcar (name)); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1129 h = XINT (Fcar (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1130 bits = Fcar (Fcdr (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1131 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1132 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
|
1133 w, h); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1134 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1135 else |
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 /* 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
|
1138 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
|
1139 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1140 UNBLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1141 |
9902
32ed712a45a3
(load_pixmap): Handle bitmap_id < 0. F is a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9671
diff
changeset
|
1142 if (bitmap_id < 0) |
24995 | 1143 { |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1144 add_to_log ("Invalid or undefined bitmap %s", name, Qnil); |
24995 | 1145 bitmap_id = 0; |
1146 | |
1147 if (w_ptr) | |
1148 *w_ptr = 0; | |
1149 if (h_ptr) | |
1150 *h_ptr = 0; | |
1151 } | |
1152 else | |
1153 { | |
1154 #if GLYPH_DEBUG | |
1155 ++npixmaps_allocated; | |
1156 #endif | |
1157 if (w_ptr) | |
1158 *w_ptr = x_bitmap_width (f, bitmap_id); | |
1159 | |
1160 if (h_ptr) | |
1161 *h_ptr = x_bitmap_height (f, bitmap_id); | |
1162 } | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1163 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1164 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
|
1165 } |
9572 | 1166 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1167 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1168 |
9572 | 1169 |
2336 | 1170 |
24995 | 1171 /*********************************************************************** |
1172 Minimum font bounds | |
1173 ***********************************************************************/ | |
1174 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1175 #ifdef HAVE_WINDOW_SYSTEM |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1176 |
25062
050561b336aa
(load_face_colors): Load background color if setting
Gerd Moellmann <gerd@gnu.org>
parents:
24995
diff
changeset
|
1177 /* 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
|
1178 changes. */ |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1179 |
6879
471aebc1b151
(frame_update_line_height): Don't call x_set_window_size.
Richard M. Stallman <rms@gnu.org>
parents:
6784
diff
changeset
|
1180 int |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1181 frame_update_line_height (f) |
24995 | 1182 struct frame *f; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1183 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1184 int line_height, changed_p; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1185 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1186 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
|
1187 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
|
1188 FRAME_LINE_HEIGHT (f) = line_height; |
24995 | 1189 return changed_p; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1190 } |
24995 | 1191 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1192 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1193 |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
1194 |
24995 | 1195 /*********************************************************************** |
1196 Fonts | |
1197 ***********************************************************************/ | |
1198 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1199 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1200 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1201 /* 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
|
1202 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
|
1203 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
|
1204 |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1205 static void |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1206 load_face_font (f, face, c) |
24995 | 1207 struct frame *f; |
1208 struct face *face; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1209 int c; |
24995 | 1210 { |
1211 struct font_info *font_info = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1212 char *font_name; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1213 |
24995 | 1214 face->font_info_id = -1; |
1215 face->font = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1216 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1217 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
|
1218 if (!font_name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1219 return; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1220 |
24995 | 1221 BLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1222 font_info = FS_LOAD_FACE_FONT (f, c, font_name, face); |
24995 | 1223 UNBLOCK_INPUT; |
1224 | |
1225 if (font_info) | |
1226 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1227 face->font_info_id = font_info->font_idx; |
24995 | 1228 face->font = font_info->font; |
1229 face->font_name = font_info->full_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1230 if (face->gc) |
24995 | 1231 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1232 x_free_gc (f, face->gc); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1233 face->gc = 0; |
24995 | 1234 } |
1235 } | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1236 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1237 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
|
1238 build_string (font_name), Qnil); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1239 xfree (font_name); |
24995 | 1240 } |
1241 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1242 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1243 |
1244 | |
1245 | |
1246 /*********************************************************************** | |
1247 X Colors | |
1248 ***********************************************************************/ | |
1249 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1250 /* 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
|
1251 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1252 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1253 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
|
1254 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1255 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1256 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1257 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1258 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1259 Lisp_Object color_desc; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
1260 unsigned long color_idx = FACE_TTY_DEFAULT_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
1261 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
|
1262 int status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1263 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1264 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
|
1265 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1266 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1267 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1268 XSETFRAME (frame, f); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1269 status = 0; |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1270 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
|
1271 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
|
1272 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1273 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
|
1274 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
|
1275 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1276 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
|
1277 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
|
1278 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
|
1279 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1280 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1281 } |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1282 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
|
1283 /* 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
|
1284 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
|
1285 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
|
1286 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
|
1287 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1288 } |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1289 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
|
1290 { |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1291 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
|
1292 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
|
1293 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
|
1294 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
|
1295 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1296 |
27743
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1297 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
|
1298 status = 1; |
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1299 |
27695
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1300 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
|
1301 color_def->red = red; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1302 color_def->green = green; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1303 color_def->blue = blue; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1304 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1305 return status; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1306 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1307 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1308 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1309 /* 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
|
1310 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
|
1311 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
|
1312 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1313 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
|
1314 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1315 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1316 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
|
1317 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1318 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1319 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1320 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1321 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1322 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
|
1323 return tty_defined_color (f, color_name, color_def, alloc); |
24995 | 1324 #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
|
1325 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
|
1326 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
|
1327 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1328 #ifdef WINDOWSNT |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1329 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
|
1330 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
|
1331 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1332 #ifdef macintosh |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1333 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
|
1334 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
|
1335 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1336 else |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1337 abort (); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1338 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1339 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1340 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1341 /* 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
|
1342 Lisp string. */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1343 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1344 Lisp_Object |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1345 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
|
1346 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1347 int idx; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1348 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1349 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
|
1350 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1351 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1352 Lisp_Object coldesc; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1353 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1354 XSETFRAME (frame, f); |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1355 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
|
1356 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1357 if (!NILP (coldesc)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1358 return XCAR (coldesc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1359 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1360 #ifdef MSDOS |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1361 /* 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
|
1362 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
|
1363 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
|
1364 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
|
1365 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1366 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1367 if (idx == FACE_TTY_DEFAULT_FG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1368 return build_string (unspecified_fg); |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1369 if (idx == FACE_TTY_DEFAULT_BG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1370 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
|
1371 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1372 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1373 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
|
1374 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1375 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1376 return Qunspecified; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1377 } |
24995 | 1378 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1379 |
24995 | 1380 /* Return non-zero if COLOR_NAME is a shade of gray (or white or |
1381 black) on frame F. The algorithm is taken from 20.2 faces.el. */ | |
1382 | |
1383 static int | |
1384 face_color_gray_p (f, color_name) | |
1385 struct frame *f; | |
1386 char *color_name; | |
1387 { | |
1388 XColor color; | |
1389 int gray_p; | |
1390 | |
1391 if (defined_color (f, color_name, &color, 0)) | |
1392 gray_p = ((abs (color.red - color.green) | |
1393 < max (color.red, color.green) / 20) | |
1394 && (abs (color.green - color.blue) | |
1395 < max (color.green, color.blue) / 20) | |
1396 && (abs (color.blue - color.red) | |
1397 < max (color.blue, color.red) / 20)); | |
1398 else | |
1399 gray_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1400 |
24995 | 1401 return gray_p; |
1402 } | |
1403 | |
1404 | |
1405 /* Return non-zero if color COLOR_NAME can be displayed on frame F. | |
1406 BACKGROUND_P non-zero means the color will be used as background | |
1407 color. */ | |
1408 | |
1409 static int | |
1410 face_color_supported_p (f, color_name, background_p) | |
1411 struct frame *f; | |
1412 char *color_name; | |
1413 int background_p; | |
1414 { | |
1415 Lisp_Object frame; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1416 XColor not_used; |
24995 | 1417 |
1418 XSETFRAME (frame, f); | |
26972
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1419 return (FRAME_WINDOW_P (f) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1420 ? (!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
|
1421 || xstricmp (color_name, "black") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1422 || xstricmp (color_name, "white") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1423 || (background_p |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1424 && 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
|
1425 || (!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
|
1426 && 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
|
1427 : 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
|
1428 } |
24995 | 1429 |
1430 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1431 DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0, |
24995 | 1432 "Return non-nil if COLOR is a shade of gray (or white or black).\n\ |
1433 FRAME specifies the frame and thus the display for interpreting COLOR.\n\ | |
1434 If FRAME is nil or omitted, use the selected frame.") | |
1435 (color, frame) | |
1436 Lisp_Object color, frame; | |
1437 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1438 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1439 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1440 CHECK_FRAME (frame, 0); |
24995 | 1441 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
|
1442 f = XFRAME (frame); |
24995 | 1443 return face_color_gray_p (f, XSTRING (color)->data) ? Qt : Qnil; |
1444 } | |
1445 | |
1446 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1447 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
|
1448 Scolor_supported_p, 2, 3, 0, |
24995 | 1449 "Return non-nil if COLOR can be displayed on FRAME.\n\ |
1450 BACKGROUND-P non-nil means COLOR is used as a background.\n\ | |
1451 If FRAME is nil or omitted, use the selected frame.\n\ | |
1452 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
|
1453 (color, frame, background_p) |
24995 | 1454 Lisp_Object frame, color, background_p; |
1455 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1456 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1457 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1458 CHECK_FRAME (frame, 0); |
24995 | 1459 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
|
1460 f = XFRAME (frame); |
24995 | 1461 if (face_color_supported_p (f, XSTRING (color)->data, !NILP (background_p))) |
1462 return Qt; | |
1463 return Qnil; | |
1464 } | |
1465 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1466 |
24995 | 1467 /* Load color with name NAME for use by face FACE on frame F. |
1468 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX, | |
1469 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX, | |
1470 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the | |
1471 pixel color. If color cannot be loaded, display a message, and | |
1472 return the foreground, background or underline color of F, but | |
1473 record that fact in flags of the face so that we don't try to free | |
1474 these colors. */ | |
1475 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
1476 unsigned long |
24995 | 1477 load_color (f, face, name, target_index) |
1478 struct frame *f; | |
1479 struct face *face; | |
1480 Lisp_Object name; | |
1481 enum lface_attribute_index target_index; | |
1482 { | |
1483 XColor color; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1484 |
24995 | 1485 xassert (STRINGP (name)); |
1486 xassert (target_index == LFACE_FOREGROUND_INDEX | |
1487 || target_index == LFACE_BACKGROUND_INDEX | |
1488 || target_index == LFACE_UNDERLINE_INDEX | |
1489 || target_index == LFACE_OVERLINE_INDEX | |
1490 || target_index == LFACE_STRIKE_THROUGH_INDEX | |
1491 || target_index == LFACE_BOX_INDEX); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1492 |
24995 | 1493 /* if the color map is full, defined_color will return a best match |
1494 to the values in an existing cell. */ | |
1495 if (!defined_color (f, XSTRING (name)->data, &color, 1)) | |
1496 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1497 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
|
1498 |
24995 | 1499 switch (target_index) |
1500 { | |
1501 case LFACE_FOREGROUND_INDEX: | |
1502 face->foreground_defaulted_p = 1; | |
1503 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1504 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1505 |
24995 | 1506 case LFACE_BACKGROUND_INDEX: |
1507 face->background_defaulted_p = 1; | |
1508 color.pixel = FRAME_BACKGROUND_PIXEL (f); | |
1509 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1510 |
24995 | 1511 case LFACE_UNDERLINE_INDEX: |
1512 face->underline_defaulted_p = 1; | |
1513 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1514 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1515 |
24995 | 1516 case LFACE_OVERLINE_INDEX: |
1517 face->overline_color_defaulted_p = 1; | |
1518 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1519 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1520 |
24995 | 1521 case LFACE_STRIKE_THROUGH_INDEX: |
1522 face->strike_through_color_defaulted_p = 1; | |
1523 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1524 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1525 |
24995 | 1526 case LFACE_BOX_INDEX: |
1527 face->box_color_defaulted_p = 1; | |
1528 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1529 break; | |
1530 | |
1531 default: | |
1532 abort (); | |
1533 } | |
1534 } | |
1535 #if GLYPH_DEBUG | |
1536 else | |
1537 ++ncolors_allocated; | |
1538 #endif | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1539 |
24995 | 1540 return color.pixel; |
1541 } | |
1542 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1543 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1544 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1545 |
1546 /* Load colors for face FACE which is used on frame F. Colors are | |
1547 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX | |
1548 of ATTRS. If the background color specified is not supported on F, | |
1549 try to emulate gray colors with a stipple from Vface_default_stipple. */ | |
1550 | |
1551 static void | |
1552 load_face_colors (f, face, attrs) | |
1553 struct frame *f; | |
1554 struct face *face; | |
1555 Lisp_Object *attrs; | |
1556 { | |
1557 Lisp_Object fg, bg; | |
1558 | |
1559 bg = attrs[LFACE_BACKGROUND_INDEX]; | |
1560 fg = attrs[LFACE_FOREGROUND_INDEX]; | |
1561 | |
1562 /* Swap colors if face is inverse-video. */ | |
1563 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt)) | |
1564 { | |
1565 Lisp_Object tmp; | |
1566 tmp = fg; | |
1567 fg = bg; | |
1568 bg = tmp; | |
1569 } | |
1570 | |
1571 /* Check for support for foreground, not for background because | |
1572 face_color_supported_p is smart enough to know that grays are | |
1573 "supported" as background because we are supposed to use stipple | |
1574 for them. */ | |
1575 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
|
1576 && !NILP (Fbitmap_spec_p (Vface_default_stipple))) |
24995 | 1577 { |
1578 x_destroy_bitmap (f, face->stipple); | |
1579 face->stipple = load_pixmap (f, Vface_default_stipple, | |
1580 &face->pixmap_w, &face->pixmap_h); | |
1581 } | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1582 |
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1583 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX); |
24995 | 1584 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX); |
1585 } | |
1586 | |
1587 | |
1588 /* Free color PIXEL on frame F. */ | |
1589 | |
1590 void | |
1591 unload_color (f, pixel) | |
1592 struct frame *f; | |
1593 unsigned long pixel; | |
1594 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1595 #ifdef HAVE_X_WINDOWS |
24995 | 1596 BLOCK_INPUT; |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1597 x_free_colors (f, &pixel, 1); |
24995 | 1598 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1599 #endif |
24995 | 1600 } |
1601 | |
1602 | |
1603 /* Free colors allocated for FACE. */ | |
1604 | |
1605 static void | |
1606 free_face_colors (f, face) | |
1607 struct frame *f; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1608 struct face *face; |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1609 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1610 #ifdef HAVE_X_WINDOWS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1611 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1612 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1613 if (!face->foreground_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1614 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1615 x_free_colors (f, &face->foreground, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1616 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1617 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1618 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1619 if (!face->background_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1620 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1621 x_free_colors (f, &face->background, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1622 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1623 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1624 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1625 if (face->underline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1626 && !face->underline_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1627 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1628 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
|
1629 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1630 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1631 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1632 if (face->overline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1633 && !face->overline_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1634 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1635 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
|
1636 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1637 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1638 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1639 if (face->strike_through_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1640 && !face->strike_through_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1641 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1642 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
|
1643 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1644 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1645 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1646 if (face->box != FACE_NO_BOX |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1647 && !face->box_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1648 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1649 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
|
1650 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1651 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1652 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1653 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1654 #endif /* HAVE_X_WINDOWS */ |
24995 | 1655 } |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1656 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1657 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1658 |
1659 | |
1660 | |
1661 /*********************************************************************** | |
1662 XLFD Font Names | |
1663 ***********************************************************************/ | |
1664 | |
1665 /* An enumerator for each field of an XLFD font name. */ | |
1666 | |
1667 enum xlfd_field | |
1668 { | |
1669 XLFD_FOUNDRY, | |
1670 XLFD_FAMILY, | |
1671 XLFD_WEIGHT, | |
1672 XLFD_SLANT, | |
1673 XLFD_SWIDTH, | |
1674 XLFD_ADSTYLE, | |
1675 XLFD_PIXEL_SIZE, | |
1676 XLFD_POINT_SIZE, | |
1677 XLFD_RESX, | |
1678 XLFD_RESY, | |
1679 XLFD_SPACING, | |
1680 XLFD_AVGWIDTH, | |
1681 XLFD_REGISTRY, | |
1682 XLFD_ENCODING, | |
1683 XLFD_LAST | |
1684 }; | |
1685 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1686 /* An enumerator for each possible slant value of a font. Taken from |
24995 | 1687 the XLFD specification. */ |
1688 | |
1689 enum xlfd_slant | |
1690 { | |
1691 XLFD_SLANT_UNKNOWN, | |
1692 XLFD_SLANT_ROMAN, | |
1693 XLFD_SLANT_ITALIC, | |
1694 XLFD_SLANT_OBLIQUE, | |
1695 XLFD_SLANT_REVERSE_ITALIC, | |
1696 XLFD_SLANT_REVERSE_OBLIQUE, | |
1697 XLFD_SLANT_OTHER | |
1698 }; | |
1699 | |
1700 /* Relative font weight according to XLFD documentation. */ | |
1701 | |
1702 enum xlfd_weight | |
1703 { | |
1704 XLFD_WEIGHT_UNKNOWN, | |
1705 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */ | |
1706 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */ | |
1707 XLFD_WEIGHT_LIGHT, /* 30 */ | |
1708 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */ | |
1709 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1710 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */ | |
1711 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */ | |
1712 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */ | |
1713 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */ | |
1714 }; | |
1715 | |
1716 /* Relative proportionate width. */ | |
1717 | |
1718 enum xlfd_swidth | |
1719 { | |
1720 XLFD_SWIDTH_UNKNOWN, | |
1721 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */ | |
1722 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */ | |
1723 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */ | |
1724 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */ | |
1725 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1726 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */ | |
1727 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */ | |
1728 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */ | |
1729 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */ | |
1730 }; | |
1731 | |
1732 /* Structure used for tables mapping XLFD weight, slant, and width | |
1733 names to numeric and symbolic values. */ | |
1734 | |
1735 struct table_entry | |
1736 { | |
1737 char *name; | |
1738 int numeric; | |
1739 Lisp_Object *symbol; | |
1740 }; | |
1741 | |
1742 /* Table of XLFD slant names and their numeric and symbolic | |
1743 representations. This table must be sorted by slant names in | |
1744 ascending order. */ | |
1745 | |
1746 static struct table_entry slant_table[] = | |
1747 { | |
1748 {"i", XLFD_SLANT_ITALIC, &Qitalic}, | |
1749 {"o", XLFD_SLANT_OBLIQUE, &Qoblique}, | |
1750 {"ot", XLFD_SLANT_OTHER, &Qitalic}, | |
1751 {"r", XLFD_SLANT_ROMAN, &Qnormal}, | |
1752 {"ri", XLFD_SLANT_REVERSE_ITALIC, &Qreverse_italic}, | |
1753 {"ro", XLFD_SLANT_REVERSE_OBLIQUE, &Qreverse_oblique} | |
1754 }; | |
1755 | |
1756 /* Table of XLFD weight names. This table must be sorted by weight | |
1757 names in ascending order. */ | |
1758 | |
1759 static struct table_entry weight_table[] = | |
1760 { | |
1761 {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}, | |
1762 {"bold", XLFD_WEIGHT_BOLD, &Qbold}, | |
1763 {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1764 {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1765 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light}, | |
1766 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1767 {"heavy", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1768 {"light", XLFD_WEIGHT_LIGHT, &Qlight}, | |
1769 {"medium", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1770 {"normal", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1771 {"regular", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1772 {"semibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1773 {"semilight", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1774 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT, &Qultra_light}, | |
1775 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold} | |
1776 }; | |
1777 | |
1778 /* Table of XLFD width names. This table must be sorted by width | |
1779 names in ascending order. */ | |
1780 | |
1781 static struct table_entry swidth_table[] = | |
1782 { | |
1783 {"compressed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1784 {"condensed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1785 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1786 {"expanded", XLFD_SWIDTH_EXPANDED, &Qexpanded}, | |
1787 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED, &Qextra_condensed}, | |
1788 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded}, | |
1789 {"medium", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1790 {"narrow", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1791 {"normal", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1792 {"regular", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1793 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED, &Qsemi_condensed}, | |
1794 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1795 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED, &Qultra_condensed}, | |
1796 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED, &Qultra_expanded}, | |
1797 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded} | |
1798 }; | |
1799 | |
1800 /* Structure used to hold the result of splitting font names in XLFD | |
1801 format into their fields. */ | |
1802 | |
1803 struct font_name | |
1804 { | |
1805 /* The original name which is modified destructively by | |
1806 split_font_name. The pointer is kept here to be able to free it | |
1807 if it was allocated from the heap. */ | |
1808 char *name; | |
1809 | |
1810 /* Font name fields. Each vector element points into `name' above. | |
1811 Fields are NUL-terminated. */ | |
1812 char *fields[XLFD_LAST]; | |
1813 | |
1814 /* Numeric values for those fields that interest us. See | |
1815 split_font_name for which these are. */ | |
1816 int numeric[XLFD_LAST]; | |
1817 }; | |
1818 | |
1819 /* The frame in effect when sorting font names. Set temporarily in | |
1820 sort_fonts so that it is available in font comparison functions. */ | |
1821 | |
1822 static struct frame *font_frame; | |
1823 | |
1824 /* Order by which font selection chooses fonts. The default values | |
1825 mean `first, find a best match for the font width, then for the | |
1826 font height, then for weight, then for slant.' This variable can be | |
1827 set via set-face-font-sort-order. */ | |
1828 | |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
1829 #ifdef macintosh |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
1830 static int font_sort_order[4] = { XLFD_SWIDTH, XLFD_POINT_SIZE, XLFD_WEIGHT, XLFD_SLANT }; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
1831 #else |
24995 | 1832 static int font_sort_order[4]; |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
1833 #endif |
24995 | 1834 |
1835 /* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries. | |
1836 TABLE must be sorted by TABLE[i]->name in ascending order. Value | |
1837 is a pointer to the matching table entry or null if no table entry | |
1838 matches. */ | |
1839 | |
1840 static struct table_entry * | |
1841 xlfd_lookup_field_contents (table, dim, font, field_index) | |
1842 struct table_entry *table; | |
1843 int dim; | |
1844 struct font_name *font; | |
1845 int field_index; | |
1846 { | |
1847 /* Function split_font_name converts fields to lower-case, so there | |
1848 is no need to use xstrlwr or xstricmp here. */ | |
1849 char *s = font->fields[field_index]; | |
1850 int low, mid, high, cmp; | |
1851 | |
1852 low = 0; | |
1853 high = dim - 1; | |
1854 | |
1855 while (low <= high) | |
1856 { | |
1857 mid = (low + high) / 2; | |
1858 cmp = strcmp (table[mid].name, s); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1859 |
24995 | 1860 if (cmp < 0) |
1861 low = mid + 1; | |
1862 else if (cmp > 0) | |
1863 high = mid - 1; | |
1864 else | |
1865 return table + mid; | |
1866 } | |
1867 | |
1868 return NULL; | |
1869 } | |
1870 | |
1871 | |
1872 /* Return a numeric representation for font name field | |
1873 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1874 has DIM entries. Value is the numeric value found or DFLT if no | |
1875 table entry matches. This function is used to translate weight, | |
1876 slant, and swidth names of XLFD font names to numeric values. */ | |
1877 | |
1878 static INLINE int | |
1879 xlfd_numeric_value (table, dim, font, field_index, dflt) | |
1880 struct table_entry *table; | |
1881 int dim; | |
1882 struct font_name *font; | |
1883 int field_index; | |
1884 int dflt; | |
1885 { | |
1886 struct table_entry *p; | |
1887 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1888 return p ? p->numeric : dflt; | |
1889 } | |
1890 | |
1891 | |
1892 /* Return a symbolic representation for font name field | |
1893 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1894 has DIM entries. Value is the symbolic value found or DFLT if no | |
1895 table entry matches. This function is used to translate weight, | |
1896 slant, and swidth names of XLFD font names to symbols. */ | |
1897 | |
1898 static INLINE Lisp_Object | |
1899 xlfd_symbolic_value (table, dim, font, field_index, dflt) | |
1900 struct table_entry *table; | |
1901 int dim; | |
1902 struct font_name *font; | |
1903 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
|
1904 Lisp_Object dflt; |
24995 | 1905 { |
1906 struct table_entry *p; | |
1907 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1908 return p ? *p->symbol : dflt; | |
1909 } | |
1910 | |
1911 | |
1912 /* Return a numeric value for the slant of the font given by FONT. */ | |
1913 | |
1914 static INLINE int | |
1915 xlfd_numeric_slant (font) | |
1916 struct font_name *font; | |
1917 { | |
1918 return xlfd_numeric_value (slant_table, DIM (slant_table), | |
1919 font, XLFD_SLANT, XLFD_SLANT_ROMAN); | |
1920 } | |
1921 | |
1922 | |
1923 /* Return a symbol representing the weight of the font given by FONT. */ | |
1924 | |
1925 static INLINE Lisp_Object | |
1926 xlfd_symbolic_slant (font) | |
1927 struct font_name *font; | |
1928 { | |
1929 return xlfd_symbolic_value (slant_table, DIM (slant_table), | |
1930 font, XLFD_SLANT, Qnormal); | |
1931 } | |
1932 | |
1933 | |
1934 /* Return a numeric value for the weight of the font given by FONT. */ | |
1935 | |
1936 static INLINE int | |
1937 xlfd_numeric_weight (font) | |
1938 struct font_name *font; | |
1939 { | |
1940 return xlfd_numeric_value (weight_table, DIM (weight_table), | |
1941 font, XLFD_WEIGHT, XLFD_WEIGHT_MEDIUM); | |
1942 } | |
1943 | |
1944 | |
1945 /* Return a symbol representing the slant of the font given by FONT. */ | |
1946 | |
1947 static INLINE Lisp_Object | |
1948 xlfd_symbolic_weight (font) | |
1949 struct font_name *font; | |
1950 { | |
1951 return xlfd_symbolic_value (weight_table, DIM (weight_table), | |
1952 font, XLFD_WEIGHT, Qnormal); | |
1953 } | |
1954 | |
1955 | |
1956 /* Return a numeric value for the swidth of the font whose XLFD font | |
1957 name fields are found in FONT. */ | |
1958 | |
1959 static INLINE int | |
1960 xlfd_numeric_swidth (font) | |
1961 struct font_name *font; | |
1962 { | |
1963 return xlfd_numeric_value (swidth_table, DIM (swidth_table), | |
1964 font, XLFD_SWIDTH, XLFD_SWIDTH_MEDIUM); | |
1965 } | |
1966 | |
1967 | |
1968 /* Return a symbolic value for the swidth of FONT. */ | |
1969 | |
1970 static INLINE Lisp_Object | |
1971 xlfd_symbolic_swidth (font) | |
1972 struct font_name *font; | |
1973 { | |
1974 return xlfd_symbolic_value (swidth_table, DIM (swidth_table), | |
1975 font, XLFD_SWIDTH, Qnormal); | |
1976 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1977 |
24995 | 1978 |
1979 /* Look up the entry of SYMBOL in the vector TABLE which has DIM | |
1980 entries. Value is a pointer to the matching table entry or null if | |
1981 no element of TABLE contains SYMBOL. */ | |
1982 | |
1983 static struct table_entry * | |
1984 face_value (table, dim, symbol) | |
1985 struct table_entry *table; | |
1986 int dim; | |
1987 Lisp_Object symbol; | |
1988 { | |
1989 int i; | |
1990 | |
1991 xassert (SYMBOLP (symbol)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1992 |
24995 | 1993 for (i = 0; i < dim; ++i) |
1994 if (EQ (*table[i].symbol, symbol)) | |
1995 break; | |
1996 | |
1997 return i < dim ? table + i : NULL; | |
1998 } | |
1999 | |
2000 | |
2001 /* Return a numeric value for SYMBOL in the vector TABLE which has DIM | |
2002 entries. Value is -1 if SYMBOL is not found in TABLE. */ | |
2003 | |
2004 static INLINE int | |
2005 face_numeric_value (table, dim, symbol) | |
2006 struct table_entry *table; | |
2007 int dim; | |
2008 Lisp_Object symbol; | |
2009 { | |
2010 struct table_entry *p = face_value (table, dim, symbol); | |
2011 return p ? p->numeric : -1; | |
2012 } | |
2013 | |
2014 | |
2015 /* Return a numeric value representing the weight specified by Lisp | |
2016 symbol WEIGHT. Value is one of the enumerators of enum | |
2017 xlfd_weight. */ | |
2018 | |
2019 static INLINE int | |
2020 face_numeric_weight (weight) | |
2021 Lisp_Object weight; | |
2022 { | |
2023 return face_numeric_value (weight_table, DIM (weight_table), weight); | |
2024 } | |
2025 | |
2026 | |
2027 /* Return a numeric value representing the slant specified by Lisp | |
2028 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */ | |
2029 | |
2030 static INLINE int | |
2031 face_numeric_slant (slant) | |
2032 Lisp_Object slant; | |
2033 { | |
2034 return face_numeric_value (slant_table, DIM (slant_table), slant); | |
2035 } | |
2036 | |
2037 | |
2038 /* Return a numeric value representing the swidth specified by Lisp | |
2039 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */ | |
2040 | |
2041 static int | |
2042 face_numeric_swidth (width) | |
2043 Lisp_Object width; | |
2044 { | |
2045 return face_numeric_value (swidth_table, DIM (swidth_table), width); | |
2046 } | |
2047 | |
2048 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2049 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2050 |
2051 /* Return non-zero if FONT is the name of a fixed-pitch font. */ | |
2052 | |
2053 static INLINE int | |
2054 xlfd_fixed_p (font) | |
2055 struct font_name *font; | |
2056 { | |
2057 /* Function split_font_name converts fields to lower-case, so there | |
2058 is no need to use tolower here. */ | |
2059 return *font->fields[XLFD_SPACING] != 'p'; | |
2060 } | |
2061 | |
2062 | |
2063 /* Return the point size of FONT on frame F, measured in 1/10 pt. | |
2064 | |
2065 The actual height of the font when displayed on F depends on the | |
2066 resolution of both the font and frame. For example, a 10pt font | |
2067 designed for a 100dpi display will display larger than 10pt on a | |
2068 75dpi display. (It's not unusual to use fonts not designed for the | |
2069 display one is using. For example, some intlfonts are available in | |
2070 72dpi versions, only.) | |
2071 | |
2072 Value is the real point size of FONT on frame F, or 0 if it cannot | |
2073 be determined. */ | |
2074 | |
2075 static INLINE int | |
2076 xlfd_point_size (f, font) | |
2077 struct frame *f; | |
2078 struct font_name *font; | |
2079 { | |
2080 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
2081 double font_resy = atoi (font->fields[XLFD_RESY]); | |
2082 double font_pt = atoi (font->fields[XLFD_POINT_SIZE]); | |
2083 int real_pt; | |
2084 | |
2085 if (font_resy == 0 || font_pt == 0) | |
2086 real_pt = 0; | |
2087 else | |
2088 real_pt = (font_resy / resy) * font_pt + 0.5; | |
2089 | |
2090 return real_pt; | |
2091 } | |
2092 | |
2093 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2094 /* 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
|
2095 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
|
2096 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
|
2097 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2098 static INLINE int |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2099 pixel_point_size (f, pixel) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2100 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2101 int pixel; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2102 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2103 double resy = FRAME_X_DISPLAY_INFO (f)->resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2104 double real_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2105 int int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2106 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2107 /* 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
|
2108 real_pt = pixel * 72 / resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2109 int_pt = real_pt + 0.5; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2110 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2111 return int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2112 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2113 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2114 |
24995 | 2115 /* Split XLFD font name FONT->name destructively into NUL-terminated, |
2116 lower-case fields in FONT->fields. NUMERIC_P non-zero means | |
2117 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH, | |
2118 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is | |
2119 zero if the font name doesn't have the format we expect. The | |
2120 expected format is a font name that starts with a `-' and has | |
2121 XLFD_LAST fields separated by `-'. (The XLFD specification allows | |
2122 forms of font names where certain field contents are enclosed in | |
2123 square brackets. We don't support that, for now. */ | |
2124 | |
2125 static int | |
2126 split_font_name (f, font, numeric_p) | |
2127 struct frame *f; | |
2128 struct font_name *font; | |
2129 int numeric_p; | |
2130 { | |
2131 int i = 0; | |
2132 int success_p; | |
2133 | |
2134 if (*font->name == '-') | |
2135 { | |
2136 char *p = xstrlwr (font->name) + 1; | |
2137 | |
2138 while (i < XLFD_LAST) | |
2139 { | |
2140 font->fields[i] = p; | |
2141 ++i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2142 |
24995 | 2143 while (*p && *p != '-') |
2144 ++p; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2145 |
24995 | 2146 if (*p != '-') |
2147 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2148 |
24995 | 2149 *p++ = 0; |
2150 } | |
2151 } | |
2152 | |
2153 success_p = i == XLFD_LAST; | |
2154 | |
2155 /* If requested, and font name was in the expected format, | |
2156 compute numeric values for some fields. */ | |
2157 if (numeric_p && success_p) | |
2158 { | |
2159 font->numeric[XLFD_POINT_SIZE] = xlfd_point_size (f, font); | |
2160 font->numeric[XLFD_RESY] = atoi (font->fields[XLFD_RESY]); | |
2161 font->numeric[XLFD_SLANT] = xlfd_numeric_slant (font); | |
2162 font->numeric[XLFD_WEIGHT] = xlfd_numeric_weight (font); | |
2163 font->numeric[XLFD_SWIDTH] = xlfd_numeric_swidth (font); | |
2164 } | |
2165 | |
2166 return success_p; | |
2167 } | |
2168 | |
2169 | |
2170 /* Build an XLFD font name from font name fields in FONT. Value is a | |
2171 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
|
2172 |
24995 | 2173 static char * |
2174 build_font_name (font) | |
2175 struct font_name *font; | |
2176 { | |
2177 int i; | |
2178 int size = 100; | |
2179 char *font_name = (char *) xmalloc (size); | |
2180 int total_length = 0; | |
2181 | |
2182 for (i = 0; i < XLFD_LAST; ++i) | |
2183 { | |
2184 /* Add 1 because of the leading `-'. */ | |
2185 int len = strlen (font->fields[i]) + 1; | |
2186 | |
2187 /* Reallocate font_name if necessary. Add 1 for the final | |
2188 NUL-byte. */ | |
2189 if (total_length + len + 1 >= size) | |
2190 { | |
2191 int new_size = max (2 * size, size + len + 1); | |
2192 int sz = new_size * sizeof *font_name; | |
2193 font_name = (char *) xrealloc (font_name, sz); | |
2194 size = new_size; | |
2195 } | |
2196 | |
2197 font_name[total_length] = '-'; | |
2198 bcopy (font->fields[i], font_name + total_length + 1, len - 1); | |
2199 total_length += len; | |
2200 } | |
2201 | |
2202 font_name[total_length] = 0; | |
2203 return font_name; | |
2204 } | |
2205 | |
2206 | |
2207 /* Free an array FONTS of N font_name structures. This frees FONTS | |
2208 itself and all `name' fields in its elements. */ | |
2209 | |
2210 static INLINE void | |
2211 free_font_names (fonts, n) | |
2212 struct font_name *fonts; | |
2213 int n; | |
2214 { | |
2215 while (n) | |
2216 xfree (fonts[--n].name); | |
2217 xfree (fonts); | |
2218 } | |
2219 | |
2220 | |
2221 /* Sort vector FONTS of font_name structures which contains NFONTS | |
2222 elements using qsort and comparison function CMPFN. F is the frame | |
2223 on which the fonts will be used. The global variable font_frame | |
2224 is temporarily set to F to make it available in CMPFN. */ | |
2225 | |
2226 static INLINE void | |
2227 sort_fonts (f, fonts, nfonts, cmpfn) | |
2228 struct frame *f; | |
2229 struct font_name *fonts; | |
2230 int nfonts; | |
2231 int (*cmpfn) P_ ((const void *, const void *)); | |
2232 { | |
2233 font_frame = f; | |
2234 qsort (fonts, nfonts, sizeof *fonts, cmpfn); | |
2235 font_frame = NULL; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2236 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2237 |
24995 | 2238 |
2239 /* Get fonts matching PATTERN on frame F. If F is null, use the first | |
2240 display in x_display_list. FONTS is a pointer to a vector of | |
2241 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try | |
2242 alternative patterns from Valternate_fontname_alist if no fonts are | |
2243 found matching PATTERN. SCALABLE_FONTS_P non-zero means include | |
2244 scalable fonts. | |
2245 | |
2246 For all fonts found, set FONTS[i].name to the name of the font, | |
2247 allocated via xmalloc, and split font names into fields. Ignore | |
2248 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
|
2249 |
24995 | 2250 This is similar to x_list_fonts. The differences are: |
2251 | |
2252 1. It avoids consing. | |
2253 2. It never calls XLoadQueryFont. */ | |
2254 | |
2255 static int | |
2256 x_face_list_fonts (f, pattern, fonts, nfonts, try_alternatives_p, | |
2257 scalable_fonts_p) | |
2258 struct frame *f; | |
2259 char *pattern; | |
2260 struct font_name *fonts; | |
2261 int nfonts, try_alternatives_p; | |
2262 int scalable_fonts_p; | |
2263 { | |
2264 int n, i, j; | |
2265 char **names; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2266 #ifdef HAVE_X_WINDOWS |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2267 Display *dpy = f ? FRAME_X_DISPLAY (f) : x_display_list->display; |
24995 | 2268 |
2269 /* Get the list of fonts matching PATTERN from the X server. */ | |
2270 BLOCK_INPUT; | |
2271 names = XListFonts (dpy, pattern, nfonts, &n); | |
2272 UNBLOCK_INPUT; | |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
2273 #endif /* HAVE_X_WINDOWS */ |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
2274 #if defined (WINDOWSNT) || defined (macintosh) |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2275 /* 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
|
2276 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
|
2277 Lisp_Object lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2278 Lisp_Object lpattern, tem; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2279 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2280 n = 0; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2281 names = NULL; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2282 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2283 lpattern = build_string (pattern); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2284 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2285 /* 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
|
2286 BLOCK_INPUT; |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
2287 #ifdef WINDOWSNT |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2288 lfonts = w32_list_fonts (f, lpattern, 0, nfonts); |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
2289 #else /* macintosh */ |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
2290 lfonts = x_list_fonts (f, lpattern, 0, nfonts); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
2291 #endif |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2292 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2293 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2294 /* Count fonts returned */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2295 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
|
2296 n++; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2297 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2298 /* Allocate array. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2299 if (n) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2300 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
|
2301 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2302 /* 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
|
2303 tem = lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2304 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
|
2305 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2306 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
|
2307 tem = XCDR (tem); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2308 } |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
2309 #endif /* defined (WINDOWSNT) || defined (macintosh) */ |
24995 | 2310 |
2311 if (names) | |
2312 { | |
2313 /* Make a copy of the font names we got from X, and | |
2314 split them into fields. */ | |
2315 for (i = j = 0; i < n; ++i) | |
2316 { | |
2317 /* Make a copy of the font name. */ | |
2318 fonts[j].name = xstrdup (names[i]); | |
2319 | |
2320 /* Ignore fonts having a name that we can't parse. */ | |
2321 if (!split_font_name (f, fonts + j, 1)) | |
2322 xfree (fonts[j].name); | |
2323 else if (font_scalable_p (fonts + j)) | |
2324 { | |
2325 if (!scalable_fonts_p | |
2326 || !may_use_scalable_font_p (fonts + j, names[i])) | |
2327 xfree (fonts[j].name); | |
2328 else | |
2329 ++j; | |
2330 } | |
2331 else | |
2332 ++j; | |
2333 } | |
2334 | |
2335 n = j; | |
2336 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2337 #ifdef HAVE_X_WINDOWS |
24995 | 2338 /* Free font names. */ |
2339 BLOCK_INPUT; | |
2340 XFreeFontNames (names); | |
2341 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2342 #endif |
24995 | 2343 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2344 |
24995 | 2345 |
2346 /* If no fonts found, try patterns from Valternate_fontname_alist. */ | |
2347 if (n == 0 && try_alternatives_p) | |
2348 { | |
2349 Lisp_Object list = Valternate_fontname_alist; | |
2350 | |
2351 while (CONSP (list)) | |
2352 { | |
2353 Lisp_Object entry = XCAR (list); | |
2354 if (CONSP (entry) | |
2355 && STRINGP (XCAR (entry)) | |
2356 && strcmp (XSTRING (XCAR (entry))->data, pattern) == 0) | |
2357 break; | |
2358 list = XCDR (list); | |
2359 } | |
2360 | |
2361 if (CONSP (list)) | |
2362 { | |
2363 Lisp_Object patterns = XCAR (list); | |
2364 Lisp_Object name; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2365 |
24995 | 2366 while (CONSP (patterns) |
2367 /* If list is screwed up, give up. */ | |
2368 && (name = XCAR (patterns), | |
2369 STRINGP (name)) | |
2370 /* Ignore patterns equal to PATTERN because we tried that | |
2371 already with no success. */ | |
2372 && (strcmp (XSTRING (name)->data, pattern) == 0 | |
2373 || (n = x_face_list_fonts (f, XSTRING (name)->data, | |
2374 fonts, nfonts, 0, | |
2375 scalable_fonts_p), | |
2376 n == 0))) | |
2377 patterns = XCDR (patterns); | |
2378 } | |
2379 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2380 |
24995 | 2381 return n; |
2382 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2383 |
24995 | 2384 |
2385 /* Determine the first font matching PATTERN on frame F. Return in | |
2386 *FONT the matching font name, split into fields. Value is non-zero | |
2387 if a match was found. */ | |
2388 | |
2389 static int | |
2390 first_font_matching (f, pattern, font) | |
2391 struct frame *f; | |
2392 char *pattern; | |
2393 struct font_name *font; | |
2394 { | |
2395 int nfonts = 100; | |
2396 struct font_name *fonts; | |
2397 | |
2398 fonts = (struct font_name *) xmalloc (nfonts * sizeof *fonts); | |
2399 nfonts = x_face_list_fonts (f, pattern, fonts, nfonts, 1, 0); | |
2400 | |
2401 if (nfonts > 0) | |
2402 { | |
2403 bcopy (&fonts[0], font, sizeof *font); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2404 |
24995 | 2405 fonts[0].name = NULL; |
2406 free_font_names (fonts, nfonts); | |
2407 } | |
2408 | |
2409 return nfonts > 0; | |
2410 } | |
2411 | |
2412 | |
2413 /* Determine fonts matching PATTERN on frame F. Sort resulting fonts | |
2414 using comparison function CMPFN. Value is the number of fonts | |
2415 found. If value is non-zero, *FONTS is set to a vector of | |
2416 font_name structures allocated from the heap containing matching | |
2417 fonts. Each element of *FONTS contains a name member that is also | |
2418 allocated from the heap. Font names in these structures are split | |
2419 into fields. Use free_font_names to free such an array. */ | |
2420 | |
2421 static int | |
2422 sorted_font_list (f, pattern, cmpfn, fonts) | |
2423 struct frame *f; | |
2424 char *pattern; | |
2425 int (*cmpfn) P_ ((const void *, const void *)); | |
2426 struct font_name **fonts; | |
2427 { | |
2428 int nfonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2429 |
24995 | 2430 /* Get the list of fonts matching pattern. 100 should suffice. */ |
25270 | 2431 nfonts = DEFAULT_FONT_LIST_LIMIT; |
2432 if (INTEGERP (Vfont_list_limit) && XINT (Vfont_list_limit) > 0) | |
2433 nfonts = XFASTINT (Vfont_list_limit); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2434 |
24995 | 2435 *fonts = (struct font_name *) xmalloc (nfonts * sizeof **fonts); |
2436 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
|
2437 |
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2438 /* Sort the resulting array and return it in *FONTS. If no |
24995 | 2439 fonts were found, make sure to set *FONTS to null. */ |
2440 if (nfonts) | |
2441 sort_fonts (f, *fonts, nfonts, cmpfn); | |
2442 else | |
2443 { | |
2444 xfree (*fonts); | |
2445 *fonts = NULL; | |
2446 } | |
2447 | |
2448 return nfonts; | |
2449 } | |
2450 | |
2451 | |
2452 /* Compare two font_name structures *A and *B. Value is analogous to | |
2453 strcmp. Sort order is given by the global variable | |
2454 font_sort_order. Font names are sorted so that, everything else | |
2455 being equal, fonts with a resolution closer to that of the frame on | |
2456 which they are used are listed first. The global variable | |
2457 font_frame is the frame on which we operate. */ | |
2458 | |
2459 static int | |
2460 cmp_font_names (a, b) | |
2461 const void *a, *b; | |
2462 { | |
2463 struct font_name *x = (struct font_name *) a; | |
2464 struct font_name *y = (struct font_name *) b; | |
2465 int cmp; | |
2466 | |
2467 /* All strings have been converted to lower-case by split_font_name, | |
2468 so we can use strcmp here. */ | |
2469 cmp = strcmp (x->fields[XLFD_FAMILY], y->fields[XLFD_FAMILY]); | |
2470 if (cmp == 0) | |
2471 { | |
2472 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2473 |
24995 | 2474 for (i = 0; i < DIM (font_sort_order) && cmp == 0; ++i) |
2475 { | |
2476 int j = font_sort_order[i]; | |
2477 cmp = x->numeric[j] - y->numeric[j]; | |
2478 } | |
2479 | |
2480 if (cmp == 0) | |
2481 { | |
2482 /* Everything else being equal, we prefer fonts with an | |
2483 y-resolution closer to that of the frame. */ | |
2484 int resy = FRAME_X_DISPLAY_INFO (font_frame)->resy; | |
2485 int x_resy = x->numeric[XLFD_RESY]; | |
2486 int y_resy = y->numeric[XLFD_RESY]; | |
2487 cmp = abs (resy - x_resy) - abs (resy - y_resy); | |
2488 } | |
2489 } | |
2490 | |
2491 return cmp; | |
2492 } | |
2493 | |
2494 | |
2495 /* 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
|
2496 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
|
2497 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
|
2498 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
|
2499 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
|
2500 Value is the number of fonts found. */ |
24995 | 2501 |
2502 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2503 font_list (f, pattern, family, registry, fonts) |
24995 | 2504 struct frame *f; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2505 Lisp_Object pattern, family, registry; |
24995 | 2506 struct font_name **fonts; |
2507 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2508 char *pattern_str, *family_str, *registry_str; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2509 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2510 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2511 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2512 family_str = (NILP (family) ? "*" : (char *) XSTRING (family)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2513 registry_str = (NILP (registry) ? "*" : (char *) XSTRING (registry)->data); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2514 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2515 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
|
2516 + strlen (registry_str) |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2517 + 10); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2518 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
|
2519 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
|
2520 strcat (pattern_str, "-*-"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2521 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
|
2522 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
|
2523 { |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2524 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
|
2525 strcat (pattern_str, "-*"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2526 else |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2527 strcat (pattern_str, "*-*"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2528 } |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2529 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2530 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2531 pattern_str = (char *) XSTRING (pattern)->data; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2532 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2533 return sorted_font_list (f, pattern_str, cmp_font_names, fonts); |
24995 | 2534 } |
2535 | |
2536 | |
2537 /* 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
|
2538 x-family-fonts and x-font-family-list to remove duplicate font |
24995 | 2539 entries. */ |
2540 | |
2541 static void | |
2542 remove_duplicates (list) | |
2543 Lisp_Object list; | |
2544 { | |
2545 Lisp_Object tail = list; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2546 |
24995 | 2547 while (!NILP (tail) && !NILP (XCDR (tail))) |
2548 { | |
2549 Lisp_Object next = XCDR (tail); | |
2550 if (!NILP (Fequal (XCAR (next), XCAR (tail)))) | |
2551 XCDR (tail) = XCDR (next); | |
2552 else | |
2553 tail = XCDR (tail); | |
2554 } | |
2555 } | |
2556 | |
2557 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2558 DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0, |
24995 | 2559 "Return a list of available fonts of family FAMILY on FRAME.\n\ |
2560 If FAMILY is omitted or nil, list all families.\n\ | |
2561 Otherwise, FAMILY must be a string, possibly containing wildcards\n\ | |
2562 `?' and `*'.\n\ | |
2563 If FRAME is omitted or nil, use the selected frame.\n\ | |
2564 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT\n\ | |
25270 | 2565 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].\n\ |
24995 | 2566 FAMILY is the font family name. POINT-SIZE is the size of the\n\ |
2567 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the\n\ | |
2568 width, weight and slant of the font. These symbols are the same as for\n\ | |
2569 face attributes. FIXED-P is non-nil if the font is fixed-pitch.\n\ | |
25270 | 2570 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string\n\ |
2571 giving the registry and encoding of the font.\n\ | |
24995 | 2572 The result list is sorted according to the current setting of\n\ |
2573 the face font sort order.") | |
2574 (family, frame) | |
2575 Lisp_Object family, frame; | |
2576 { | |
2577 struct frame *f = check_x_frame (frame); | |
2578 struct font_name *fonts; | |
2579 int i, nfonts; | |
2580 Lisp_Object result; | |
2581 struct gcpro gcpro1; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2582 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2583 if (!NILP (family)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2584 CHECK_STRING (family, 1); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2585 |
24995 | 2586 result = Qnil; |
2587 GCPRO1 (result); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2588 nfonts = font_list (f, Qnil, family, Qnil, &fonts); |
24995 | 2589 for (i = nfonts - 1; i >= 0; --i) |
2590 { | |
25270 | 2591 Lisp_Object v = Fmake_vector (make_number (8), Qnil); |
2592 char *tem; | |
24995 | 2593 |
2594 ASET (v, 0, build_string (fonts[i].fields[XLFD_FAMILY])); | |
2595 ASET (v, 1, xlfd_symbolic_swidth (fonts + i)); | |
2596 ASET (v, 2, make_number (xlfd_point_size (f, fonts + i))); | |
2597 ASET (v, 3, xlfd_symbolic_weight (fonts + i)); | |
2598 ASET (v, 4, xlfd_symbolic_slant (fonts + i)); | |
2599 ASET (v, 5, xlfd_fixed_p (fonts + i) ? Qt : Qnil); | |
25270 | 2600 tem = build_font_name (fonts + i); |
2601 ASET (v, 6, build_string (tem)); | |
2602 sprintf (tem, "%s-%s", fonts[i].fields[XLFD_REGISTRY], | |
2603 fonts[i].fields[XLFD_ENCODING]); | |
2604 ASET (v, 7, build_string (tem)); | |
2605 xfree (tem); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2606 |
24995 | 2607 result = Fcons (v, result); |
2608 } | |
2609 | |
2610 remove_duplicates (result); | |
2611 free_font_names (fonts, nfonts); | |
2612 UNGCPRO; | |
2613 return result; | |
2614 } | |
2615 | |
2616 | |
2617 DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list, | |
2618 0, 1, 0, | |
2619 "Return a list of available font families on FRAME.\n\ | |
2620 If FRAME is omitted or nil, use the selected frame.\n\ | |
2621 Value is a list of conses (FAMILY . FIXED-P) where FAMILY\n\ | |
2622 is a font family, and FIXED-P is non-nil if fonts of that family\n\ | |
2623 are fixed-pitch.") | |
2624 (frame) | |
2625 Lisp_Object frame; | |
2626 { | |
2627 struct frame *f = check_x_frame (frame); | |
2628 int nfonts, i; | |
2629 struct font_name *fonts; | |
2630 Lisp_Object result; | |
2631 struct gcpro gcpro1; | |
25270 | 2632 int count = specpdl_ptr - specpdl; |
2633 int limit; | |
2634 | |
2635 /* Let's consider all fonts. Increase the limit for matching | |
2636 fonts until we have them all. */ | |
2637 for (limit = 500;;) | |
2638 { | |
2639 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
|
2640 nfonts = font_list (f, Qnil, Qnil, Qnil, &fonts); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2641 |
25270 | 2642 if (nfonts == limit) |
2643 { | |
2644 free_font_names (fonts, nfonts); | |
2645 limit *= 2; | |
2646 } | |
2647 else | |
2648 break; | |
2649 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2650 |
24995 | 2651 result = Qnil; |
2652 GCPRO1 (result); | |
2653 for (i = nfonts - 1; i >= 0; --i) | |
2654 result = Fcons (Fcons (build_string (fonts[i].fields[XLFD_FAMILY]), | |
2655 xlfd_fixed_p (fonts + i) ? Qt : Qnil), | |
2656 result); | |
2657 | |
2658 remove_duplicates (result); | |
2659 free_font_names (fonts, nfonts); | |
2660 UNGCPRO; | |
25270 | 2661 return unbind_to (count, result); |
24995 | 2662 } |
2663 | |
2664 | |
2665 DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0, | |
2666 "Return a list of the names of available fonts matching PATTERN.\n\ | |
2667 If optional arguments FACE and FRAME are specified, return only fonts\n\ | |
2668 the same size as FACE on FRAME.\n\ | |
2669 PATTERN is a string, perhaps with wildcard characters;\n\ | |
2670 the * character matches any substring, and\n\ | |
2671 the ? character matches any single character.\n\ | |
2672 PATTERN is case-insensitive.\n\ | |
2673 FACE is a face name--a symbol.\n\ | |
2674 \n\ | |
2675 The return value is a list of strings, suitable as arguments to\n\ | |
2676 set-face-font.\n\ | |
2677 \n\ | |
2678 Fonts Emacs can't use may or may not be excluded\n\ | |
2679 even if they match PATTERN and FACE.\n\ | |
2680 The optional fourth argument MAXIMUM sets a limit on how many\n\ | |
2681 fonts to match. The first MAXIMUM fonts are reported.\n\ | |
2682 The optional fifth argument WIDTH, if specified, is a number of columns\n\ | |
2683 occupied by a character of a font. In that case, return only fonts\n\ | |
2684 the WIDTH times as wide as FACE on FRAME.") | |
2685 (pattern, face, frame, maximum, width) | |
2686 Lisp_Object pattern, face, frame, maximum, width; | |
2687 { | |
2688 struct frame *f; | |
2689 int size; | |
2690 int maxnames; | |
2691 | |
2692 check_x (); | |
2693 CHECK_STRING (pattern, 0); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2694 |
24995 | 2695 if (NILP (maximum)) |
2696 maxnames = 2000; | |
2697 else | |
2698 { | |
2699 CHECK_NATNUM (maximum, 0); | |
2700 maxnames = XINT (maximum); | |
2701 } | |
2702 | |
2703 if (!NILP (width)) | |
2704 CHECK_NUMBER (width, 4); | |
2705 | |
2706 /* We can't simply call check_x_frame because this function may be | |
2707 called before any frame is created. */ | |
2708 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
|
2709 if (!FRAME_WINDOW_P (f)) |
24995 | 2710 { |
2711 /* Perhaps we have not yet created any frame. */ | |
2712 f = NULL; | |
2713 face = Qnil; | |
2714 } | |
2715 | |
2716 /* Determine the width standard for comparison with the fonts we find. */ | |
2717 | |
2718 if (NILP (face)) | |
2719 size = 0; | |
2720 else | |
2721 { | |
2722 /* This is of limited utility since it works with character | |
2723 widths. Keep it for compatibility. --gerd. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2724 int face_id = lookup_named_face (f, face, 0); |
24995 | 2725 struct face *face = FACE_FROM_ID (f, face_id); |
2726 | |
2727 if (face->font) | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2728 size = FONT_WIDTH (face->font); |
24995 | 2729 else |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2730 size = FONT_WIDTH (FRAME_FONT (f)); |
24995 | 2731 |
2732 if (!NILP (width)) | |
2733 size *= XINT (width); | |
2734 } | |
2735 | |
2736 { | |
2737 Lisp_Object args[2]; | |
2738 | |
2739 args[0] = x_list_fonts (f, pattern, size, maxnames); | |
2740 if (f == NULL) | |
2741 /* We don't have to check fontsets. */ | |
2742 return args[0]; | |
2743 args[1] = list_fontsets (f, pattern, size); | |
2744 return Fnconc (2, args); | |
2745 } | |
2746 } | |
2747 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2748 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 2749 |
2750 | |
2751 | |
2752 /*********************************************************************** | |
2753 Lisp Faces | |
2754 ***********************************************************************/ | |
2755 | |
2756 /* Access face attributes of face FACE, a Lisp vector. */ | |
2757 | |
2758 #define LFACE_FAMILY(LFACE) \ | |
2759 XVECTOR (LFACE)->contents[LFACE_FAMILY_INDEX] | |
2760 #define LFACE_HEIGHT(LFACE) \ | |
2761 XVECTOR (LFACE)->contents[LFACE_HEIGHT_INDEX] | |
2762 #define LFACE_WEIGHT(LFACE) \ | |
2763 XVECTOR (LFACE)->contents[LFACE_WEIGHT_INDEX] | |
2764 #define LFACE_SLANT(LFACE) \ | |
2765 XVECTOR (LFACE)->contents[LFACE_SLANT_INDEX] | |
2766 #define LFACE_UNDERLINE(LFACE) \ | |
2767 XVECTOR (LFACE)->contents[LFACE_UNDERLINE_INDEX] | |
2768 #define LFACE_INVERSE(LFACE) \ | |
2769 XVECTOR (LFACE)->contents[LFACE_INVERSE_INDEX] | |
2770 #define LFACE_FOREGROUND(LFACE) \ | |
2771 XVECTOR (LFACE)->contents[LFACE_FOREGROUND_INDEX] | |
2772 #define LFACE_BACKGROUND(LFACE) \ | |
2773 XVECTOR (LFACE)->contents[LFACE_BACKGROUND_INDEX] | |
2774 #define LFACE_STIPPLE(LFACE) \ | |
2775 XVECTOR (LFACE)->contents[LFACE_STIPPLE_INDEX] | |
2776 #define LFACE_SWIDTH(LFACE) \ | |
2777 XVECTOR (LFACE)->contents[LFACE_SWIDTH_INDEX] | |
2778 #define LFACE_OVERLINE(LFACE) \ | |
2779 XVECTOR (LFACE)->contents[LFACE_OVERLINE_INDEX] | |
2780 #define LFACE_STRIKE_THROUGH(LFACE) \ | |
2781 XVECTOR (LFACE)->contents[LFACE_STRIKE_THROUGH_INDEX] | |
2782 #define LFACE_BOX(LFACE) \ | |
2783 XVECTOR (LFACE)->contents[LFACE_BOX_INDEX] | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2784 #define LFACE_FONT(LFACE) \ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2785 XVECTOR (LFACE)->contents[LFACE_FONT_INDEX] |
31178 | 2786 #define LFACE_INHERIT(LFACE) \ |
2787 XVECTOR (LFACE)->contents[LFACE_INHERIT_INDEX] | |
24995 | 2788 |
2789 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size | |
2790 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */ | |
2791 | |
2792 #define LFACEP(LFACE) \ | |
2793 (VECTORP (LFACE) \ | |
2794 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \ | |
2795 && EQ (XVECTOR (LFACE)->contents[0], Qface)) | |
2796 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2797 |
24995 | 2798 #if GLYPH_DEBUG |
2799 | |
2800 /* Check consistency of Lisp face attribute vector ATTRS. */ | |
2801 | |
2802 static void | |
2803 check_lface_attrs (attrs) | |
2804 Lisp_Object *attrs; | |
2805 { | |
2806 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX]) | |
2807 || STRINGP (attrs[LFACE_FAMILY_INDEX])); | |
2808 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX]) | |
2809 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX])); | |
2810 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX]) | |
31178 | 2811 || INTEGERP (attrs[LFACE_HEIGHT_INDEX]) |
2812 || FLOATP (attrs[LFACE_HEIGHT_INDEX]) | |
2813 || FUNCTIONP (attrs[LFACE_HEIGHT_INDEX])); | |
24995 | 2814 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX]) |
2815 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX])); | |
2816 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX]) | |
2817 || SYMBOLP (attrs[LFACE_SLANT_INDEX])); | |
2818 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX]) | |
2819 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX]) | |
2820 || STRINGP (attrs[LFACE_UNDERLINE_INDEX])); | |
2821 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX]) | |
2822 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX]) | |
2823 || STRINGP (attrs[LFACE_OVERLINE_INDEX])); | |
2824 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2825 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2826 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX])); | |
2827 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX]) | |
2828 || SYMBOLP (attrs[LFACE_BOX_INDEX]) | |
2829 || STRINGP (attrs[LFACE_BOX_INDEX]) | |
2830 || INTEGERP (attrs[LFACE_BOX_INDEX]) | |
2831 || CONSP (attrs[LFACE_BOX_INDEX])); | |
2832 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX]) | |
2833 || SYMBOLP (attrs[LFACE_INVERSE_INDEX])); | |
2834 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX]) | |
2835 || STRINGP (attrs[LFACE_FOREGROUND_INDEX])); | |
2836 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX]) | |
2837 || STRINGP (attrs[LFACE_BACKGROUND_INDEX])); | |
31178 | 2838 xassert (UNSPECIFIEDP (attrs[LFACE_INHERIT_INDEX]) |
2839 || NILP (attrs[LFACE_INHERIT_INDEX]) | |
2840 || SYMBOLP (attrs[LFACE_INHERIT_INDEX]) | |
2841 || CONSP (attrs[LFACE_INHERIT_INDEX])); | |
24995 | 2842 #ifdef HAVE_WINDOW_SYSTEM |
2843 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX]) | |
2844 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX]) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
2845 || !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
|
2846 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
|
2847 || NILP (attrs[LFACE_FONT_INDEX]) |
2f636fd2f714
(check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
Gerd Moellmann <gerd@gnu.org>
parents:
28230
diff
changeset
|
2848 || STRINGP (attrs[LFACE_FONT_INDEX])); |
24995 | 2849 #endif |
2850 } | |
2851 | |
2852 | |
2853 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */ | |
2854 | |
2855 static void | |
2856 check_lface (lface) | |
2857 Lisp_Object lface; | |
2858 { | |
2859 if (!NILP (lface)) | |
2860 { | |
2861 xassert (LFACEP (lface)); | |
2862 check_lface_attrs (XVECTOR (lface)->contents); | |
2863 } | |
2864 } | |
2865 | |
2866 #else /* GLYPH_DEBUG == 0 */ | |
2867 | |
2868 #define check_lface_attrs(attrs) (void) 0 | |
2869 #define check_lface(lface) (void) 0 | |
2870 | |
2871 #endif /* GLYPH_DEBUG == 0 */ | |
2872 | |
2873 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2874 /* 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
|
2875 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
|
2876 return that face's name. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2877 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2878 static Lisp_Object |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2879 resolve_face_name (face_name) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2880 Lisp_Object face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2881 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2882 Lisp_Object aliased; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2883 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2884 if (STRINGP (face_name)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2885 face_name = intern (XSTRING (face_name)->data); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2886 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2887 for (;;) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2888 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2889 aliased = Fget (face_name, Qface_alias); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2890 if (NILP (aliased)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2891 break; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2892 else |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2893 face_name = aliased; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2894 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2895 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2896 return face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2897 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2898 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2899 |
24995 | 2900 /* Return the face definition of FACE_NAME on frame F. F null means |
2901 return the global definition. FACE_NAME may be a string or a | |
2902 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
|
2903 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
|
2904 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
|
2905 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
|
2906 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
|
2907 name. */ |
24995 | 2908 |
2909 static INLINE Lisp_Object | |
2910 lface_from_face_name (f, face_name, signal_p) | |
2911 struct frame *f; | |
2912 Lisp_Object face_name; | |
2913 int signal_p; | |
2914 { | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2915 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2916 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2917 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
|
2918 |
24995 | 2919 if (f) |
2920 lface = assq_no_quit (face_name, f->face_alist); | |
2921 else | |
2922 lface = assq_no_quit (face_name, Vface_new_frame_defaults); | |
2923 | |
2924 if (CONSP (lface)) | |
2925 lface = XCDR (lface); | |
2926 else if (signal_p) | |
2927 signal_error ("Invalid face", face_name); | |
2928 | |
2929 check_lface (lface); | |
2930 return lface; | |
2931 } | |
2932 | |
2933 | |
2934 /* Get face attributes of face FACE_NAME from frame-local faces on | |
2935 frame F. Store the resulting attributes in ATTRS which must point | |
2936 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P | |
2937 is non-zero, signal an error if FACE_NAME does not name a face. | |
2938 Otherwise, value is zero if FACE_NAME is not a face. */ | |
2939 | |
2940 static INLINE int | |
2941 get_lface_attributes (f, face_name, attrs, signal_p) | |
2942 struct frame *f; | |
2943 Lisp_Object face_name; | |
2944 Lisp_Object *attrs; | |
2945 int signal_p; | |
2946 { | |
2947 Lisp_Object lface; | |
2948 int success_p; | |
2949 | |
2950 lface = lface_from_face_name (f, face_name, signal_p); | |
2951 if (!NILP (lface)) | |
2952 { | |
2953 bcopy (XVECTOR (lface)->contents, attrs, | |
2954 LFACE_VECTOR_SIZE * sizeof *attrs); | |
2955 success_p = 1; | |
2956 } | |
2957 else | |
2958 success_p = 0; | |
2959 | |
2960 return success_p; | |
2961 } | |
2962 | |
2963 | |
2964 /* Non-zero if all attributes in face attribute vector ATTRS are | |
2965 specified, i.e. are non-nil. */ | |
2966 | |
2967 static int | |
2968 lface_fully_specified_p (attrs) | |
2969 Lisp_Object *attrs; | |
2970 { | |
2971 int i; | |
2972 | |
2973 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
|
2974 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
|
2975 if (UNSPECIFIEDP (attrs[i])) |
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
2976 break; |
24995 | 2977 |
2978 return i == LFACE_VECTOR_SIZE; | |
2979 } | |
2980 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2981 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2982 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2983 /* 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
|
2984 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
|
2985 unspecified attributes of LFACE. The exception is `font' |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2986 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
|
2987 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2988 If FONTNAME is not available on frame F, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2989 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
|
2990 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
|
2991 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
|
2992 in LFACE and return 1. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2993 Otherwise, return 1. */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2994 |
24995 | 2995 static int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2996 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
|
2997 struct frame *f; |
24995 | 2998 Lisp_Object lface; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2999 Lisp_Object fontname; |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3000 int force_p, may_fail_p; |
24995 | 3001 { |
3002 struct font_name font; | |
3003 char *buffer; | |
3004 int pt; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3005 int have_xlfd_p; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3006 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3007 char *font_name = XSTRING (fontname)->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3008 struct font_info *font_info; |
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 /* 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
|
3011 fontset = fs_query_fontset (fontname, 0); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3012 if (fontset >= 0) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3013 font_name = XSTRING (fontset_ascii (fontset))->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3014 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3015 /* 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
|
3016 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
|
3017 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
|
3018 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
|
3019 later. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3020 BLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3021 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
|
3022 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3023 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3024 if (!font_info) |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3025 { |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3026 if (may_fail_p) |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3027 return 0; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3028 abort (); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3029 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3030 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3031 font.name = STRDUPA (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3032 have_xlfd_p = split_font_name (f, &font, 1); |
24995 | 3033 |
3034 /* 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
|
3035 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
|
3036 name conforming to XLFD, set normal values. */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3037 |
24995 | 3038 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface))) |
3039 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3040 Lisp_Object val; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3041 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3042 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3043 buffer = (char *) alloca (strlen (font.fields[XLFD_FAMILY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3044 + strlen (font.fields[XLFD_FOUNDRY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3045 + 2); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3046 sprintf (buffer, "%s-%s", font.fields[XLFD_FOUNDRY], |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3047 font.fields[XLFD_FAMILY]); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3048 val = build_string (buffer); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3049 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3050 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3051 val = build_string ("*"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3052 LFACE_FAMILY (lface) = val; |
24995 | 3053 } |
3054 | |
3055 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface))) | |
3056 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3057 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3058 pt = xlfd_point_size (f, &font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3059 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3060 pt = pixel_point_size (f, font_info->height * 10); |
24995 | 3061 xassert (pt > 0); |
3062 LFACE_HEIGHT (lface) = make_number (pt); | |
3063 } | |
3064 | |
3065 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3066 LFACE_SWIDTH (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3067 = have_xlfd_p ? xlfd_symbolic_swidth (&font) : Qnormal; |
24995 | 3068 |
3069 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3070 LFACE_WEIGHT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3071 = have_xlfd_p ? xlfd_symbolic_weight (&font) : Qnormal; |
24995 | 3072 |
3073 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3074 LFACE_SLANT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3075 = have_xlfd_p ? xlfd_symbolic_slant (&font) : Qnormal; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3076 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3077 LFACE_FONT (lface) = fontname; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3078 |
24995 | 3079 return 1; |
3080 } | |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
3081 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3082 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3083 |
3084 | |
31178 | 3085 /* Merges the face height FROM with the face height TO, and returns the |
3086 merged height. If FROM is an invalid height, then INVALID is | |
3087 returned instead. FROM may be a either an absolute face height or a | |
3088 `relative' height, and TO must be an absolute height. The returned | |
3089 value is always an absolute height. GCPRO is a lisp value that will | |
3090 be protected from garbage-collection if this function makes a call | |
3091 into lisp. */ | |
3092 | |
3093 Lisp_Object | |
3094 merge_face_heights (from, to, invalid, gcpro) | |
3095 Lisp_Object from, to, invalid, gcpro; | |
3096 { | |
3097 int result = 0; | |
3098 | |
3099 if (INTEGERP (from)) | |
3100 result = XINT (from); | |
3101 else if (NUMBERP (from)) | |
3102 result = XFLOATINT (from) * XINT (to); | |
3103 #if 0 /* Probably not so useful. */ | |
3104 else if (CONSP (from) && CONSP (XCDR (from))) | |
3105 { | |
3106 if (EQ (XCAR(from), Qplus) || EQ (XCAR(from), Qminus)) | |
3107 { | |
3108 if (INTEGERP (XCAR (XCDR (from)))) | |
3109 { | |
3110 int inc = XINT (XCAR (XCDR (from))); | |
3111 if (EQ (XCAR (from), Qminus)) | |
3112 inc = -inc; | |
3113 | |
3114 result = XFASTINT (to); | |
3115 if (result + inc > 0) | |
3116 /* Note that `underflows' don't mean FROM is invalid, so | |
3117 we just pin the result at TO if it would otherwise be | |
3118 negative or 0. */ | |
3119 result += inc; | |
3120 } | |
3121 } | |
3122 } | |
3123 #endif | |
3124 else if (FUNCTIONP (from)) | |
3125 { | |
3126 /* Call function with current height as argument. | |
3127 From is the new height. */ | |
3128 Lisp_Object args[2], height; | |
3129 struct gcpro gcpro1; | |
3130 | |
3131 GCPRO1 (gcpro); | |
3132 | |
3133 args[0] = from; | |
3134 args[1] = to; | |
32176
01156edaa3f9
(merge_face_heights): Use safe_call instead of
Gerd Moellmann <gerd@gnu.org>
parents:
31940
diff
changeset
|
3135 height = safe_call (2, args); |
31178 | 3136 |
3137 UNGCPRO; | |
3138 | |
3139 if (NUMBERP (height)) | |
3140 result = XFLOATINT (height); | |
3141 } | |
3142 | |
3143 if (result > 0) | |
3144 return make_number (result); | |
3145 else | |
3146 return invalid; | |
3147 } | |
3148 | |
3149 | |
3150 /* 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
|
3151 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
|
3152 completely specified and contain only absolute attributes. Every |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3153 specified attribute of FROM overrides the corresponding attribute of |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3154 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
|
3155 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
|
3156 face inheritance; it should be Qnil when called from other places. */ |
24995 | 3157 |
3158 static INLINE void | |
31178 | 3159 merge_face_vectors (f, from, to, cycle_check) |
3160 struct frame *f; | |
24995 | 3161 Lisp_Object *from, *to; |
31178 | 3162 Lisp_Object cycle_check; |
24995 | 3163 { |
3164 int i; | |
31178 | 3165 |
3166 /* If FROM inherits from some other faces, merge their attributes into | |
3167 TO before merging FROM's direct attributes. Note that an :inherit | |
3168 attribute of `unspecified' is the same as one of nil; we never | |
3169 merge :inherit attributes, so nil is more correct, but lots of | |
3170 other code uses `unspecified' as a generic value for face attributes. */ | |
3171 if (!UNSPECIFIEDP (from[LFACE_INHERIT_INDEX]) | |
3172 && !NILP (from[LFACE_INHERIT_INDEX])) | |
3173 merge_face_inheritance (f, from[LFACE_INHERIT_INDEX], to, cycle_check); | |
3174 | |
31221 | 3175 /* If TO specifies a :font attribute, and FROM specifies some |
3176 font-related attribute, we need to clear TO's :font attribute | |
3177 (because it will be inconsistent with whatever FROM specifies, and | |
3178 FROM takes precedence). */ | |
3179 if (!NILP (to[LFACE_FONT_INDEX]) | |
3180 && (!UNSPECIFIEDP (from[LFACE_FAMILY_INDEX]) | |
3181 || !UNSPECIFIEDP (from[LFACE_HEIGHT_INDEX]) | |
3182 || !UNSPECIFIEDP (from[LFACE_WEIGHT_INDEX]) | |
3183 || !UNSPECIFIEDP (from[LFACE_SLANT_INDEX]) | |
3184 || !UNSPECIFIEDP (from[LFACE_SWIDTH_INDEX]))) | |
3185 to[LFACE_FONT_INDEX] = Qnil; | |
3186 | |
24995 | 3187 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) |
3188 if (!UNSPECIFIEDP (from[i])) | |
31178 | 3189 if (i == LFACE_HEIGHT_INDEX && !INTEGERP (from[i])) |
3190 to[i] = merge_face_heights (from[i], to[i], to[i], cycle_check); | |
3191 else | |
3192 to[i] = from[i]; | |
3193 | |
3194 /* TO is always an absolute face, which should inherit from nothing. | |
3195 We blindly copy the :inherit attribute above and fix it up here. */ | |
3196 to[LFACE_INHERIT_INDEX] = Qnil; | |
3197 } | |
3198 | |
31202
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
3199 |
31178 | 3200 /* Checks the `cycle check' variable CHECK to see if it indicates that |
3201 EL is part of a cycle; CHECK must be either Qnil or a value returned | |
3202 by an earlier use of CYCLE_CHECK. SUSPICIOUS is the number of | |
3203 elements after which a cycle might be suspected; after that many | |
3204 elements, this macro begins consing in order to keep more precise | |
3205 track of elements. | |
3206 | |
3207 Returns NIL if a cycle was detected, otherwise a new value for CHECK | |
3208 that includes EL. | |
3209 | |
3210 CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so | |
3211 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
|
3212 |
31522
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3213 #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
|
3214 (NILP (check) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3215 ? make_number (0) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3216 : (INTEGERP (check) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3217 ? (XFASTINT (check) < (suspicious) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3218 ? make_number (XFASTINT (check) + 1) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3219 : Fcons (el, Qnil)) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3220 : (!NILP (Fmemq ((el), (check))) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3221 ? Qnil \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3222 : Fcons ((el), (check))))) |
31178 | 3223 |
31221 | 3224 |
3225 /* Merge face attributes from the face on frame F whose name is | |
3226 INHERITS, into the vector of face attributes TO; INHERITS may also be | |
3227 a list of face names, in which case they are applied in order. | |
3228 CYCLE_CHECK is used to detect loops in face inheritance. | |
3229 Returns true if any of the inherited attributes are `font-related'. */ | |
3230 | |
31178 | 3231 static void |
3232 merge_face_inheritance (f, inherit, to, cycle_check) | |
3233 struct frame *f; | |
3234 Lisp_Object inherit; | |
3235 Lisp_Object *to; | |
3236 Lisp_Object cycle_check; | |
3237 { | |
3238 if (SYMBOLP (inherit) && !EQ (inherit, Qunspecified)) | |
3239 /* Inherit from the named face INHERIT. */ | |
3240 { | |
3241 Lisp_Object lface; | |
3242 | |
3243 /* Make sure we're not in an inheritance loop. */ | |
3244 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15); | |
3245 if (NILP (cycle_check)) | |
3246 /* Cycle detected, ignore any further inheritance. */ | |
3247 return; | |
3248 | |
3249 lface = lface_from_face_name (f, inherit, 0); | |
3250 if (!NILP (lface)) | |
3251 merge_face_vectors (f, XVECTOR (lface)->contents, to, cycle_check); | |
3252 } | |
3253 else if (CONSP (inherit)) | |
3254 /* Handle a list of inherited faces by calling ourselves recursively | |
3255 on each element. Note that we only do so for symbol elements, so | |
3256 it's not possible to infinitely recurse. */ | |
3257 { | |
3258 while (CONSP (inherit)) | |
3259 { | |
3260 if (SYMBOLP (XCAR (inherit))) | |
3261 merge_face_inheritance (f, XCAR (inherit), to, cycle_check); | |
3262 | |
3263 /* Check for a circular inheritance list. */ | |
3264 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15); | |
3265 if (NILP (cycle_check)) | |
3266 /* Cycle detected. */ | |
3267 break; | |
3268 | |
3269 inherit = XCDR (inherit); | |
3270 } | |
3271 } | |
24995 | 3272 } |
3273 | |
3274 | |
3275 /* Given a Lisp face attribute vector TO and a Lisp object PROP that | |
3276 is a face property, determine the resulting face attributes on | |
3277 frame F, and store them in TO. PROP may be a single face | |
3278 specification or a list of such specifications. Each face | |
3279 specification can be | |
3280 | |
3281 1. A symbol or string naming a Lisp face. | |
3282 | |
3283 2. A property list of the form (KEYWORD VALUE ...) where each | |
3284 KEYWORD is a face attribute name, and value is an appropriate value | |
3285 for that attribute. | |
3286 | |
3287 3. Conses or the form (FOREGROUND-COLOR . COLOR) or | |
3288 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is | |
3289 for compatibility with 20.2. | |
3290 | |
3291 Face specifications earlier in lists take precedence over later | |
3292 specifications. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3293 |
24995 | 3294 static void |
3295 merge_face_vector_with_property (f, to, prop) | |
3296 struct frame *f; | |
3297 Lisp_Object *to; | |
3298 Lisp_Object prop; | |
3299 { | |
3300 if (CONSP (prop)) | |
3301 { | |
3302 Lisp_Object first = XCAR (prop); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3303 |
24995 | 3304 if (EQ (first, Qforeground_color) |
3305 || EQ (first, Qbackground_color)) | |
3306 { | |
3307 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR | |
3308 . COLOR). COLOR must be a string. */ | |
3309 Lisp_Object color_name = XCDR (prop); | |
3310 Lisp_Object color = first; | |
3311 | |
3312 if (STRINGP (color_name)) | |
3313 { | |
3314 if (EQ (color, Qforeground_color)) | |
3315 to[LFACE_FOREGROUND_INDEX] = color_name; | |
3316 else | |
3317 to[LFACE_BACKGROUND_INDEX] = color_name; | |
3318 } | |
3319 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3320 add_to_log ("Invalid face color", color_name, Qnil); |
24995 | 3321 } |
3322 else if (SYMBOLP (first) | |
3323 && *XSYMBOL (first)->name->data == ':') | |
3324 { | |
3325 /* Assume this is the property list form. */ | |
3326 while (CONSP (prop) && CONSP (XCDR (prop))) | |
3327 { | |
3328 Lisp_Object keyword = XCAR (prop); | |
3329 Lisp_Object value = XCAR (XCDR (prop)); | |
3330 | |
3331 if (EQ (keyword, QCfamily)) | |
3332 { | |
3333 if (STRINGP (value)) | |
3334 to[LFACE_FAMILY_INDEX] = value; | |
3335 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3336 add_to_log ("Invalid face font family", value, Qnil); |
24995 | 3337 } |
3338 else if (EQ (keyword, QCheight)) | |
3339 { | |
31178 | 3340 Lisp_Object new_height = |
3341 merge_face_heights (value, to[LFACE_HEIGHT_INDEX], | |
3342 Qnil, Qnil); | |
3343 | |
3344 if (NILP (new_height)) | |
3345 add_to_log ("Invalid face font height", value, Qnil); | |
24995 | 3346 else |
31178 | 3347 to[LFACE_HEIGHT_INDEX] = new_height; |
24995 | 3348 } |
3349 else if (EQ (keyword, QCweight)) | |
3350 { | |
3351 if (SYMBOLP (value) | |
3352 && face_numeric_weight (value) >= 0) | |
3353 to[LFACE_WEIGHT_INDEX] = value; | |
3354 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3355 add_to_log ("Invalid face weight", value, Qnil); |
24995 | 3356 } |
3357 else if (EQ (keyword, QCslant)) | |
3358 { | |
3359 if (SYMBOLP (value) | |
3360 && face_numeric_slant (value) >= 0) | |
3361 to[LFACE_SLANT_INDEX] = value; | |
3362 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3363 add_to_log ("Invalid face slant", value, Qnil); |
24995 | 3364 } |
3365 else if (EQ (keyword, QCunderline)) | |
3366 { | |
3367 if (EQ (value, Qt) | |
3368 || NILP (value) | |
3369 || STRINGP (value)) | |
3370 to[LFACE_UNDERLINE_INDEX] = value; | |
3371 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3372 add_to_log ("Invalid face underline", value, Qnil); |
24995 | 3373 } |
3374 else if (EQ (keyword, QCoverline)) | |
3375 { | |
3376 if (EQ (value, Qt) | |
3377 || NILP (value) | |
3378 || STRINGP (value)) | |
3379 to[LFACE_OVERLINE_INDEX] = value; | |
3380 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3381 add_to_log ("Invalid face overline", value, Qnil); |
24995 | 3382 } |
3383 else if (EQ (keyword, QCstrike_through)) | |
3384 { | |
3385 if (EQ (value, Qt) | |
3386 || NILP (value) | |
3387 || STRINGP (value)) | |
3388 to[LFACE_STRIKE_THROUGH_INDEX] = value; | |
3389 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3390 add_to_log ("Invalid face strike-through", value, Qnil); |
24995 | 3391 } |
3392 else if (EQ (keyword, QCbox)) | |
3393 { | |
3394 if (EQ (value, Qt)) | |
3395 value = make_number (1); | |
3396 if (INTEGERP (value) | |
3397 || STRINGP (value) | |
3398 || CONSP (value) | |
3399 || NILP (value)) | |
3400 to[LFACE_BOX_INDEX] = value; | |
3401 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3402 add_to_log ("Invalid face box", value, Qnil); |
24995 | 3403 } |
3404 else if (EQ (keyword, QCinverse_video) | |
3405 || EQ (keyword, QCreverse_video)) | |
3406 { | |
3407 if (EQ (value, Qt) || NILP (value)) | |
3408 to[LFACE_INVERSE_INDEX] = value; | |
3409 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3410 add_to_log ("Invalid face inverse-video", value, Qnil); |
24995 | 3411 } |
3412 else if (EQ (keyword, QCforeground)) | |
3413 { | |
3414 if (STRINGP (value)) | |
3415 to[LFACE_FOREGROUND_INDEX] = value; | |
3416 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3417 add_to_log ("Invalid face foreground", value, Qnil); |
24995 | 3418 } |
3419 else if (EQ (keyword, QCbackground)) | |
3420 { | |
3421 if (STRINGP (value)) | |
3422 to[LFACE_BACKGROUND_INDEX] = value; | |
3423 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3424 add_to_log ("Invalid face background", value, Qnil); |
24995 | 3425 } |
3426 else if (EQ (keyword, QCstipple)) | |
3427 { | |
3428 #ifdef HAVE_X_WINDOWS | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3429 Lisp_Object pixmap_p = Fbitmap_spec_p (value); |
24995 | 3430 if (!NILP (pixmap_p)) |
3431 to[LFACE_STIPPLE_INDEX] = value; | |
3432 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3433 add_to_log ("Invalid face stipple", value, Qnil); |
24995 | 3434 #endif |
3435 } | |
3436 else if (EQ (keyword, QCwidth)) | |
3437 { | |
3438 if (SYMBOLP (value) | |
3439 && face_numeric_swidth (value) >= 0) | |
3440 to[LFACE_SWIDTH_INDEX] = value; | |
3441 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3442 add_to_log ("Invalid face width", value, Qnil); |
24995 | 3443 } |
31178 | 3444 else if (EQ (keyword, QCinherit)) |
3445 { | |
3446 if (SYMBOLP (value)) | |
3447 to[LFACE_INHERIT_INDEX] = value; | |
3448 else | |
3449 { | |
3450 Lisp_Object tail; | |
3451 for (tail = value; CONSP (tail); tail = XCDR (tail)) | |
3452 if (!SYMBOLP (XCAR (tail))) | |
3453 break; | |
3454 if (NILP (tail)) | |
3455 to[LFACE_INHERIT_INDEX] = value; | |
3456 else | |
3457 add_to_log ("Invalid face inherit", value, Qnil); | |
3458 } | |
3459 } | |
24995 | 3460 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3461 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
|
3462 keyword, Qnil); |
24995 | 3463 |
3464 prop = XCDR (XCDR (prop)); | |
3465 } | |
3466 } | |
3467 else | |
3468 { | |
3469 /* This is a list of face specs. Specifications at the | |
3470 beginning of the list take precedence over later | |
3471 specifications, so we have to merge starting with the | |
3472 last specification. */ | |
3473 Lisp_Object next = XCDR (prop); | |
3474 if (!NILP (next)) | |
3475 merge_face_vector_with_property (f, to, next); | |
3476 merge_face_vector_with_property (f, to, first); | |
3477 } | |
3478 } | |
3479 else | |
3480 { | |
3481 /* PROP ought to be a face name. */ | |
3482 Lisp_Object lface = lface_from_face_name (f, prop, 0); | |
3483 if (NILP (lface)) | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3484 add_to_log ("Invalid face text property value: %s", prop, Qnil); |
24995 | 3485 else |
31178 | 3486 merge_face_vectors (f, XVECTOR (lface)->contents, to, Qnil); |
24995 | 3487 } |
3488 } | |
3489 | |
3490 | |
3491 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face, | |
3492 Sinternal_make_lisp_face, 1, 2, 0, | |
3493 "Make FACE, a symbol, a Lisp face with all attributes nil.\n\ | |
3494 If FACE was not known as a face before, create a new one.\n\ | |
3495 If optional argument FRAME is specified, make a frame-local face\n\ | |
3496 for that frame. Otherwise operate on the global face definition.\n\ | |
3497 Value is a vector of face attributes.") | |
3498 (face, frame) | |
3499 Lisp_Object face, frame; | |
3500 { | |
3501 Lisp_Object global_lface, lface; | |
3502 struct frame *f; | |
3503 int i; | |
3504 | |
3505 CHECK_SYMBOL (face, 0); | |
3506 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
|
3507 |
24995 | 3508 if (!NILP (frame)) |
3509 { | |
3510 CHECK_LIVE_FRAME (frame, 1); | |
3511 f = XFRAME (frame); | |
3512 lface = lface_from_face_name (f, face, 0); | |
3513 } | |
3514 else | |
3515 f = NULL, lface = Qnil; | |
3516 | |
3517 /* Add a global definition if there is none. */ | |
3518 if (NILP (global_lface)) | |
3519 { | |
3520 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3521 Qunspecified); | |
3522 XVECTOR (global_lface)->contents[0] = Qface; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3523 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface), |
24995 | 3524 Vface_new_frame_defaults); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3525 |
24995 | 3526 /* Assign the new Lisp face a unique ID. The mapping from Lisp |
3527 face id to Lisp face is given by the vector lface_id_to_name. | |
3528 The mapping from Lisp face to Lisp face id is given by the | |
3529 property `face' of the Lisp face name. */ | |
3530 if (next_lface_id == lface_id_to_name_size) | |
3531 { | |
3532 int new_size = max (50, 2 * lface_id_to_name_size); | |
3533 int sz = new_size * sizeof *lface_id_to_name; | |
3534 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz); | |
3535 lface_id_to_name_size = new_size; | |
3536 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3537 |
24995 | 3538 lface_id_to_name[next_lface_id] = face; |
3539 Fput (face, Qface, make_number (next_lface_id)); | |
3540 ++next_lface_id; | |
3541 } | |
3542 else if (f == NULL) | |
3543 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3544 XVECTOR (global_lface)->contents[i] = Qunspecified; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3545 |
24995 | 3546 /* Add a frame-local definition. */ |
3547 if (f) | |
3548 { | |
3549 if (NILP (lface)) | |
3550 { | |
3551 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3552 Qunspecified); | |
3553 XVECTOR (lface)->contents[0] = Qface; | |
3554 f->face_alist = Fcons (Fcons (face, lface), f->face_alist); | |
3555 } | |
3556 else | |
3557 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3558 XVECTOR (lface)->contents[i] = Qunspecified; | |
3559 } | |
3560 else | |
3561 lface = global_lface; | |
3562 | |
3563 xassert (LFACEP (lface)); | |
3564 check_lface (lface); | |
3565 return lface; | |
3566 } | |
3567 | |
3568 | |
3569 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p, | |
3570 Sinternal_lisp_face_p, 1, 2, 0, | |
3571 "Return non-nil if FACE names a face.\n\ | |
3572 If optional second parameter FRAME is non-nil, check for the\n\ | |
3573 existence of a frame-local face with name FACE on that frame.\n\ | |
3574 Otherwise check for the existence of a global face.") | |
3575 (face, frame) | |
3576 Lisp_Object face, frame; | |
3577 { | |
3578 Lisp_Object lface; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3579 |
24995 | 3580 if (!NILP (frame)) |
3581 { | |
3582 CHECK_LIVE_FRAME (frame, 1); | |
3583 lface = lface_from_face_name (XFRAME (frame), face, 0); | |
3584 } | |
3585 else | |
3586 lface = lface_from_face_name (NULL, face, 0); | |
3587 | |
3588 return lface; | |
3589 } | |
3590 | |
3591 | |
3592 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face, | |
3593 Sinternal_copy_lisp_face, 4, 4, 0, | |
3594 "Copy face FROM to TO.\n\ | |
3595 If FRAME it t, copy the global face definition of FROM to the\n\ | |
3596 global face definition of TO. Otherwise, copy the frame-local\n\ | |
3597 definition of FROM on FRAME to the frame-local definition of TO\n\ | |
3598 on NEW-FRAME, or FRAME if NEW-FRAME is nil.\n\ | |
3599 \n\ | |
3600 Value is TO.") | |
3601 (from, to, frame, new_frame) | |
3602 Lisp_Object from, to, frame, new_frame; | |
3603 { | |
3604 Lisp_Object lface, copy; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3605 |
24995 | 3606 CHECK_SYMBOL (from, 0); |
3607 CHECK_SYMBOL (to, 1); | |
3608 if (NILP (new_frame)) | |
3609 new_frame = frame; | |
3610 | |
3611 if (EQ (frame, Qt)) | |
3612 { | |
3613 /* Copy global definition of FROM. We don't make copies of | |
3614 strings etc. because 20.2 didn't do it either. */ | |
3615 lface = lface_from_face_name (NULL, from, 1); | |
3616 copy = Finternal_make_lisp_face (to, Qnil); | |
3617 } | |
3618 else | |
3619 { | |
3620 /* Copy frame-local definition of FROM. */ | |
3621 CHECK_LIVE_FRAME (frame, 2); | |
3622 CHECK_LIVE_FRAME (new_frame, 3); | |
3623 lface = lface_from_face_name (XFRAME (frame), from, 1); | |
3624 copy = Finternal_make_lisp_face (to, new_frame); | |
3625 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3626 |
24995 | 3627 bcopy (XVECTOR (lface)->contents, XVECTOR (copy)->contents, |
3628 LFACE_VECTOR_SIZE * sizeof (Lisp_Object)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3629 |
24995 | 3630 return to; |
3631 } | |
3632 | |
3633 | |
3634 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute, | |
3635 Sinternal_set_lisp_face_attribute, 3, 4, 0, | |
3636 "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
|
3637 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
|
3638 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
|
3639 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
|
3640 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
|
3641 for new frames.") |
24995 | 3642 (face, attr, value, frame) |
3643 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
|
3644 { |
24995 | 3645 Lisp_Object lface; |
3646 Lisp_Object old_value = Qnil; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3647 /* Set 1 if ATTR is QCfont. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3648 int font_attr_p = 0; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3649 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */ |
24995 | 3650 int font_related_attr_p = 0; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3651 |
24995 | 3652 CHECK_SYMBOL (face, 0); |
3653 CHECK_SYMBOL (attr, 1); | |
3654 | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3655 face = resolve_face_name (face); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3656 |
31440
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3657 /* 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
|
3658 default for new frames. */ |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3659 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
|
3660 { |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3661 Lisp_Object tail; |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
3662 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
|
3663 FOR_EACH_FRAME (tail, frame) |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3664 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
|
3665 return face; |
31440
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3666 } |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3667 |
24995 | 3668 /* Set lface to the Lisp attribute vector of FACE. */ |
3669 if (EQ (frame, Qt)) | |
3670 lface = lface_from_face_name (NULL, face, 1); | |
3671 else | |
3672 { | |
3673 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3674 frame = selected_frame; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3675 |
24995 | 3676 CHECK_LIVE_FRAME (frame, 3); |
3677 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
|
3678 |
24995 | 3679 /* If a frame-local face doesn't exist yet, create one. */ |
3680 if (NILP (lface)) | |
3681 lface = Finternal_make_lisp_face (face, frame); | |
3682 } | |
3683 | |
3684 if (EQ (attr, QCfamily)) | |
3685 { | |
3686 if (!UNSPECIFIEDP (value)) | |
3687 { | |
3688 CHECK_STRING (value, 3); | |
3689 if (XSTRING (value)->size == 0) | |
3690 signal_error ("Invalid face family", value); | |
3691 } | |
3692 old_value = LFACE_FAMILY (lface); | |
3693 LFACE_FAMILY (lface) = value; | |
3694 font_related_attr_p = 1; | |
3695 } | |
3696 else if (EQ (attr, QCheight)) | |
3697 { | |
3698 if (!UNSPECIFIEDP (value)) | |
3699 { | |
31519
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3700 Lisp_Object test = |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3701 (EQ (face, Qdefault) ? value : |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3702 /* 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
|
3703 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
|
3704 merge_face_heights (value, make_number(10), Qnil, Qnil)); |
31178 | 3705 |
3706 if (!INTEGERP(test) || XINT(test) <= 0) | |
24995 | 3707 signal_error ("Invalid face height", value); |
3708 } | |
31178 | 3709 |
24995 | 3710 old_value = LFACE_HEIGHT (lface); |
3711 LFACE_HEIGHT (lface) = value; | |
3712 font_related_attr_p = 1; | |
3713 } | |
3714 else if (EQ (attr, QCweight)) | |
3715 { | |
3716 if (!UNSPECIFIEDP (value)) | |
3717 { | |
3718 CHECK_SYMBOL (value, 3); | |
3719 if (face_numeric_weight (value) < 0) | |
3720 signal_error ("Invalid face weight", value); | |
3721 } | |
3722 old_value = LFACE_WEIGHT (lface); | |
3723 LFACE_WEIGHT (lface) = value; | |
3724 font_related_attr_p = 1; | |
3725 } | |
3726 else if (EQ (attr, QCslant)) | |
3727 { | |
3728 if (!UNSPECIFIEDP (value)) | |
3729 { | |
3730 CHECK_SYMBOL (value, 3); | |
3731 if (face_numeric_slant (value) < 0) | |
3732 signal_error ("Invalid face slant", value); | |
3733 } | |
3734 old_value = LFACE_SLANT (lface); | |
3735 LFACE_SLANT (lface) = value; | |
3736 font_related_attr_p = 1; | |
3737 } | |
3738 else if (EQ (attr, QCunderline)) | |
3739 { | |
3740 if (!UNSPECIFIEDP (value)) | |
3741 if ((SYMBOLP (value) | |
3742 && !EQ (value, Qt) | |
3743 && !EQ (value, Qnil)) | |
3744 /* Underline color. */ | |
3745 || (STRINGP (value) | |
3746 && XSTRING (value)->size == 0)) | |
3747 signal_error ("Invalid face underline", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3748 |
24995 | 3749 old_value = LFACE_UNDERLINE (lface); |
3750 LFACE_UNDERLINE (lface) = value; | |
3751 } | |
3752 else if (EQ (attr, QCoverline)) | |
3753 { | |
3754 if (!UNSPECIFIEDP (value)) | |
3755 if ((SYMBOLP (value) | |
3756 && !EQ (value, Qt) | |
3757 && !EQ (value, Qnil)) | |
3758 /* Overline color. */ | |
3759 || (STRINGP (value) | |
3760 && XSTRING (value)->size == 0)) | |
3761 signal_error ("Invalid face overline", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3762 |
24995 | 3763 old_value = LFACE_OVERLINE (lface); |
3764 LFACE_OVERLINE (lface) = value; | |
3765 } | |
3766 else if (EQ (attr, QCstrike_through)) | |
3767 { | |
3768 if (!UNSPECIFIEDP (value)) | |
3769 if ((SYMBOLP (value) | |
3770 && !EQ (value, Qt) | |
3771 && !EQ (value, Qnil)) | |
3772 /* Strike-through color. */ | |
3773 || (STRINGP (value) | |
3774 && XSTRING (value)->size == 0)) | |
3775 signal_error ("Invalid face strike-through", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3776 |
24995 | 3777 old_value = LFACE_STRIKE_THROUGH (lface); |
3778 LFACE_STRIKE_THROUGH (lface) = value; | |
3779 } | |
3780 else if (EQ (attr, QCbox)) | |
3781 { | |
3782 int valid_p; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3783 |
24995 | 3784 /* Allow t meaning a simple box of width 1 in foreground color |
3785 of the face. */ | |
3786 if (EQ (value, Qt)) | |
3787 value = make_number (1); | |
3788 | |
3789 if (UNSPECIFIEDP (value)) | |
3790 valid_p = 1; | |
3791 else if (NILP (value)) | |
3792 valid_p = 1; | |
3793 else if (INTEGERP (value)) | |
3794 valid_p = XINT (value) > 0; | |
3795 else if (STRINGP (value)) | |
3796 valid_p = XSTRING (value)->size > 0; | |
3797 else if (CONSP (value)) | |
3798 { | |
3799 Lisp_Object tem; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3800 |
24995 | 3801 tem = value; |
3802 while (CONSP (tem)) | |
3803 { | |
3804 Lisp_Object k, v; | |
3805 | |
3806 k = XCAR (tem); | |
3807 tem = XCDR (tem); | |
3808 if (!CONSP (tem)) | |
3809 break; | |
3810 v = XCAR (tem); | |
3811 tem = XCDR (tem); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3812 |
24995 | 3813 if (EQ (k, QCline_width)) |
3814 { | |
3815 if (!INTEGERP (v) || XINT (v) <= 0) | |
3816 break; | |
3817 } | |
3818 else if (EQ (k, QCcolor)) | |
3819 { | |
3820 if (!STRINGP (v) || XSTRING (v)->size == 0) | |
3821 break; | |
3822 } | |
3823 else if (EQ (k, QCstyle)) | |
3824 { | |
3825 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button)) | |
3826 break; | |
3827 } | |
3828 else | |
3829 break; | |
3830 } | |
3831 | |
3832 valid_p = NILP (tem); | |
3833 } | |
3834 else | |
3835 valid_p = 0; | |
3836 | |
3837 if (!valid_p) | |
3838 signal_error ("Invalid face box", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3839 |
24995 | 3840 old_value = LFACE_BOX (lface); |
3841 LFACE_BOX (lface) = value; | |
3842 } | |
3843 else if (EQ (attr, QCinverse_video) | |
3844 || EQ (attr, QCreverse_video)) | |
3845 { | |
3846 if (!UNSPECIFIEDP (value)) | |
3847 { | |
3848 CHECK_SYMBOL (value, 3); | |
3849 if (!EQ (value, Qt) && !NILP (value)) | |
3850 signal_error ("Invalid inverse-video face attribute value", value); | |
3851 } | |
3852 old_value = LFACE_INVERSE (lface); | |
3853 LFACE_INVERSE (lface) = value; | |
3854 } | |
3855 else if (EQ (attr, QCforeground)) | |
3856 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3857 if (!UNSPECIFIEDP (value)) |
24995 | 3858 { |
3859 /* Don't check for valid color names here because it depends | |
3860 on the frame (display) whether the color will be valid | |
3861 when the face is realized. */ | |
3862 CHECK_STRING (value, 3); | |
3863 if (XSTRING (value)->size == 0) | |
3864 signal_error ("Empty foreground color value", value); | |
3865 } | |
3866 old_value = LFACE_FOREGROUND (lface); | |
3867 LFACE_FOREGROUND (lface) = value; | |
3868 } | |
3869 else if (EQ (attr, QCbackground)) | |
3870 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3871 if (!UNSPECIFIEDP (value)) |
24995 | 3872 { |
3873 /* Don't check for valid color names here because it depends | |
3874 on the frame (display) whether the color will be valid | |
3875 when the face is realized. */ | |
3876 CHECK_STRING (value, 3); | |
3877 if (XSTRING (value)->size == 0) | |
3878 signal_error ("Empty background color value", value); | |
3879 } | |
3880 old_value = LFACE_BACKGROUND (lface); | |
3881 LFACE_BACKGROUND (lface) = value; | |
3882 } | |
3883 else if (EQ (attr, QCstipple)) | |
3884 { | |
3885 #ifdef HAVE_X_WINDOWS | |
3886 if (!UNSPECIFIEDP (value) | |
3887 && !NILP (value) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3888 && NILP (Fbitmap_spec_p (value))) |
24995 | 3889 signal_error ("Invalid stipple attribute", value); |
3890 old_value = LFACE_STIPPLE (lface); | |
3891 LFACE_STIPPLE (lface) = value; | |
3892 #endif /* HAVE_X_WINDOWS */ | |
3893 } | |
3894 else if (EQ (attr, QCwidth)) | |
3895 { | |
3896 if (!UNSPECIFIEDP (value)) | |
3897 { | |
3898 CHECK_SYMBOL (value, 3); | |
3899 if (face_numeric_swidth (value) < 0) | |
3900 signal_error ("Invalid face width", value); | |
3901 } | |
3902 old_value = LFACE_SWIDTH (lface); | |
3903 LFACE_SWIDTH (lface) = value; | |
3904 font_related_attr_p = 1; | |
3905 } | |
3906 else if (EQ (attr, QCfont)) | |
3907 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3908 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3909 /* Set font-related attributes of the Lisp face from an |
3910 XLFD font name. */ | |
3911 struct frame *f; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3912 Lisp_Object tmp; |
24995 | 3913 |
3914 CHECK_STRING (value, 3); | |
3915 if (EQ (frame, Qt)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3916 f = SELECTED_FRAME (); |
24995 | 3917 else |
3918 f = check_x_frame (frame); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3919 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3920 /* 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
|
3921 a case, use the base fontset name. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3922 tmp = Fquery_fontset (value, Qnil); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3923 if (!NILP (tmp)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3924 value = tmp; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3925 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3926 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
|
3927 signal_error ("Invalid font or fontset name", value); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3928 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3929 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
|
3930 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3931 } |
31178 | 3932 else if (EQ (attr, QCinherit)) |
3933 { | |
3934 Lisp_Object tail; | |
3935 if (SYMBOLP (value)) | |
3936 tail = Qnil; | |
3937 else | |
3938 for (tail = value; CONSP (tail); tail = XCDR (tail)) | |
3939 if (!SYMBOLP (XCAR (tail))) | |
3940 break; | |
3941 if (NILP (tail)) | |
3942 LFACE_INHERIT (lface) = value; | |
3943 else | |
31202
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
3944 signal_error ("Invalid face inheritance", value); |
31178 | 3945 } |
24995 | 3946 else if (EQ (attr, QCbold)) |
3947 { | |
3948 old_value = LFACE_WEIGHT (lface); | |
3949 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold; | |
3950 font_related_attr_p = 1; | |
3951 } | |
3952 else if (EQ (attr, QCitalic)) | |
3953 { | |
3954 old_value = LFACE_SLANT (lface); | |
3955 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic; | |
3956 font_related_attr_p = 1; | |
3957 } | |
3958 else | |
3959 signal_error ("Invalid face attribute name", attr); | |
3960 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3961 if (font_related_attr_p |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3962 && !UNSPECIFIEDP (value)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3963 /* 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
|
3964 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
|
3965 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
|
3966 selection mechanism doesn't use it. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3967 LFACE_FONT (lface) = Qnil; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3968 |
24995 | 3969 /* Changing a named face means that all realized faces depending on |
3970 that face are invalid. Since we cannot tell which realized faces | |
3971 depend on the face, make sure they are all removed. This is done | |
3972 by incrementing face_change_count. The next call to | |
3973 init_iterator will then free realized faces. */ | |
3974 if (!EQ (frame, Qt) | |
3975 && (EQ (attr, QCfont) | |
3976 || NILP (Fequal (old_value, value)))) | |
3977 { | |
3978 ++face_change_count; | |
3979 ++windows_or_buffers_changed; | |
3980 } | |
3981 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3982 #ifdef HAVE_WINDOW_SYSTEM |
25592
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 if (!EQ (frame, Qt) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3985 && !UNSPECIFIEDP (value) |
24995 | 3986 && NILP (Fequal (old_value, value))) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3987 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3988 Lisp_Object param; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3989 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3990 param = Qnil; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3991 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3992 if (EQ (face, Qdefault)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3993 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3994 /* 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
|
3995 reflected in changed `font' frame parameters. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3996 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
|
3997 && lface_fully_specified_p (XVECTOR (lface)->contents)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3998 set_font_frame_param (frame, lface); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3999 else if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4000 param = Qforeground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4001 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4002 param = Qbackground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4003 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4004 #ifndef WINDOWSNT |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4005 else if (EQ (face, Qscroll_bar)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4006 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4007 /* 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
|
4008 `scroll-bar-foreground' and `scroll-bar-background'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4009 if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4010 param = Qscroll_bar_foreground; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4011 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4012 param = Qscroll_bar_background; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4013 } |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
4014 #endif /* not WINDOWSNT */ |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4015 else if (EQ (face, Qborder)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4016 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4017 /* Changing background color of `border' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4018 `border-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4019 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4020 param = Qborder_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4021 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4022 else if (EQ (face, Qcursor)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4023 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4024 /* Changing background color of `cursor' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4025 `cursor-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4026 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4027 param = Qcursor_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4028 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4029 else if (EQ (face, Qmouse)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4030 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4031 /* Changing background color of `mouse' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4032 `mouse-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4033 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4034 param = Qmouse_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4035 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4036 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4037 if (!NILP (param)) |
31449
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4038 { |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4039 Lisp_Object cons; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4040 cons = XCAR (Vparam_value_alist); |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4041 XCAR (cons) = param; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4042 XCDR (cons) = value; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4043 Fmodify_frame_parameters (frame, Vparam_value_alist); |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4044 } |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4045 } |
24995 | 4046 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4047 #endif /* HAVE_WINDOW_SYSTEM */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4048 |
24995 | 4049 return face; |
4050 } | |
4051 | |
4052 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4053 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4054 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4055 /* 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
|
4056 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
|
4057 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
|
4058 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
|
4059 there's no matching font, signals an error. */ |
24995 | 4060 |
4061 static void | |
4062 set_font_frame_param (frame, lface) | |
4063 Lisp_Object frame, lface; | |
4064 { | |
4065 struct frame *f = XFRAME (frame); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4066 Lisp_Object font_name; |
24995 | 4067 char *font; |
4068 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4069 if (STRINGP (LFACE_FONT (lface))) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4070 font_name = LFACE_FONT (lface); |
24995 | 4071 else |
4072 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4073 /* 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
|
4074 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
|
4075 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
|
4076 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
|
4077 if (!font) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4078 error ("No font matches the specified attribute"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4079 font_name = build_string (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4080 xfree (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4081 } |
31292
b176433657cc
(set_font_frame_param): Use Fmodify_frame_parameters
Gerd Moellmann <gerd@gnu.org>
parents:
31259
diff
changeset
|
4082 |
b176433657cc
(set_font_frame_param): Use Fmodify_frame_parameters
Gerd Moellmann <gerd@gnu.org>
parents:
31259
diff
changeset
|
4083 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font_name), Qnil)); |
24995 | 4084 } |
4085 | |
4086 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4087 /* 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
|
4088 has been assigned the value NEW_VALUE. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4089 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4090 void |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4091 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
|
4092 struct frame *f; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4093 Lisp_Object param, new_value; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4094 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4095 Lisp_Object lface; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4096 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4097 /* 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
|
4098 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
|
4099 face-set-after-frame-defaults. */ |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4100 if (NILP (f->face_alist)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4101 return; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4102 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4103 if (EQ (param, Qforeground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4104 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4105 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4106 LFACE_FOREGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4107 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4108 realize_basic_faces (f); |
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 else if (EQ (param, Qbackground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4111 { |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4112 Lisp_Object frame; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4113 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4114 /* 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
|
4115 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
|
4116 frame-update-face-colors to do that. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4117 XSETFRAME (frame, f); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4118 call1 (Qframe_update_face_colors, frame); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4119 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4120 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4121 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4122 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4123 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4124 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4125 if (EQ (param, Qborder_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4126 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4127 lface = lface_from_face_name (f, Qborder, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4128 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4129 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4130 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4131 else if (EQ (param, Qcursor_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4132 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4133 lface = lface_from_face_name (f, Qcursor, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4134 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4135 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4136 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4137 else if (EQ (param, Qmouse_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4138 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4139 lface = lface_from_face_name (f, Qmouse, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4140 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4141 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4142 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4143 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4144 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4145 |
24995 | 4146 /* Get the value of X resource RESOURCE, class CLASS for the display |
4147 of frame FRAME. This is here because ordinary `x-get-resource' | |
4148 doesn't take a frame argument. */ | |
4149 | |
4150 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource, | |
4151 Sinternal_face_x_get_resource, 3, 3, 0, "") | |
4152 (resource, class, frame) | |
4153 Lisp_Object resource, class, frame; | |
4154 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4155 Lisp_Object value = Qnil; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4156 #ifndef WINDOWSNT |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
4157 #ifndef macintosh |
24995 | 4158 CHECK_STRING (resource, 0); |
4159 CHECK_STRING (class, 1); | |
4160 CHECK_LIVE_FRAME (frame, 2); | |
4161 BLOCK_INPUT; | |
4162 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)), | |
4163 resource, class, Qnil, Qnil); | |
4164 UNBLOCK_INPUT; | |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
4165 #endif /* not macintosh */ |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
4166 #endif /* not WINDOWSNT */ |
24995 | 4167 return value; |
4168 } | |
4169 | |
4170 | |
4171 /* Return resource string VALUE as a boolean value, i.e. nil, or t. | |
4172 If VALUE is "on" or "true", return t. If VALUE is "off" or | |
4173 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an | |
4174 error; if SIGNAL_P is zero, return 0. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4175 |
24995 | 4176 static Lisp_Object |
4177 face_boolean_x_resource_value (value, signal_p) | |
4178 Lisp_Object value; | |
4179 int signal_p; | |
4180 { | |
4181 Lisp_Object result = make_number (0); | |
4182 | |
4183 xassert (STRINGP (value)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4184 |
24995 | 4185 if (xstricmp (XSTRING (value)->data, "on") == 0 |
4186 || xstricmp (XSTRING (value)->data, "true") == 0) | |
4187 result = Qt; | |
4188 else if (xstricmp (XSTRING (value)->data, "off") == 0 | |
4189 || xstricmp (XSTRING (value)->data, "false") == 0) | |
4190 result = Qnil; | |
4191 else if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
4192 result = Qunspecified; | |
4193 else if (signal_p) | |
4194 signal_error ("Invalid face attribute value from X resource", value); | |
4195 | |
4196 return result; | |
4197 } | |
4198 | |
4199 | |
4200 DEFUN ("internal-set-lisp-face-attribute-from-resource", | |
4201 Finternal_set_lisp_face_attribute_from_resource, | |
4202 Sinternal_set_lisp_face_attribute_from_resource, | |
4203 3, 4, 0, "") | |
4204 (face, attr, value, frame) | |
4205 Lisp_Object face, attr, value, frame; | |
4206 { | |
4207 CHECK_SYMBOL (face, 0); | |
4208 CHECK_SYMBOL (attr, 1); | |
4209 CHECK_STRING (value, 2); | |
4210 | |
4211 if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
4212 value = Qunspecified; | |
4213 else if (EQ (attr, QCheight)) | |
4214 { | |
4215 value = Fstring_to_number (value, make_number (10)); | |
4216 if (XINT (value) <= 0) | |
4217 signal_error ("Invalid face height from X resource", value); | |
4218 } | |
4219 else if (EQ (attr, QCbold) || EQ (attr, QCitalic)) | |
4220 value = face_boolean_x_resource_value (value, 1); | |
4221 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth)) | |
4222 value = intern (XSTRING (value)->data); | |
4223 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video)) | |
4224 value = face_boolean_x_resource_value (value, 1); | |
4225 else if (EQ (attr, QCunderline) | |
4226 || EQ (attr, QCoverline) | |
4227 || EQ (attr, QCstrike_through) | |
4228 || EQ (attr, QCbox)) | |
4229 { | |
4230 Lisp_Object boolean_value; | |
4231 | |
4232 /* If the result of face_boolean_x_resource_value is t or nil, | |
4233 VALUE does NOT specify a color. */ | |
4234 boolean_value = face_boolean_x_resource_value (value, 0); | |
4235 if (SYMBOLP (boolean_value)) | |
4236 value = boolean_value; | |
4237 } | |
4238 | |
4239 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
|
4240 } |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4241 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4242 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4243 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4244 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4245 #ifdef HAVE_X_WINDOWS |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4246 /*********************************************************************** |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4247 Menu face |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4248 ***********************************************************************/ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4249 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4250 #ifdef USE_X_TOOLKIT |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4251 |
29897
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
4252 #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
|
4253 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4254 /* 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
|
4255 XtApplyToWidgets. */ |
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 struct x_resources |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4258 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4259 Arg *av; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4260 int ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4261 }; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4262 |
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 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4265 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4266 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
|
4267 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
|
4268 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4269 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4270 /* Set 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
|
4271 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
|
4272 submenu. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4273 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4274 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4275 xm_apply_resources (w, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4276 Widget w; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4277 XtPointer p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4278 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4279 Widget submenu = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4280 struct x_resources *res = (struct x_resources *) p; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4281 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4282 XtSetValues (w, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4283 XtVaGetValues (w, XmNsubMenuId, &submenu, NULL); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4284 if (submenu) |
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 XtSetValues (submenu, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4287 XtApplyToWidgets (submenu, xm_apply_resources, p); |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4291 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4292 /* 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
|
4293 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
|
4294 following problems: |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4295 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4296 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
|
4297 somewhere in LessTif. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4298 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4299 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4300 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
|
4301 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4302 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4303 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4304 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4305 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4306 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4307 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4308 XmFontList fl = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4309 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4310 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
|
4311 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
|
4312 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4313 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4314 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4315 XtSetArg (av[ac], XmNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4316 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4317 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4318 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4319 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
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 XtSetArg (av[ac], XmNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4322 ++ac; |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4325 /* 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
|
4326 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4327 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4328 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4329 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4330 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4331 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
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 #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
|
4334 in LessTif during geometry computation. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4335 XmFontListEntry fe; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4336 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
|
4337 fl = XmFontListAppendEntry (NULL, fe); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4338 XtSetArg (av[ac], XmNfontList, fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4339 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4340 #endif |
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 xassert (ac <= sizeof av / sizeof *av); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4344 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4345 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4346 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4347 struct x_resources res; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4348 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4349 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4350 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4351 XtApplyToWidgets (widget, xm_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4352 if (fl) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4353 XmFontListFree (fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4354 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4355 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4356 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4357 #endif /* USE_MOTIF */ |
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 #ifdef USE_LUCID |
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 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
|
4362 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
|
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 /* 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
|
4366 structure. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4367 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4368 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4369 xl_apply_resources (widget, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4370 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4371 XtPointer p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4372 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4373 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
|
4374 XtSetValues (widget, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4375 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4376 |
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 /* 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
|
4379 This is the Lucid version. */ |
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 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4382 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
|
4383 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4384 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4385 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4386 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4387 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4388 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4389 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4390 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4391 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
|
4392 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
|
4393 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4394 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
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 XtSetArg (av[ac], XtNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4397 ++ac; |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4400 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4401 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4402 XtSetArg (av[ac], XtNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4403 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4404 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4405 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4406 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4407 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4408 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4409 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4410 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4411 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4412 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4413 XtSetArg (av[ac], XtNfont, face->font); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4414 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4415 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4416 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4417 if (ac) |
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 struct x_resources res; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4420 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4421 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4422 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4423 /* 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
|
4424 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
|
4425 is a function from lwlib. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4426 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4427 XtApplyToWidgets (widget, xl_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4428 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4429 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4430 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4431 #endif /* USE_LUCID */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4432 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4433 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4434 /* 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
|
4435 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4436 void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4437 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
|
4438 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4439 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4440 { |
26759
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4441 /* 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
|
4442 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
|
4443 will need the `menu' face. */ |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4444 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
|
4445 recompute_basic_faces (f); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4446 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4447 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4448 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
|
4449 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4450 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4451 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
|
4452 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4453 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4454 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4455 #endif /* USE_X_TOOLKIT */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4456 |
24995 | 4457 #endif /* HAVE_X_WINDOWS */ |
4458 | |
4459 | |
4460 | |
4461 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute, | |
4462 Sinternal_get_lisp_face_attribute, | |
4463 2, 3, 0, | |
4464 "Return face attribute KEYWORD of face SYMBOL.\n\ | |
4465 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid\n\ | |
4466 face attribute name, signal an error.\n\ | |
4467 If the optional argument FRAME is given, report on face FACE in that\n\ | |
4468 frame. If FRAME is t, report on the defaults for face FACE (for new\n\ | |
4469 frames). If FRAME is omitted or nil, use the selected frame.") | |
4470 (symbol, keyword, frame) | |
4471 Lisp_Object symbol, keyword, frame; | |
4472 { | |
4473 Lisp_Object lface, value = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4474 |
24995 | 4475 CHECK_SYMBOL (symbol, 0); |
4476 CHECK_SYMBOL (keyword, 1); | |
4477 | |
4478 if (EQ (frame, Qt)) | |
4479 lface = lface_from_face_name (NULL, symbol, 1); | |
4480 else | |
4481 { | |
4482 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4483 frame = selected_frame; |
24995 | 4484 CHECK_LIVE_FRAME (frame, 2); |
4485 lface = lface_from_face_name (XFRAME (frame), symbol, 1); | |
4486 } | |
4487 | |
4488 if (EQ (keyword, QCfamily)) | |
4489 value = LFACE_FAMILY (lface); | |
4490 else if (EQ (keyword, QCheight)) | |
4491 value = LFACE_HEIGHT (lface); | |
4492 else if (EQ (keyword, QCweight)) | |
4493 value = LFACE_WEIGHT (lface); | |
4494 else if (EQ (keyword, QCslant)) | |
4495 value = LFACE_SLANT (lface); | |
4496 else if (EQ (keyword, QCunderline)) | |
4497 value = LFACE_UNDERLINE (lface); | |
4498 else if (EQ (keyword, QCoverline)) | |
4499 value = LFACE_OVERLINE (lface); | |
4500 else if (EQ (keyword, QCstrike_through)) | |
4501 value = LFACE_STRIKE_THROUGH (lface); | |
4502 else if (EQ (keyword, QCbox)) | |
4503 value = LFACE_BOX (lface); | |
4504 else if (EQ (keyword, QCinverse_video) | |
4505 || EQ (keyword, QCreverse_video)) | |
4506 value = LFACE_INVERSE (lface); | |
4507 else if (EQ (keyword, QCforeground)) | |
4508 value = LFACE_FOREGROUND (lface); | |
4509 else if (EQ (keyword, QCbackground)) | |
4510 value = LFACE_BACKGROUND (lface); | |
4511 else if (EQ (keyword, QCstipple)) | |
4512 value = LFACE_STIPPLE (lface); | |
4513 else if (EQ (keyword, QCwidth)) | |
4514 value = LFACE_SWIDTH (lface); | |
31178 | 4515 else if (EQ (keyword, QCinherit)) |
4516 value = LFACE_INHERIT (lface); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4517 else if (EQ (keyword, QCfont)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4518 value = LFACE_FONT (lface); |
24995 | 4519 else |
4520 signal_error ("Invalid face attribute name", keyword); | |
4521 | |
4522 return value; | |
4523 } | |
4524 | |
4525 | |
4526 DEFUN ("internal-lisp-face-attribute-values", | |
4527 Finternal_lisp_face_attribute_values, | |
4528 Sinternal_lisp_face_attribute_values, 1, 1, 0, | |
4529 "Return a list of valid discrete values for face attribute ATTR.\n\ | |
4530 Value is nil if ATTR doesn't have a discrete set of valid values.") | |
4531 (attr) | |
4532 Lisp_Object attr; | |
4533 { | |
4534 Lisp_Object result = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4535 |
24995 | 4536 CHECK_SYMBOL (attr, 0); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4537 |
24995 | 4538 if (EQ (attr, QCweight) |
4539 || EQ (attr, QCslant) | |
4540 || EQ (attr, QCwidth)) | |
4541 { | |
4542 /* Extract permissible symbols from tables. */ | |
4543 struct table_entry *table; | |
4544 int i, dim; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4545 |
24995 | 4546 if (EQ (attr, QCweight)) |
4547 table = weight_table, dim = DIM (weight_table); | |
4548 else if (EQ (attr, QCslant)) | |
4549 table = slant_table, dim = DIM (slant_table); | |
4550 else | |
4551 table = swidth_table, dim = DIM (swidth_table); | |
4552 | |
4553 for (i = 0; i < dim; ++i) | |
4554 { | |
4555 Lisp_Object symbol = *table[i].symbol; | |
4556 Lisp_Object tail = result; | |
4557 | |
4558 while (!NILP (tail) | |
4559 && !EQ (XCAR (tail), symbol)) | |
4560 tail = XCDR (tail); | |
4561 | |
4562 if (NILP (tail)) | |
4563 result = Fcons (symbol, result); | |
4564 } | |
4565 } | |
4566 else if (EQ (attr, QCunderline)) | |
4567 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4568 else if (EQ (attr, QCoverline)) | |
4569 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4570 else if (EQ (attr, QCstrike_through)) | |
4571 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4572 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video)) | |
4573 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4574 | |
4575 return result; | |
4576 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4577 |
24995 | 4578 |
4579 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
|
4580 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
|
4581 "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
|
4582 Default face attributes override any local face attributes.") |
24995 | 4583 (face, frame) |
4584 Lisp_Object face, frame; | |
4585 { | |
31483
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4586 int i; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4587 Lisp_Object global_lface, local_lface, *gvec, *lvec; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4588 |
24995 | 4589 CHECK_LIVE_FRAME (frame, 1); |
4590 global_lface = lface_from_face_name (NULL, face, 1); | |
4591 local_lface = lface_from_face_name (XFRAME (frame), face, 0); | |
4592 if (NILP (local_lface)) | |
4593 local_lface = Finternal_make_lisp_face (face, frame); | |
31483
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4594 |
31519
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
4595 /* 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
|
4596 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
|
4597 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
|
4598 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
|
4599 "global before local" priority. */ |
31483
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4600 lvec = XVECTOR (local_lface)->contents; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4601 gvec = XVECTOR (global_lface)->contents; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4602 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4603 if (! UNSPECIFIEDP (gvec[i])) |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4604 lvec[i] = gvec[i]; |
31507
ac6d049932e9
(Finternal_merge_in_global_face): Return a Lisp object.
Gerd Moellmann <gerd@gnu.org>
parents:
31483
diff
changeset
|
4605 |
ac6d049932e9
(Finternal_merge_in_global_face): Return a Lisp object.
Gerd Moellmann <gerd@gnu.org>
parents:
31483
diff
changeset
|
4606 return Qnil; |
24995 | 4607 } |
4608 | |
4609 | |
4610 /* The following function is implemented for compatibility with 20.2. | |
4611 The function is used in x-resolve-fonts when it is asked to | |
4612 return fonts with the same size as the font of a face. This is | |
4613 done in fontset.el. */ | |
4614 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4615 DEFUN ("face-font", Fface_font, Sface_font, 1, 2, 0, |
24995 | 4616 "Return the font name of face FACE, or nil if it is unspecified.\n\ |
4617 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4618 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4619 The font default for a face is either nil, or a list\n\ | |
4620 of the form (bold), (italic) or (bold italic).\n\ | |
4621 If FRAME is omitted or nil, use the selected frame.") | |
4622 (face, frame) | |
4623 Lisp_Object face, frame; | |
4624 { | |
4625 if (EQ (frame, Qt)) | |
4626 { | |
4627 Lisp_Object result = Qnil; | |
4628 Lisp_Object lface = lface_from_face_name (NULL, face, 1); | |
4629 | |
4630 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface)) | |
4631 && !EQ (LFACE_WEIGHT (lface), Qnormal)) | |
4632 result = Fcons (Qbold, result); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4633 |
24995 | 4634 if (!NILP (LFACE_SLANT (lface)) |
4635 && !EQ (LFACE_SLANT (lface), Qnormal)) | |
4636 result = Fcons (Qitalic, result); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4637 |
24995 | 4638 return result; |
4639 } | |
4640 else | |
4641 { | |
4642 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
|
4643 int face_id = lookup_named_face (f, face, 0); |
24995 | 4644 struct face *face = FACE_FROM_ID (f, face_id); |
4645 return build_string (face->font_name); | |
4646 } | |
4647 } | |
4648 | |
4649 | |
4650 /* Compare face vectors V1 and V2 for equality. Value is non-zero if | |
4651 all attributes are `equal'. Tries to be fast because this function | |
4652 is called quite often. */ | |
4653 | |
4654 static INLINE int | |
4655 lface_equal_p (v1, v2) | |
4656 Lisp_Object *v1, *v2; | |
4657 { | |
4658 int i, equal_p = 1; | |
4659 | |
4660 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i) | |
4661 { | |
4662 Lisp_Object a = v1[i]; | |
4663 Lisp_Object b = v2[i]; | |
4664 | |
4665 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil, | |
4666 and the other is specified. */ | |
4667 equal_p = XTYPE (a) == XTYPE (b); | |
4668 if (!equal_p) | |
4669 break; | |
4670 | |
4671 if (!EQ (a, b)) | |
4672 { | |
4673 switch (XTYPE (a)) | |
4674 { | |
4675 case Lisp_String: | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4676 equal_p = ((STRING_BYTES (XSTRING (a)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4677 == STRING_BYTES (XSTRING (b))) |
24995 | 4678 && bcmp (XSTRING (a)->data, XSTRING (b)->data, |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4679 STRING_BYTES (XSTRING (a))) == 0); |
24995 | 4680 break; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4681 |
24995 | 4682 case Lisp_Int: |
4683 case Lisp_Symbol: | |
4684 equal_p = 0; | |
4685 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4686 |
24995 | 4687 default: |
4688 equal_p = !NILP (Fequal (a, b)); | |
4689 break; | |
4690 } | |
4691 } | |
4692 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4693 |
24995 | 4694 return equal_p; |
4695 } | |
4696 | |
4697 | |
4698 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p, | |
4699 Sinternal_lisp_face_equal_p, 2, 3, 0, | |
4700 "True if FACE1 and FACE2 are equal.\n\ | |
4701 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4702 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4703 If FRAME is omitted or nil, use the selected frame.") | |
4704 (face1, face2, frame) | |
4705 Lisp_Object face1, face2, frame; | |
4706 { | |
4707 int equal_p; | |
4708 struct frame *f; | |
4709 Lisp_Object lface1, lface2; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4710 |
24995 | 4711 if (EQ (frame, Qt)) |
4712 f = NULL; | |
4713 else | |
4714 /* Don't use check_x_frame here because this function is called | |
4715 before X frames exist. At that time, if FRAME is nil, | |
4716 selected_frame will be used which is the frame dumped with | |
4717 Emacs. That frame is not an X frame. */ | |
4718 f = frame_or_selected_frame (frame, 2); | |
4719 | |
4720 lface1 = lface_from_face_name (NULL, face1, 1); | |
4721 lface2 = lface_from_face_name (NULL, face2, 1); | |
4722 equal_p = lface_equal_p (XVECTOR (lface1)->contents, | |
4723 XVECTOR (lface2)->contents); | |
4724 return equal_p ? Qt : Qnil; | |
4725 } | |
4726 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4727 |
24995 | 4728 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p, |
4729 Sinternal_lisp_face_empty_p, 1, 2, 0, | |
4730 "True if FACE has no attribute specified.\n\ | |
4731 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4732 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4733 If FRAME is omitted or nil, use the selected frame.") | |
4734 (face, frame) | |
4735 Lisp_Object face, frame; | |
4736 { | |
4737 struct frame *f; | |
4738 Lisp_Object lface; | |
4739 int i; | |
4740 | |
4741 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4742 frame = selected_frame; |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4743 CHECK_LIVE_FRAME (frame, 0); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4744 f = XFRAME (frame); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4745 |
24995 | 4746 if (EQ (frame, Qt)) |
4747 lface = lface_from_face_name (NULL, face, 1); | |
4748 else | |
4749 lface = lface_from_face_name (f, face, 1); | |
4750 | |
4751 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
4752 if (!UNSPECIFIEDP (XVECTOR (lface)->contents[i])) | |
4753 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4754 |
24995 | 4755 return i == LFACE_VECTOR_SIZE ? Qt : Qnil; |
4756 } | |
4757 | |
4758 | |
4759 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
|
4760 0, 1, 0, |
24995 | 4761 "Return an alist of frame-local faces defined on FRAME.\n\ |
4762 For internal use only.") | |
4763 (frame) | |
4764 Lisp_Object frame; | |
4765 { | |
4766 struct frame *f = frame_or_selected_frame (frame, 0); | |
4767 return f->face_alist; | |
4768 } | |
4769 | |
4770 | |
4771 /* Return a hash code for Lisp string STRING with case ignored. Used | |
4772 below in computing a hash value for a Lisp face. */ | |
4773 | |
4774 static INLINE unsigned | |
4775 hash_string_case_insensitive (string) | |
4776 Lisp_Object string; | |
4777 { | |
4778 unsigned char *s; | |
4779 unsigned hash = 0; | |
4780 xassert (STRINGP (string)); | |
4781 for (s = XSTRING (string)->data; *s; ++s) | |
4782 hash = (hash << 1) ^ tolower (*s); | |
4783 return hash; | |
4784 } | |
4785 | |
4786 | |
4787 /* Return a hash code for face attribute vector V. */ | |
4788 | |
4789 static INLINE unsigned | |
4790 lface_hash (v) | |
4791 Lisp_Object *v; | |
4792 { | |
4793 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX]) | |
4794 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX]) | |
4795 ^ 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
|
4796 ^ 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
|
4797 ^ 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
|
4798 ^ XFASTINT (v[LFACE_SWIDTH_INDEX]) |
24995 | 4799 ^ XFASTINT (v[LFACE_HEIGHT_INDEX])); |
4800 } | |
4801 | |
4802 | |
4803 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without | |
4804 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
|
4805 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
|
4806 and LFACE2 must be fully-specified. */ |
24995 | 4807 |
4808 static INLINE int | |
4809 lface_same_font_attributes_p (lface1, lface2) | |
4810 Lisp_Object *lface1, *lface2; | |
4811 { | |
4812 xassert (lface_fully_specified_p (lface1) | |
4813 && lface_fully_specified_p (lface2)); | |
4814 return (xstricmp (XSTRING (lface1[LFACE_FAMILY_INDEX])->data, | |
4815 XSTRING (lface2[LFACE_FAMILY_INDEX])->data) == 0 | |
31178 | 4816 && EQ (lface1[LFACE_HEIGHT_INDEX], lface2[LFACE_HEIGHT_INDEX]) |
24995 | 4817 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX]) |
4818 && 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
|
4819 && 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
|
4820 && (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
|
4821 || (STRINGP (lface1[LFACE_FONT_INDEX]) |
28263
73181b84ea57
(lface_same_font_attributes_p): Compare font attributes
Gerd Moellmann <gerd@gnu.org>
parents:
28237
diff
changeset
|
4822 && STRINGP (lface2[LFACE_FONT_INDEX]) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4823 && xstricmp (XSTRING (lface1[LFACE_FONT_INDEX])->data, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4824 XSTRING (lface2[LFACE_FONT_INDEX])->data)))); |
24995 | 4825 } |
4826 | |
4827 | |
4828 | |
4829 /*********************************************************************** | |
4830 Realized Faces | |
4831 ***********************************************************************/ | |
4832 | |
4833 /* 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
|
4834 vector ATTR. */ |
24995 | 4835 |
4836 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4837 make_realized_face (attr) |
24995 | 4838 Lisp_Object *attr; |
4839 { | |
4840 struct face *face = (struct face *) xmalloc (sizeof *face); | |
4841 bzero (face, sizeof *face); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4842 face->ascii_face = face; |
24995 | 4843 bcopy (attr, face->lface, sizeof face->lface); |
4844 return face; | |
4845 } | |
4846 | |
4847 | |
4848 /* Free realized face FACE, including its X resources. FACE may | |
4849 be null. */ | |
4850 | |
4851 static void | |
4852 free_realized_face (f, face) | |
4853 struct frame *f; | |
4854 struct face *face; | |
4855 { | |
4856 if (face) | |
4857 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4858 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4859 if (FRAME_WINDOW_P (f)) |
24995 | 4860 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4861 /* 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
|
4862 if (face->fontset >= 0 && face == face->ascii_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4863 free_face_fontset (f, face); |
24995 | 4864 if (face->gc) |
4865 { | |
4866 x_free_gc (f, face->gc); | |
4867 face->gc = 0; | |
4868 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4869 |
24995 | 4870 free_face_colors (f, face); |
4871 x_destroy_bitmap (f, face->stipple); | |
4872 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4873 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4874 |
4875 xfree (face); | |
4876 } | |
4877 } | |
4878 | |
4879 | |
4880 /* Prepare face FACE for subsequent display on frame F. This | |
4881 allocated GCs if they haven't been allocated yet or have been freed | |
4882 by clearing the face cache. */ | |
4883 | |
4884 void | |
4885 prepare_face_for_display (f, face) | |
4886 struct frame *f; | |
4887 struct face *face; | |
4888 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4889 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4890 xassert (FRAME_WINDOW_P (f)); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4891 |
24995 | 4892 if (face->gc == 0) |
4893 { | |
4894 XGCValues xgcv; | |
4895 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures; | |
4896 | |
4897 xgcv.foreground = face->foreground; | |
4898 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
|
4899 #ifdef HAVE_X_WINDOWS |
24995 | 4900 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
|
4901 #endif |
24995 | 4902 /* The font of FACE may be null if we couldn't load it. */ |
4903 if (face->font) | |
4904 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4905 #ifdef HAVE_X_WINDOWS |
24995 | 4906 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
|
4907 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4908 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4909 xgcv.font = face->font; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4910 #endif |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
4911 #ifdef macintosh |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
4912 xgcv.font = face->font; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
4913 #endif |
24995 | 4914 mask |= GCFont; |
4915 } | |
4916 | |
4917 BLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4918 #ifdef HAVE_X_WINDOWS |
24995 | 4919 if (face->stipple) |
4920 { | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
4921 xgcv.fill_style = FillOpaqueStippled; |
24995 | 4922 xgcv.stipple = x_bitmap_pixmap (f, face->stipple); |
4923 mask |= GCFillStyle | GCStipple; | |
4924 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4925 #endif |
24995 | 4926 face->gc = x_create_gc (f, mask, &xgcv); |
4927 UNBLOCK_INPUT; | |
4928 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4929 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4930 } |
4931 | |
4932 | |
4933 /*********************************************************************** | |
4934 Face Cache | |
4935 ***********************************************************************/ | |
4936 | |
4937 /* Return a new face cache for frame F. */ | |
4938 | |
4939 static struct face_cache * | |
4940 make_face_cache (f) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4941 struct frame *f; |
24995 | 4942 { |
4943 struct face_cache *c; | |
4944 int size; | |
4945 | |
4946 c = (struct face_cache *) xmalloc (sizeof *c); | |
4947 bzero (c, sizeof *c); | |
4948 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4949 c->buckets = (struct face **) xmalloc (size); | |
4950 bzero (c->buckets, size); | |
4951 c->size = 50; | |
4952 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id); | |
4953 c->f = f; | |
4954 return c; | |
4955 } | |
4956 | |
4957 | |
4958 /* Clear out all graphics contexts for all realized faces, except for | |
4959 the basic faces. This should be done from time to time just to avoid | |
4960 keeping too many graphics contexts that are no longer needed. */ | |
4961 | |
4962 static void | |
4963 clear_face_gcs (c) | |
4964 struct face_cache *c; | |
4965 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4966 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
|
4967 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4968 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4969 int i; |
4970 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i) | |
4971 { | |
4972 struct face *face = c->faces_by_id[i]; | |
4973 if (face && face->gc) | |
4974 { | |
4975 x_free_gc (c->f, face->gc); | |
4976 face->gc = 0; | |
4977 } | |
4978 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4979 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4980 } |
4981 } | |
4982 | |
4983 | |
4984 /* Free all realized faces in face cache C, including basic faces. C | |
4985 may be null. If faces are freed, make sure the frame's current | |
4986 matrix is marked invalid, so that a display caused by an expose | |
4987 event doesn't try to use faces we destroyed. */ | |
4988 | |
4989 static void | |
4990 free_realized_faces (c) | |
4991 struct face_cache *c; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4992 { |
24995 | 4993 if (c && c->used) |
4994 { | |
4995 int i, size; | |
4996 struct frame *f = c->f; | |
4997 | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4998 /* 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
|
4999 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
|
5000 current matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5001 BLOCK_INPUT; |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5002 |
24995 | 5003 for (i = 0; i < c->used; ++i) |
5004 { | |
5005 free_realized_face (f, c->faces_by_id[i]); | |
5006 c->faces_by_id[i] = NULL; | |
5007 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5008 |
24995 | 5009 c->used = 0; |
5010 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
5011 bzero (c->buckets, size); | |
5012 | |
5013 /* Must do a thorough redisplay the next time. Mark current | |
5014 matrices as invalid because they will reference faces freed | |
5015 above. This function is also called when a frame is | |
5016 destroyed. In this case, the root window of F is nil. */ | |
5017 if (WINDOWP (f->root_window)) | |
5018 { | |
5019 clear_current_matrices (f); | |
5020 ++windows_or_buffers_changed; | |
5021 } | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5022 |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5023 UNBLOCK_INPUT; |
24995 | 5024 } |
5025 } | |
5026 | |
5027 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5028 /* 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
|
5029 has FONTSET. */ |
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 void |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5032 free_realized_multibyte_face (f, fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5033 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5034 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5035 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5036 struct face_cache *cache = FRAME_FACE_CACHE (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5037 struct face *face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5038 int i; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5039 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5040 /* 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
|
5041 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
|
5042 matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5043 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5044 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5045 for (i = 0; i < cache->used; i++) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5046 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5047 face = cache->faces_by_id[i]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5048 if (face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5049 && face != face->ascii_face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5050 && face->fontset == fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5051 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5052 uncache_face (cache, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5053 free_realized_face (f, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5054 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5055 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5056 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5057 /* 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
|
5058 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
|
5059 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
|
5060 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
|
5061 if (WINDOWP (f->root_window)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5062 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5063 clear_current_matrices (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5064 ++windows_or_buffers_changed; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5065 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5066 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5067 UNBLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5068 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5069 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5070 |
24995 | 5071 /* Free all realized faces on FRAME or on all frames if FRAME is nil. |
5072 This is done after attributes of a named face have been changed, | |
5073 because we can't tell which realized faces depend on that face. */ | |
5074 | |
5075 void | |
5076 free_all_realized_faces (frame) | |
5077 Lisp_Object frame; | |
5078 { | |
5079 if (NILP (frame)) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5080 { |
24995 | 5081 Lisp_Object rest; |
5082 FOR_EACH_FRAME (rest, frame) | |
5083 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
5084 } | |
5085 else | |
5086 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
5087 } | |
5088 | |
5089 | |
5090 /* Free face cache C and faces in it, including their X resources. */ | |
5091 | |
5092 static void | |
5093 free_face_cache (c) | |
5094 struct face_cache *c; | |
5095 { | |
5096 if (c) | |
5097 { | |
5098 free_realized_faces (c); | |
5099 xfree (c->buckets); | |
5100 xfree (c->faces_by_id); | |
5101 xfree (c); | |
5102 } | |
5103 } | |
5104 | |
5105 | |
5106 /* Cache realized face FACE in face cache C. HASH is the hash value | |
5107 of FACE. If FACE->fontset >= 0, add the new face to the end of the | |
5108 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
|
5109 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
|
5110 faces with the same attributes but for specific characters exist. */ |
24995 | 5111 |
5112 static void | |
5113 cache_face (c, face, hash) | |
5114 struct face_cache *c; | |
5115 struct face *face; | |
5116 unsigned hash; | |
5117 { | |
5118 int i = hash % FACE_CACHE_BUCKETS_SIZE; | |
5119 | |
5120 face->hash = hash; | |
5121 | |
5122 if (face->fontset >= 0) | |
5123 { | |
5124 struct face *last = c->buckets[i]; | |
5125 if (last) | |
5126 { | |
5127 while (last->next) | |
5128 last = last->next; | |
5129 last->next = face; | |
5130 face->prev = last; | |
5131 face->next = NULL; | |
5132 } | |
5133 else | |
5134 { | |
5135 c->buckets[i] = face; | |
5136 face->prev = face->next = NULL; | |
5137 } | |
5138 } | |
5139 else | |
5140 { | |
5141 face->prev = NULL; | |
5142 face->next = c->buckets[i]; | |
5143 if (face->next) | |
5144 face->next->prev = face; | |
5145 c->buckets[i] = face; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5146 } |
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5147 |
24995 | 5148 /* Find a free slot in C->faces_by_id and use the index of the free |
5149 slot as FACE->id. */ | |
5150 for (i = 0; i < c->used; ++i) | |
5151 if (c->faces_by_id[i] == NULL) | |
5152 break; | |
5153 face->id = i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5154 |
24995 | 5155 /* Maybe enlarge C->faces_by_id. */ |
5156 if (i == c->used && c->used == c->size) | |
5157 { | |
5158 int new_size = 2 * c->size; | |
5159 int sz = new_size * sizeof *c->faces_by_id; | |
5160 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz); | |
5161 c->size = new_size; | |
5162 } | |
5163 | |
5164 #if GLYPH_DEBUG | |
5165 /* Check that FACE got a unique id. */ | |
5166 { | |
5167 int j, n; | |
5168 struct face *face; | |
5169 | |
5170 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j) | |
5171 for (face = c->buckets[j]; face; face = face->next) | |
5172 if (face->id == i) | |
5173 ++n; | |
5174 | |
5175 xassert (n == 1); | |
5176 } | |
5177 #endif /* GLYPH_DEBUG */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5178 |
24995 | 5179 c->faces_by_id[i] = face; |
5180 if (i == c->used) | |
5181 ++c->used; | |
5182 } | |
5183 | |
5184 | |
5185 /* Remove face FACE from cache C. */ | |
5186 | |
5187 static void | |
5188 uncache_face (c, face) | |
5189 struct face_cache *c; | |
5190 struct face *face; | |
5191 { | |
5192 int i = face->hash % FACE_CACHE_BUCKETS_SIZE; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5193 |
24995 | 5194 if (face->prev) |
5195 face->prev->next = face->next; | |
5196 else | |
5197 c->buckets[i] = face->next; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5198 |
24995 | 5199 if (face->next) |
5200 face->next->prev = face->prev; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5201 |
24995 | 5202 c->faces_by_id[face->id] = NULL; |
5203 if (face->id == c->used) | |
5204 --c->used; | |
5205 } | |
5206 | |
5207 | |
5208 /* 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
|
5209 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
|
5210 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
|
5211 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
|
5212 is a face that has the same attributes. */ |
24995 | 5213 |
5214 INLINE int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5215 lookup_face (f, attr, c, base_face) |
24995 | 5216 struct frame *f; |
5217 Lisp_Object *attr; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5218 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5219 struct face *base_face; |
24995 | 5220 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5221 struct face_cache *cache = FRAME_FACE_CACHE (f); |
24995 | 5222 unsigned hash; |
5223 int i; | |
5224 struct face *face; | |
5225 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5226 xassert (cache != NULL); |
24995 | 5227 check_lface_attrs (attr); |
5228 | |
5229 /* Look up ATTR in the face cache. */ | |
5230 hash = lface_hash (attr); | |
5231 i = hash % FACE_CACHE_BUCKETS_SIZE; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5232 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5233 for (face = cache->buckets[i]; face; face = face->next) |
24995 | 5234 if (face->hash == hash |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5235 && (!FRAME_WINDOW_P (f) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5236 || FACE_SUITABLE_FOR_CHAR_P (face, c)) |
24995 | 5237 && lface_equal_p (face->lface, attr)) |
5238 break; | |
5239 | |
5240 /* If not found, realize a new face. */ | |
5241 if (face == NULL) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5242 face = realize_face (cache, attr, c, base_face, -1); |
24995 | 5243 |
5244 #if GLYPH_DEBUG | |
5245 xassert (face == FACE_FROM_ID (f, face->id)); | |
28409 | 5246 |
5247 /* When this function is called from face_for_char (in this case, C is | |
5248 a multibyte character), a fontset of a face returned by | |
5249 realize_face is not yet set, i.e. FACE_SUITABLE_FOR_CHAR_P (FACE, | |
5250 C) is not sutisfied. The fontset is set for this face by | |
5251 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
|
5252 #if 0 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5253 if (FRAME_WINDOW_P (f)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5254 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
|
5255 #endif |
24995 | 5256 #endif /* GLYPH_DEBUG */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5257 |
24995 | 5258 return face->id; |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5259 } |
24995 | 5260 |
5261 | |
5262 /* 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
|
5263 frame F suitable for displaying character C. */ |
24995 | 5264 |
5265 int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5266 lookup_named_face (f, symbol, c) |
24995 | 5267 struct frame *f; |
5268 Lisp_Object symbol; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5269 int c; |
24995 | 5270 { |
5271 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5272 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
5273 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5274 | |
5275 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
5276 bcopy (default_face->lface, attrs, sizeof attrs); | |
31178 | 5277 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
|
5278 return lookup_face (f, attrs, c, NULL); |
24995 | 5279 } |
5280 | |
5281 | |
5282 /* Return the ID of the realized ASCII face of Lisp face with ID | |
5283 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */ | |
5284 | |
5285 int | |
5286 ascii_face_of_lisp_face (f, lface_id) | |
5287 struct frame *f; | |
5288 int lface_id; | |
5289 { | |
5290 int face_id; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5291 |
24995 | 5292 if (lface_id >= 0 && lface_id < lface_id_to_name_size) |
5293 { | |
5294 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
|
5295 face_id = lookup_named_face (f, face_name, 0); |
24995 | 5296 } |
5297 else | |
5298 face_id = -1; | |
5299 | |
5300 return face_id; | |
5301 } | |
5302 | |
5303 | |
5304 /* Return a face for charset ASCII that is like the face with id | |
5305 FACE_ID on frame F, but has a font that is STEPS steps smaller. | |
5306 STEPS < 0 means larger. Value is the id of the face. */ | |
5307 | |
5308 int | |
5309 smaller_face (f, face_id, steps) | |
5310 struct frame *f; | |
5311 int face_id, steps; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5312 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5313 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5314 struct face *face; |
5315 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5316 int pt, last_pt, last_height; | |
5317 int delta; | |
5318 int new_face_id; | |
5319 struct face *new_face; | |
5320 | |
5321 /* If not called for an X frame, just return the original face. */ | |
5322 if (FRAME_TERMCAP_P (f)) | |
5323 return face_id; | |
5324 | |
5325 /* Try in increments of 1/2 pt. */ | |
5326 delta = steps < 0 ? 5 : -5; | |
5327 steps = abs (steps); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5328 |
24995 | 5329 face = FACE_FROM_ID (f, face_id); |
5330 bcopy (face->lface, attrs, sizeof attrs); | |
5331 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5332 new_face_id = face_id; | |
5333 last_height = FONT_HEIGHT (face->font); | |
5334 | |
5335 while (steps | |
5336 && pt + delta > 0 | |
5337 /* Give up if we cannot find a font within 10pt. */ | |
5338 && abs (last_pt - pt) < 100) | |
5339 { | |
5340 /* Look up a face for a slightly smaller/larger font. */ | |
5341 pt += delta; | |
5342 attrs[LFACE_HEIGHT_INDEX] = make_number (pt); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5343 new_face_id = lookup_face (f, attrs, 0, NULL); |
24995 | 5344 new_face = FACE_FROM_ID (f, new_face_id); |
5345 | |
5346 /* 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
|
5347 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
|
5348 || (delta > 0 && FONT_HEIGHT (new_face->font) > last_height)) |
24995 | 5349 { |
5350 --steps; | |
5351 last_height = FONT_HEIGHT (new_face->font); | |
5352 last_pt = pt; | |
5353 } | |
5354 } | |
5355 | |
5356 return new_face_id; | |
5357 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5358 #else /* not HAVE_WINDOW_SYSTEM */ |
24995 | 5359 |
5360 return face_id; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5361 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5362 #endif /* not HAVE_WINDOW_SYSTEM */ |
24995 | 5363 } |
5364 | |
5365 | |
5366 /* Return a face for charset ASCII that is like the face with id | |
5367 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
|
5368 |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
5369 int |
24995 | 5370 face_with_height (f, face_id, height) |
5371 struct frame *f; | |
5372 int face_id; | |
5373 int height; | |
5374 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5375 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5376 struct face *face; |
5377 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5378 | |
5379 if (FRAME_TERMCAP_P (f) | |
5380 || height <= 0) | |
5381 return face_id; | |
5382 | |
5383 face = FACE_FROM_ID (f, face_id); | |
5384 bcopy (face->lface, attrs, sizeof attrs); | |
5385 attrs[LFACE_HEIGHT_INDEX] = make_number (height); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5386 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
|
5387 #endif /* HAVE_WINDOW_SYSTEM */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5388 |
24995 | 5389 return face_id; |
5390 } | |
5391 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5392 /* 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
|
5393 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
|
5394 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
|
5395 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
|
5396 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
|
5397 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
|
5398 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5399 int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5400 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
|
5401 struct frame *f; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5402 Lisp_Object symbol; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5403 int c; |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5404 int face_id; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5405 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5406 Lisp_Object attrs[LFACE_VECTOR_SIZE]; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5407 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
|
5408 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
|
5409 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5410 if (!default_face) |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5411 abort (); |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5412 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5413 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
|
5414 bcopy (default_face->lface, attrs, sizeof attrs); |
31178 | 5415 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
|
5416 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
|
5417 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5418 |
24995 | 5419 |
5420 | |
5421 /*********************************************************************** | |
5422 Font selection | |
5423 ***********************************************************************/ | |
5424 | |
5425 DEFUN ("internal-set-font-selection-order", | |
5426 Finternal_set_font_selection_order, | |
5427 Sinternal_set_font_selection_order, 1, 1, 0, | |
5428 "Set font selection order for face font selection to ORDER.\n\ | |
5429 ORDER must be a list of length 4 containing the symbols `:width',\n\ | |
5430 `:height', `:weight', and `:slant'. Face attributes appearing\n\ | |
5431 first in ORDER are matched first, e.g. if `:height' appears before\n\ | |
5432 `:weight' in ORDER, font selection first tries to find a font with\n\ | |
5433 a suitable height, and then tries to match the font weight.\n\ | |
5434 Value is ORDER.") | |
5435 (order) | |
5436 Lisp_Object order; | |
5437 { | |
5438 Lisp_Object list; | |
5439 int i; | |
5440 int indices[4]; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5441 |
24995 | 5442 CHECK_LIST (order, 0); |
5443 bzero (indices, sizeof indices); | |
5444 i = 0; | |
5445 | |
5446 for (list = order; | |
5447 CONSP (list) && i < DIM (indices); | |
5448 list = XCDR (list), ++i) | |
5449 { | |
5450 Lisp_Object attr = XCAR (list); | |
5451 int xlfd; | |
5452 | |
5453 if (EQ (attr, QCwidth)) | |
5454 xlfd = XLFD_SWIDTH; | |
5455 else if (EQ (attr, QCheight)) | |
5456 xlfd = XLFD_POINT_SIZE; | |
5457 else if (EQ (attr, QCweight)) | |
5458 xlfd = XLFD_WEIGHT; | |
5459 else if (EQ (attr, QCslant)) | |
5460 xlfd = XLFD_SLANT; | |
5461 else | |
5462 break; | |
5463 | |
5464 if (indices[i] != 0) | |
5465 break; | |
5466 indices[i] = xlfd; | |
5467 } | |
5468 | |
5469 if (!NILP (list) | |
5470 || i != DIM (indices) | |
5471 || indices[0] == 0 | |
5472 || indices[1] == 0 | |
5473 || indices[2] == 0 | |
5474 || indices[3] == 0) | |
5475 signal_error ("Invalid font sort order", order); | |
5476 | |
5477 if (bcmp (indices, font_sort_order, sizeof indices) != 0) | |
5478 { | |
5479 bcopy (indices, font_sort_order, sizeof font_sort_order); | |
5480 free_all_realized_faces (Qnil); | |
5481 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5482 |
24995 | 5483 return Qnil; |
5484 } | |
5485 | |
5486 | |
5487 DEFUN ("internal-set-alternative-font-family-alist", | |
5488 Finternal_set_alternative_font_family_alist, | |
5489 Sinternal_set_alternative_font_family_alist, 1, 1, 0, | |
5490 "Define alternative font families to try in face font selection.\n\ | |
5491 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.\n\ | |
5492 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can\n\ | |
5493 be found. Value is ALIST.") | |
5494 (alist) | |
5495 Lisp_Object alist; | |
5496 { | |
5497 CHECK_LIST (alist, 0); | |
5498 Vface_alternative_font_family_alist = alist; | |
5499 free_all_realized_faces (Qnil); | |
5500 return alist; | |
5501 } | |
5502 | |
5503 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5504 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5505 |
5506 /* Value is non-zero if FONT is the name of a scalable font. The | |
5507 X11R6 XLFD spec says that point size, pixel size, and average width | |
5508 are zero for scalable fonts. Intlfonts contain at least one | |
5509 scalable font ("*-muleindian-1") for which this isn't true, so we | |
5510 just test average width. */ | |
5511 | |
5512 static int | |
5513 font_scalable_p (font) | |
5514 struct font_name *font; | |
5515 { | |
5516 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
|
5517 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
|
5518 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5519 /* 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
|
5520 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
|
5521 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
|
5522 || *s == '*' |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5523 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5524 ; |
24995 | 5525 } |
5526 | |
5527 | |
5528 /* Value is non-zero if FONT1 is a better match for font attributes | |
5529 VALUES than FONT2. VALUES is an array of face attribute values in | |
5530 font sort order. COMPARE_PT_P zero means don't compare point | |
5531 sizes. */ | |
5532 | |
5533 static int | |
5534 better_font_p (values, font1, font2, compare_pt_p) | |
5535 int *values; | |
5536 struct font_name *font1, *font2; | |
5537 int compare_pt_p; | |
5538 { | |
5539 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5540 |
24995 | 5541 for (i = 0; i < 4; ++i) |
5542 { | |
5543 int xlfd_idx = font_sort_order[i]; | |
5544 | |
5545 if (compare_pt_p || xlfd_idx != XLFD_POINT_SIZE) | |
5546 { | |
5547 int delta1 = abs (values[i] - font1->numeric[xlfd_idx]); | |
5548 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
|
5549 |
24995 | 5550 if (delta1 > delta2) |
5551 return 0; | |
5552 else if (delta1 < delta2) | |
5553 return 1; | |
5554 else | |
5555 { | |
5556 /* The difference may be equal because, e.g., the face | |
5557 specifies `italic' but we have only `regular' and | |
5558 `oblique'. Prefer `oblique' in this case. */ | |
5559 if ((xlfd_idx == XLFD_WEIGHT || xlfd_idx == XLFD_SLANT) | |
5560 && font1->numeric[xlfd_idx] > values[i] | |
5561 && font2->numeric[xlfd_idx] < values[i]) | |
5562 return 1; | |
5563 } | |
5564 } | |
5565 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5566 |
24995 | 5567 return 0; |
5568 } | |
5569 | |
5570 | |
5571 /* Value is non-zero if FONT is an exact match for face attributes in | |
5572 SPECIFIED. SPECIFIED is an array of face attribute values in font | |
5573 sort order. */ | |
5574 | |
5575 static int | |
5576 exact_face_match_p (specified, font) | |
5577 int *specified; | |
5578 struct font_name *font; | |
5579 { | |
5580 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5581 |
24995 | 5582 for (i = 0; i < 4; ++i) |
5583 if (specified[i] != font->numeric[font_sort_order[i]]) | |
5584 break; | |
5585 | |
5586 return i == 4; | |
5587 } | |
5588 | |
5589 | |
5590 /* Value is the name of a scaled font, generated from scalable font | |
5591 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to. | |
5592 Value is allocated from heap. */ | |
5593 | |
5594 static char * | |
5595 build_scalable_font_name (f, font, specified_pt) | |
5596 struct frame *f; | |
5597 struct font_name *font; | |
5598 int specified_pt; | |
5599 { | |
5600 char point_size[20], pixel_size[20]; | |
5601 int pixel_value; | |
5602 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
5603 double pt; | |
5604 | |
5605 /* If scalable font is for a specific resolution, compute | |
5606 the point size we must specify from the resolution of | |
5607 the display and the specified resolution of the font. */ | |
5608 if (font->numeric[XLFD_RESY] != 0) | |
5609 { | |
5610 pt = resy / font->numeric[XLFD_RESY] * specified_pt + 0.5; | |
5611 pixel_value = font->numeric[XLFD_RESY] / 720.0 * pt; | |
5612 } | |
5613 else | |
5614 { | |
5615 pt = specified_pt; | |
5616 pixel_value = resy / 720.0 * pt; | |
5617 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5618 |
24995 | 5619 /* Set point size of the font. */ |
5620 sprintf (point_size, "%d", (int) pt); | |
5621 font->fields[XLFD_POINT_SIZE] = point_size; | |
5622 font->numeric[XLFD_POINT_SIZE] = pt; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5623 |
24995 | 5624 /* Set pixel size. */ |
5625 sprintf (pixel_size, "%d", pixel_value); | |
5626 font->fields[XLFD_PIXEL_SIZE] = pixel_size; | |
5627 font->numeric[XLFD_PIXEL_SIZE] = pixel_value; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5628 |
24995 | 5629 /* If font doesn't specify its resolution, use the |
5630 resolution of the display. */ | |
5631 if (font->numeric[XLFD_RESY] == 0) | |
5632 { | |
5633 char buffer[20]; | |
5634 sprintf (buffer, "%d", (int) resy); | |
5635 font->fields[XLFD_RESY] = buffer; | |
5636 font->numeric[XLFD_RESY] = resy; | |
5637 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5638 |
24995 | 5639 if (strcmp (font->fields[XLFD_RESX], "0") == 0) |
5640 { | |
5641 char buffer[20]; | |
5642 int resx = FRAME_X_DISPLAY_INFO (f)->resx; | |
5643 sprintf (buffer, "%d", resx); | |
5644 font->fields[XLFD_RESX] = buffer; | |
5645 font->numeric[XLFD_RESX] = resx; | |
5646 } | |
5647 | |
5648 return build_font_name (font); | |
5649 } | |
5650 | |
5651 | |
5652 /* Value is non-zero if we are allowed to use scalable font FONT. We | |
5653 can't run a Lisp function here since this function may be called | |
5654 with input blocked. */ | |
5655 | |
5656 static int | |
5657 may_use_scalable_font_p (font, name) | |
5658 struct font_name *font; | |
5659 char *name; | |
5660 { | |
5661 if (EQ (Vscalable_fonts_allowed, Qt)) | |
5662 return 1; | |
5663 else if (CONSP (Vscalable_fonts_allowed)) | |
5664 { | |
5665 Lisp_Object tail, regexp; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5666 |
24995 | 5667 for (tail = Vscalable_fonts_allowed; CONSP (tail); tail = XCDR (tail)) |
5668 { | |
5669 regexp = XCAR (tail); | |
5670 if (STRINGP (regexp) | |
5671 && fast_c_string_match_ignore_case (regexp, name) >= 0) | |
5672 return 1; | |
5673 } | |
5674 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5675 |
24995 | 5676 return 0; |
5677 } | |
5678 | |
5679 | |
5680 | |
5681 /* Return the name of the best matching font for face attributes | |
5682 ATTRS in the array of font_name structures FONTS which contains | |
5683 NFONTS elements. Value is a font name which is allocated from | |
5684 the heap. FONTS is freed by this function. */ | |
5685 | |
5686 static char * | |
5687 best_matching_font (f, attrs, fonts, nfonts) | |
5688 struct frame *f; | |
5689 Lisp_Object *attrs; | |
5690 struct font_name *fonts; | |
5691 int nfonts; | |
5692 { | |
5693 char *font_name; | |
5694 struct font_name *best; | |
31507
ac6d049932e9
(Finternal_merge_in_global_face): Return a Lisp object.
Gerd Moellmann <gerd@gnu.org>
parents:
31483
diff
changeset
|
5695 int i, pt = 0; |
24995 | 5696 int specified[4]; |
5697 int exact_p; | |
5698 | |
5699 if (nfonts == 0) | |
5700 return NULL; | |
5701 | |
5702 /* Make specified font attributes available in `specified', | |
5703 indexed by sort order. */ | |
5704 for (i = 0; i < DIM (font_sort_order); ++i) | |
5705 { | |
5706 int xlfd_idx = font_sort_order[i]; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5707 |
24995 | 5708 if (xlfd_idx == XLFD_SWIDTH) |
5709 specified[i] = face_numeric_swidth (attrs[LFACE_SWIDTH_INDEX]); | |
5710 else if (xlfd_idx == XLFD_POINT_SIZE) | |
5711 specified[i] = pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5712 else if (xlfd_idx == XLFD_WEIGHT) | |
5713 specified[i] = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
5714 else if (xlfd_idx == XLFD_SLANT) | |
5715 specified[i] = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
5716 else | |
5717 abort (); | |
5718 } | |
5719 | |
5720 exact_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5721 |
24995 | 5722 /* Start with the first non-scalable font in the list. */ |
5723 for (i = 0; i < nfonts; ++i) | |
5724 if (!font_scalable_p (fonts + i)) | |
5725 break; | |
5726 | |
5727 /* Find the best match among the non-scalable fonts. */ | |
5728 if (i < nfonts) | |
5729 { | |
5730 best = fonts + i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5731 |
24995 | 5732 for (i = 1; i < nfonts; ++i) |
5733 if (!font_scalable_p (fonts + i) | |
5734 && better_font_p (specified, fonts + i, best, 1)) | |
5735 { | |
5736 best = fonts + i; | |
5737 | |
5738 exact_p = exact_face_match_p (specified, best); | |
5739 if (exact_p) | |
5740 break; | |
5741 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5742 |
24995 | 5743 } |
5744 else | |
5745 best = NULL; | |
5746 | |
5747 /* Unless we found an exact match among non-scalable fonts, see if | |
5748 we can find a better match among scalable fonts. */ | |
5749 if (!exact_p) | |
5750 { | |
5751 /* A scalable font is better if | |
5752 | |
5753 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
|
5754 |
24995 | 5755 2. the best non-scalable font doesn't have the required |
5756 point size, and the scalable fonts weight, slant, swidth | |
5757 isn't worse. */ | |
5758 | |
5759 int non_scalable_has_exact_height_p; | |
5760 | |
5761 if (best && best->numeric[XLFD_POINT_SIZE] == pt) | |
5762 non_scalable_has_exact_height_p = 1; | |
5763 else | |
5764 non_scalable_has_exact_height_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5765 |
24995 | 5766 for (i = 0; i < nfonts; ++i) |
5767 if (font_scalable_p (fonts + i)) | |
5768 { | |
5769 if (best == NULL | |
5770 || better_font_p (specified, fonts + i, best, 0) | |
5771 || (!non_scalable_has_exact_height_p | |
5772 && !better_font_p (specified, best, fonts + i, 0))) | |
5773 best = fonts + i; | |
5774 } | |
5775 } | |
5776 | |
5777 if (font_scalable_p (best)) | |
5778 font_name = build_scalable_font_name (f, best, pt); | |
5779 else | |
5780 font_name = build_font_name (best); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5781 |
24995 | 5782 /* Free font_name structures. */ |
5783 free_font_names (fonts, nfonts); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5784 |
24995 | 5785 return font_name; |
5786 } | |
5787 | |
5788 | |
5789 /* Try to get a list of fonts on frame F with font family FAMILY and | |
5790 registry/encoding REGISTRY. Return in *FONTS a pointer to a vector | |
5791 of font_name structures for the fonts matched. Value is the number | |
5792 of fonts found. */ | |
5793 | |
5794 static int | |
5795 try_font_list (f, attrs, pattern, family, registry, fonts) | |
5796 struct frame *f; | |
5797 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5798 Lisp_Object pattern, family, registry; |
24995 | 5799 struct font_name **fonts; |
5800 { | |
5801 int nfonts; | |
5802 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5803 if (NILP (family) && STRINGP (attrs[LFACE_FAMILY_INDEX])) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5804 family = attrs[LFACE_FAMILY_INDEX]; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5805 |
24995 | 5806 nfonts = font_list (f, pattern, family, registry, fonts); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5807 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5808 if (nfonts == 0 && !NILP (family)) |
24995 | 5809 { |
5810 Lisp_Object alter; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5811 |
24995 | 5812 /* Try alternative font families from |
5813 Vface_alternative_font_family_alist. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5814 alter = Fassoc (family, Vface_alternative_font_family_alist); |
24995 | 5815 if (CONSP (alter)) |
5816 for (alter = XCDR (alter); | |
5817 CONSP (alter) && nfonts == 0; | |
5818 alter = XCDR (alter)) | |
5819 { | |
5820 if (STRINGP (XCAR (alter))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5821 nfonts = font_list (f, Qnil, XCAR (alter), registry, fonts); |
24995 | 5822 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5823 |
24995 | 5824 /* Try font family of the default face or "fixed". */ |
5825 if (nfonts == 0) | |
5826 { | |
5827 struct face *dflt = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5828 if (dflt) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5829 family = dflt->lface[LFACE_FAMILY_INDEX]; |
24995 | 5830 else |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5831 family = build_string ("fixed"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5832 nfonts = font_list (f, Qnil, family, registry, fonts); |
24995 | 5833 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5834 |
24995 | 5835 /* Try any family with the given registry. */ |
5836 if (nfonts == 0) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5837 nfonts = font_list (f, Qnil, Qnil, registry, fonts); |
24995 | 5838 } |
5839 | |
5840 return nfonts; | |
5841 } | |
5842 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5843 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5844 /* 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
|
5845 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
|
5846 attribute of ATTRS doesn't name a fontset. */ |
24995 | 5847 |
5848 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5849 face_fontset (attrs) |
24995 | 5850 Lisp_Object *attrs; |
5851 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5852 Lisp_Object name; |
24995 | 5853 int fontset; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5854 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5855 name = attrs[LFACE_FONT_INDEX]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5856 if (!STRINGP (name)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5857 return -1; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5858 return fs_query_fontset (name, 0); |
24995 | 5859 } |
5860 | |
5861 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5862 /* 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
|
5863 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
|
5864 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
|
5865 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
|
5866 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
|
5867 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
|
5868 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
|
5869 character. */ |
24995 | 5870 |
5871 static char * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5872 choose_face_font (f, attrs, fontset, c) |
24995 | 5873 struct frame *f; |
5874 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5875 int fontset, c; |
24995 | 5876 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5877 Lisp_Object pattern; |
24995 | 5878 char *font_name = NULL; |
5879 struct font_name *fonts; | |
5880 int nfonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5881 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5882 /* 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
|
5883 a font for C. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5884 pattern = fontset_font_pattern (f, fontset, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5885 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5886 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5887 xassert (!SINGLE_BYTE_CHAR_P (c)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5888 return NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5889 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5890 /* 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
|
5891 if (STRINGP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5892 return xstrdup (XSTRING (pattern)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5893 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5894 /* 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
|
5895 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
|
5896 character. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5897 if (STRINGP (attrs[LFACE_FAMILY_INDEX]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5898 && SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5899 XCAR (pattern) = Qnil; |
24995 | 5900 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5901 /* Get a list of fonts matching that pattern and choose the |
24995 | 5902 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
|
5903 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
|
5904 &fonts); |
24995 | 5905 font_name = best_matching_font (f, attrs, fonts, nfonts); |
5906 return font_name; | |
5907 } | |
5908 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5909 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5910 |
5911 | |
5912 | |
5913 /*********************************************************************** | |
5914 Face Realization | |
5915 ***********************************************************************/ | |
5916 | |
5917 /* Realize basic faces on frame F. Value is zero if frame parameters | |
5918 of F don't contain enough information needed to realize the default | |
5919 face. */ | |
5920 | |
5921 static int | |
5922 realize_basic_faces (f) | |
2342 | 5923 struct frame *f; |
24995 | 5924 { |
5925 int success_p = 0; | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5926 |
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5927 /* 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
|
5928 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
|
5929 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5930 |
24995 | 5931 if (realize_default_face (f)) |
5932 { | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
5933 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
|
5934 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
|
5935 realize_named_face (f, Qfringe, BITMAP_AREA_FACE_ID); |
25546 | 5936 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
|
5937 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
|
5938 realize_named_face (f, Qborder, BORDER_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5939 realize_named_face (f, Qcursor, CURSOR_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5940 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
|
5941 realize_named_face (f, Qmenu, MENU_FACE_ID); |
24995 | 5942 success_p = 1; |
5943 } | |
5944 | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5945 UNBLOCK_INPUT; |
24995 | 5946 return success_p; |
5947 } | |
5948 | |
5949 | |
5950 /* Realize the default face on frame F. If the face is not fully | |
5951 specified, make it fully-specified. Attributes of the default face | |
5952 that are not explicitly specified are taken from frame parameters. */ | |
5953 | |
5954 static int | |
5955 realize_default_face (f) | |
5956 struct frame *f; | |
5957 { | |
5958 struct face_cache *c = FRAME_FACE_CACHE (f); | |
5959 Lisp_Object lface; | |
5960 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5961 Lisp_Object frame_font; | |
5962 struct face *face; | |
5963 int fontset; | |
5964 | |
5965 /* If the `default' face is not yet known, create it. */ | |
5966 lface = lface_from_face_name (f, Qdefault, 0); | |
5967 if (NILP (lface)) | |
5968 { | |
5969 Lisp_Object frame; | |
5970 XSETFRAME (frame, f); | |
5971 lface = Finternal_make_lisp_face (Qdefault, frame); | |
5972 } | |
5973 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5974 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5975 if (FRAME_WINDOW_P (f)) |
24995 | 5976 { |
5977 /* Set frame_font to the value of the `font' frame parameter. */ | |
5978 frame_font = Fassq (Qfont, f->param_alist); | |
5979 xassert (CONSP (frame_font) && STRINGP (XCDR (frame_font))); | |
5980 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
|
5981 set_lface_from_font_name (f, lface, frame_font, 1, 1); |
24995 | 5982 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5983 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5984 |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5985 if (!FRAME_WINDOW_P (f)) |
24995 | 5986 { |
5987 LFACE_FAMILY (lface) = build_string ("default"); | |
5988 LFACE_SWIDTH (lface) = Qnormal; | |
5989 LFACE_HEIGHT (lface) = make_number (1); | |
5990 LFACE_WEIGHT (lface) = Qnormal; | |
5991 LFACE_SLANT (lface) = Qnormal; | |
5992 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5993 |
24995 | 5994 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface))) |
5995 LFACE_UNDERLINE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5996 |
24995 | 5997 if (UNSPECIFIEDP (LFACE_OVERLINE (lface))) |
5998 LFACE_OVERLINE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5999 |
24995 | 6000 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface))) |
6001 LFACE_STRIKE_THROUGH (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6002 |
24995 | 6003 if (UNSPECIFIEDP (LFACE_BOX (lface))) |
6004 LFACE_BOX (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6005 |
24995 | 6006 if (UNSPECIFIEDP (LFACE_INVERSE (lface))) |
6007 LFACE_INVERSE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6008 |
24995 | 6009 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
6010 { | |
6011 /* This function is called so early that colors are not yet | |
6012 set in the frame parameter list. */ | |
6013 Lisp_Object color = Fassq (Qforeground_color, f->param_alist); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6014 |
24995 | 6015 if (CONSP (color) && STRINGP (XCDR (color))) |
6016 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
|
6017 else if (FRAME_WINDOW_P (f)) |
24995 | 6018 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6019 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
|
6020 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
|
6021 else |
24995 | 6022 abort (); |
6023 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6024 |
24995 | 6025 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
6026 { | |
6027 /* This function is called so early that colors are not yet | |
6028 set in the frame parameter list. */ | |
6029 Lisp_Object color = Fassq (Qbackground_color, f->param_alist); | |
6030 if (CONSP (color) && STRINGP (XCDR (color))) | |
6031 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
|
6032 else if (FRAME_WINDOW_P (f)) |
24995 | 6033 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6034 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
|
6035 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
|
6036 else |
24995 | 6037 abort (); |
6038 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6039 |
24995 | 6040 if (UNSPECIFIEDP (LFACE_STIPPLE (lface))) |
6041 LFACE_STIPPLE (lface) = Qnil; | |
6042 | |
6043 /* Realize the face; it must be fully-specified now. */ | |
6044 xassert (lface_fully_specified_p (XVECTOR (lface)->contents)); | |
6045 check_lface (lface); | |
6046 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6047 face = realize_face (c, attrs, 0, NULL, DEFAULT_FACE_ID); |
24995 | 6048 return 1; |
6049 } | |
6050 | |
6051 | |
6052 /* Realize basic faces other than the default face in face cache C. | |
6053 SYMBOL is the face name, ID is the face id the realized face must | |
6054 have. The default face must have been realized already. */ | |
6055 | |
6056 static void | |
6057 realize_named_face (f, symbol, id) | |
6058 struct frame *f; | |
6059 Lisp_Object symbol; | |
6060 int id; | |
6061 { | |
6062 struct face_cache *c = FRAME_FACE_CACHE (f); | |
6063 Lisp_Object lface = lface_from_face_name (f, symbol, 0); | |
6064 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6065 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
6066 struct face *new_face; | |
6067 | |
6068 /* The default face must exist and be fully specified. */ | |
6069 get_lface_attributes (f, Qdefault, attrs, 1); | |
6070 check_lface_attrs (attrs); | |
6071 xassert (lface_fully_specified_p (attrs)); | |
6072 | |
6073 /* If SYMBOL isn't know as a face, create it. */ | |
6074 if (NILP (lface)) | |
6075 { | |
6076 Lisp_Object frame; | |
6077 XSETFRAME (frame, f); | |
6078 lface = Finternal_make_lisp_face (symbol, frame); | |
6079 } | |
6080 | |
6081 /* Merge SYMBOL's face with the default face. */ | |
6082 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
31178 | 6083 merge_face_vectors (f, symbol_attrs, attrs, Qnil); |
24995 | 6084 |
6085 /* Realize the face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6086 new_face = realize_face (c, attrs, 0, NULL, id); |
24995 | 6087 } |
6088 | |
6089 | |
6090 /* 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
|
6091 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
|
6092 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
|
6093 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
|
6094 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
|
6095 pointer to the newly created realized face. */ |
24995 | 6096 |
6097 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6098 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
|
6099 struct face_cache *cache; |
24995 | 6100 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6101 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6102 struct face *base_face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6103 int former_face_id; |
24995 | 6104 { |
6105 struct face *face; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6106 |
24995 | 6107 /* LFACE must be fully specified. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6108 xassert (cache != NULL); |
24995 | 6109 check_lface_attrs (attrs); |
6110 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6111 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
|
6112 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6113 /* Remove the former face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6114 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
|
6115 uncache_face (cache, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6116 free_realized_face (cache->f, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6117 } |
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 if (FRAME_WINDOW_P (cache->f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6120 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
|
6121 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
|
6122 face = realize_tty_face (cache, attrs, c); |
24995 | 6123 else |
6124 abort (); | |
6125 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6126 /* Insert the new face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6127 cache_face (cache, face, lface_hash (attrs)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6128 #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
|
6129 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
|
6130 load_face_font (cache->f, face, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6131 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6132 return face; |
6133 } | |
6134 | |
6135 | |
6136 /* 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
|
6137 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
|
6138 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
|
6139 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
|
6140 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
|
6141 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
|
6142 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
|
6143 face. */ |
24995 | 6144 |
6145 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6146 realize_x_face (cache, attrs, c, base_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6147 struct face_cache *cache; |
24995 | 6148 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6149 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6150 struct face *base_face; |
24995 | 6151 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6152 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 6153 struct face *face, *default_face; |
26875
d6aa11f2a4af
(choose_face_fontset_font): Delete codes for a
Kenichi Handa <handa@m17n.org>
parents:
26759
diff
changeset
|
6154 struct frame *f; |
24995 | 6155 Lisp_Object stipple, overline, strike_through, box; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6156 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6157 xassert (FRAME_WINDOW_P (cache->f)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6158 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
|
6159 || base_face); |
24995 | 6160 |
6161 /* Allocate a new realized face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6162 face = make_realized_face (attrs); |
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 f = cache->f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6165 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6166 /* 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
|
6167 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
|
6168 different font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6169 if (!SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6170 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6171 bcopy (base_face, face, sizeof *face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6172 face->gc = 0; |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6173 |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6174 /* 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
|
6175 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
|
6176 face->background_defaulted_p = 1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6177 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
|
6178 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
|
6179 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
|
6180 face->box_color_defaulted_p = 1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6181 |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6182 /* 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
|
6183 face->font = NULL; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6184 return face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6185 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6186 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6187 /* 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
|
6188 |
24995 | 6189 /* Determine the font to use. Most of the time, the font will be |
6190 the same as the font of the default face, so try that first. */ | |
6191 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6192 if (default_face | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6193 && FACE_SUITABLE_FOR_CHAR_P (default_face, c) |
24995 | 6194 && lface_same_font_attributes_p (default_face->lface, attrs)) |
6195 { | |
6196 face->font = default_face->font; | |
6197 face->fontset = default_face->fontset; | |
6198 face->font_info_id = default_face->font_info_id; | |
6199 face->font_name = default_face->font_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6200 face->ascii_face = face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6201 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6202 /* 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
|
6203 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
|
6204 face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6205 face->fontset |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6206 = make_fontset_for_ascii_face (f, default_face->fontset); |
24995 | 6207 } |
6208 else | |
6209 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6210 /* 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
|
6211 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
|
6212 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
|
6213 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
|
6214 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
|
6215 are constructed from ATTRS. */ |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
6216 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
|
6217 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6218 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
|
6219 fontset = default_face->fontset; |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
6220 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
|
6221 face->font = NULL; /* to force realize_face to load font */ |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6222 |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6223 #ifdef macintosh |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6224 /* Load the font if it is specified in ATTRS. This fixes |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6225 changing frame font on the Mac. */ |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6226 if (STRINGP (attrs[LFACE_FONT_INDEX])) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6227 { |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6228 struct font_info *font_info = |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6229 FS_LOAD_FONT (f, 0, XSTRING (attrs[LFACE_FONT_INDEX])->data, -1); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6230 if (font_info) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6231 face->font = font_info->font; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6232 } |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6233 #endif |
24995 | 6234 } |
6235 | |
6236 /* Load colors, and set remaining attributes. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6237 |
24995 | 6238 load_face_colors (f, face, attrs); |
6239 | |
6240 /* Set up box. */ | |
6241 box = attrs[LFACE_BOX_INDEX]; | |
6242 if (STRINGP (box)) | |
6243 { | |
6244 /* A simple box of line width 1 drawn in color given by | |
6245 the string. */ | |
6246 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX], | |
6247 LFACE_BOX_INDEX); | |
6248 face->box = FACE_SIMPLE_BOX; | |
6249 face->box_line_width = 1; | |
6250 } | |
6251 else if (INTEGERP (box)) | |
6252 { | |
6253 /* Simple box of specified line width in foreground color of the | |
6254 face. */ | |
6255 xassert (XINT (box) > 0); | |
6256 face->box = FACE_SIMPLE_BOX; | |
6257 face->box_line_width = XFASTINT (box); | |
6258 face->box_color = face->foreground; | |
6259 face->box_color_defaulted_p = 1; | |
6260 } | |
6261 else if (CONSP (box)) | |
6262 { | |
6263 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW | |
6264 being one of `raised' or `sunken'. */ | |
6265 face->box = FACE_SIMPLE_BOX; | |
6266 face->box_color = face->foreground; | |
6267 face->box_color_defaulted_p = 1; | |
6268 face->box_line_width = 1; | |
6269 | |
6270 while (CONSP (box)) | |
6271 { | |
6272 Lisp_Object keyword, value; | |
6273 | |
6274 keyword = XCAR (box); | |
6275 box = XCDR (box); | |
6276 | |
6277 if (!CONSP (box)) | |
6278 break; | |
6279 value = XCAR (box); | |
6280 box = XCDR (box); | |
6281 | |
6282 if (EQ (keyword, QCline_width)) | |
6283 { | |
6284 if (INTEGERP (value) && XINT (value) > 0) | |
6285 face->box_line_width = XFASTINT (value); | |
6286 } | |
6287 else if (EQ (keyword, QCcolor)) | |
6288 { | |
6289 if (STRINGP (value)) | |
6290 { | |
6291 face->box_color = load_color (f, face, value, | |
6292 LFACE_BOX_INDEX); | |
6293 face->use_box_color_for_shadows_p = 1; | |
6294 } | |
6295 } | |
6296 else if (EQ (keyword, QCstyle)) | |
6297 { | |
6298 if (EQ (value, Qreleased_button)) | |
6299 face->box = FACE_RAISED_BOX; | |
6300 else if (EQ (value, Qpressed_button)) | |
6301 face->box = FACE_SUNKEN_BOX; | |
6302 } | |
6303 } | |
6304 } | |
6305 | |
6306 /* Text underline, overline, strike-through. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6307 |
24995 | 6308 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt)) |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6309 { |
24995 | 6310 /* Use default color (same as foreground color). */ |
6311 face->underline_p = 1; | |
6312 face->underline_defaulted_p = 1; | |
6313 face->underline_color = 0; | |
6314 } | |
6315 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX])) | |
6316 { | |
6317 /* Use specified color. */ | |
6318 face->underline_p = 1; | |
6319 face->underline_defaulted_p = 0; | |
6320 face->underline_color | |
6321 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX], | |
6322 LFACE_UNDERLINE_INDEX); | |
6323 } | |
6324 else if (NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6325 { | |
6326 face->underline_p = 0; | |
6327 face->underline_defaulted_p = 0; | |
6328 face->underline_color = 0; | |
6329 } | |
6330 | |
6331 overline = attrs[LFACE_OVERLINE_INDEX]; | |
6332 if (STRINGP (overline)) | |
6333 { | |
6334 face->overline_color | |
6335 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX], | |
6336 LFACE_OVERLINE_INDEX); | |
6337 face->overline_p = 1; | |
6338 } | |
6339 else if (EQ (overline, Qt)) | |
6340 { | |
6341 face->overline_color = face->foreground; | |
6342 face->overline_color_defaulted_p = 1; | |
6343 face->overline_p = 1; | |
6344 } | |
6345 | |
6346 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX]; | |
6347 if (STRINGP (strike_through)) | |
6348 { | |
6349 face->strike_through_color | |
6350 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX], | |
6351 LFACE_STRIKE_THROUGH_INDEX); | |
6352 face->strike_through_p = 1; | |
6353 } | |
6354 else if (EQ (strike_through, Qt)) | |
6355 { | |
6356 face->strike_through_color = face->foreground; | |
6357 face->strike_through_color_defaulted_p = 1; | |
6358 face->strike_through_p = 1; | |
6359 } | |
6360 | |
6361 stipple = attrs[LFACE_STIPPLE_INDEX]; | |
6362 if (!NILP (stipple)) | |
6363 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h); | |
6364 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6365 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c)); |
24995 | 6366 return face; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6367 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6368 } |
6369 | |
6370 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6371 /* 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
|
6372 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
|
6373 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
|
6374 default foreground/background colors. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6375 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6376 static void |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6377 map_tty_color (f, face, idx, defaulted) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6378 struct frame *f; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6379 struct face *face; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6380 enum lface_attribute_index idx; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6381 int *defaulted; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6382 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6383 Lisp_Object frame, color, def; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6384 int foreground_p = idx == LFACE_FOREGROUND_INDEX; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6385 unsigned long default_pixel, default_other_pixel, 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 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
|
6388 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6389 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6390 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6391 pixel = default_pixel = FACE_TTY_DEFAULT_FG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6392 default_other_pixel = FACE_TTY_DEFAULT_BG_COLOR; |
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 else |
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 pixel = default_pixel = FACE_TTY_DEFAULT_BG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6397 default_other_pixel = FACE_TTY_DEFAULT_FG_COLOR; |
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 XSETFRAME (frame, f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6401 color = face->lface[idx]; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6402 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6403 if (STRINGP (color) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6404 && XSTRING (color)->size |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6405 && CONSP (Vtty_defined_color_alist) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6406 && (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
|
6407 CONSP (def))) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6408 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6409 /* 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
|
6410 (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
|
6411 pixel = XINT (XCAR (XCDR (def))); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6412 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6413 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6414 if (pixel == default_pixel && STRINGP (color)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6415 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6416 pixel = load_color (f, face, color, idx); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6417 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6418 #if defined (MSDOS) || defined (WINDOWSNT) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6419 /* 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
|
6420 use the foreground color defined by the frame. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6421 #ifdef MSDOS |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6422 if (FRAME_MSDOS_P (f)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6423 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6424 #endif /* MSDOS */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6425 if (pixel == default_pixel |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6426 || pixel == FACE_TTY_DEFAULT_COLOR) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6427 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6428 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6429 pixel = FRAME_FOREGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6430 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6431 pixel = FRAME_BACKGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6432 face->lface[idx] = tty_color_name (f, pixel); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6433 *defaulted = 1; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6434 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6435 else if (pixel == default_other_pixel) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6436 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6437 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6438 pixel = FRAME_BACKGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6439 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6440 pixel = FRAME_FOREGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6441 face->lface[idx] = tty_color_name (f, pixel); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6442 *defaulted = 1; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6443 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6444 #ifdef MSDOS |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6445 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6446 #endif |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6447 #endif /* MSDOS or WINDOWSNT */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6448 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6449 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6450 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6451 face->foreground = pixel; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6452 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6453 face->background = pixel; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6454 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6455 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6456 |
24995 | 6457 /* 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
|
6458 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
|
6459 pointer to the newly created realized face. */ |
24995 | 6460 |
6461 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6462 realize_tty_face (cache, attrs, c) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6463 struct face_cache *cache; |
24995 | 6464 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6465 int c; |
24995 | 6466 { |
6467 struct face *face; | |
6468 int weight, slant; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6469 int face_colors_defaulted = 0; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6470 struct frame *f = cache->f; |
24995 | 6471 |
6472 /* Frame must be a termcap frame. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6473 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
|
6474 |
24995 | 6475 /* Allocate a new realized face. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6476 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6477 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty"; |
24995 | 6478 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6479 /* Map face attributes to TTY appearances. We map slant to |
24995 | 6480 dimmed text because we want italic text to appear differently |
6481 and because dimmed text is probably used infrequently. */ | |
6482 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
6483 slant = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
6484 | |
6485 if (weight > XLFD_WEIGHT_MEDIUM) | |
6486 face->tty_bold_p = 1; | |
6487 if (weight < XLFD_WEIGHT_MEDIUM || slant != XLFD_SLANT_ROMAN) | |
6488 face->tty_dim_p = 1; | |
6489 if (!NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6490 face->tty_underline_p = 1; | |
6491 if (!NILP (attrs[LFACE_INVERSE_INDEX])) | |
6492 face->tty_reverse_p = 1; | |
6493 | |
6494 /* Map color names to color indices. */ | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6495 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
|
6496 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
|
6497 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6498 /* 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
|
6499 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
|
6500 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
|
6501 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
|
6502 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6503 unsigned long tem = face->foreground; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6504 face->foreground = face->background; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6505 face->background = tem; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6506 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6507 |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6508 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
|
6509 && face->tty_bold_p |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6510 && 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
|
6511 && 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
|
6512 face->tty_bold_p = 0; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6513 |
24995 | 6514 return face; |
6515 } | |
6516 | |
6517 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6518 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
|
6519 Ftty_suppress_bold_inverse_default_colors, |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6520 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
|
6521 "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
|
6522 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
|
6523 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
|
6524 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
|
6525 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
|
6526 is non-nil.") |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6527 (suppress) |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6528 Lisp_Object suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6529 { |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6530 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
|
6531 ++face_change_count; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6532 return suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6533 } |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6534 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6535 |
24995 | 6536 |
6537 /*********************************************************************** | |
6538 Computing Faces | |
6539 ***********************************************************************/ | |
6540 | |
6541 /* Return the ID of the face to use to display character CH with face | |
6542 property PROP on frame F in current_buffer. */ | |
6543 | |
6544 int | |
6545 compute_char_face (f, ch, prop) | |
6546 struct frame *f; | |
6547 int ch; | |
6548 Lisp_Object prop; | |
6549 { | |
6550 int face_id; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6551 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6552 if (NILP (current_buffer->enable_multibyte_characters)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6553 ch = -1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6554 |
24995 | 6555 if (NILP (prop)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6556 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6557 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
|
6558 face_id = FACE_FOR_CHAR (f, face, ch); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6559 } |
24995 | 6560 else |
6561 { | |
6562 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6563 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6564 bcopy (default_face->lface, attrs, sizeof attrs); | |
6565 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
|
6566 face_id = lookup_face (f, attrs, ch, NULL); |
24995 | 6567 } |
6568 | |
6569 return face_id; | |
6570 } | |
6571 | |
6572 | |
6573 /* Return the face ID associated with buffer position POS for | |
6574 displaying ASCII characters. Return in *ENDPTR the position at | |
6575 which a different face is needed, as far as text properties and | |
6576 overlays are concerned. W is a window displaying current_buffer. | |
6577 | |
6578 REGION_BEG, REGION_END delimit the region, so it can be | |
6579 highlighted. | |
6580 | |
6581 LIMIT is a position not to scan beyond. That is to limit the time | |
6582 this function can take. | |
6583 | |
6584 If MOUSE is non-zero, use the character's mouse-face, not its face. | |
6585 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6586 The face returned is suitable for displaying ASCII characters. */ |
24995 | 6587 |
6588 int | |
6589 face_at_buffer_position (w, pos, region_beg, region_end, | |
6590 endptr, limit, mouse) | |
2391 | 6591 struct window *w; |
2342 | 6592 int pos; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6593 int region_beg, region_end; |
2342 | 6594 int *endptr; |
5084
863e092a5891
(compute_char_face): Accept new arg LIMIT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6595 int limit; |
6615
96ddf85642d1
(compute_char_face): New arg MOUSE.
Richard M. Stallman <rms@gnu.org>
parents:
5858
diff
changeset
|
6596 int mouse; |
2342 | 6597 { |
24995 | 6598 struct frame *f = XFRAME (w->frame); |
6599 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
|
6600 Lisp_Object prop, position; |
24995 | 6601 int i, noverlays; |
2342 | 6602 Lisp_Object *overlay_vec; |
2391 | 6603 Lisp_Object frame; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6604 int endpos; |
24995 | 6605 Lisp_Object propname = mouse ? Qmouse_face : Qface; |
6606 Lisp_Object limit1, end; | |
6607 struct face *default_face; | |
6608 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
|
6609 |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6610 /* 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
|
6611 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
|
6612 /* xassert (XBUFFER (w->buffer) == current_buffer); */ |
2391 | 6613 |
9284
a969e0eefaf5
(compute_char_face): Use new accessor macros instead of calling XSET directly.
Karl Heuer <kwzh@gnu.org>
parents:
9186
diff
changeset
|
6614 XSETFRAME (frame, f); |
24995 | 6615 XSETFASTINT (position, pos); |
2342 | 6616 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6617 endpos = ZV; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6618 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
|
6619 endpos = region_beg; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6620 |
24995 | 6621 /* Get the `face' or `mouse_face' text property at POS, and |
6622 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
|
6623 prop = Fget_text_property (position, propname, w->buffer); |
24995 | 6624 XSETFASTINT (limit1, (limit < endpos ? limit : endpos)); |
6625 end = Fnext_single_property_change (position, propname, w->buffer, limit1); | |
6626 if (INTEGERP (end)) | |
6627 endpos = XINT (end); | |
6628 | |
6629 /* 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
|
6630 { |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6631 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
|
6632 int len; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6633 |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6634 /* 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
|
6635 len = 40; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6636 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
|
6637 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
|
6638 &next_overlay, NULL, 0); |
24995 | 6639 |
6640 /* If there are more than 40, make enough space for all, and try | |
6641 again. */ | |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6642 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
|
6643 { |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6644 len = noverlays; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6645 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
|
6646 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
|
6647 &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
|
6648 } |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6649 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6650 if (next_overlay < endpos) |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6651 endpos = next_overlay; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6652 } |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6653 |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6654 *endptr = endpos; |
2342 | 6655 |
24995 | 6656 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
|
6657 |
24995 | 6658 /* Optimize common cases where we can use the default face. */ |
6659 if (noverlays == 0 | |
6660 && NILP (prop) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6661 && !(pos >= region_beg && pos < region_end)) |
24995 | 6662 return DEFAULT_FACE_ID; |
6663 | |
6664 /* Begin with attributes from the default face. */ | |
6665 bcopy (default_face->lface, attrs, sizeof attrs); | |
6666 | |
6667 /* Merge in attributes specified via text properties. */ | |
6668 if (!NILP (prop)) | |
6669 merge_face_vector_with_property (f, attrs, prop); | |
6670 | |
6671 /* 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
|
6672 noverlays = sort_overlays (overlay_vec, noverlays, w); |
2342 | 6673 for (i = 0; i < noverlays; i++) |
6674 { | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6675 Lisp_Object oend; |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6676 int oendpos; |
9186
45bac5feb065
(compute_char_face): Handle list as overlay face property.
Richard M. Stallman <rms@gnu.org>
parents:
9184
diff
changeset
|
6677 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6678 prop = Foverlay_get (overlay_vec[i], propname); |
24995 | 6679 if (!NILP (prop)) |
6680 merge_face_vector_with_property (f, attrs, prop); | |
2342 | 6681 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6682 oend = OVERLAY_END (overlay_vec[i]); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6683 oendpos = OVERLAY_POSITION (oend); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6684 if (oendpos < endpos) |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6685 endpos = oendpos; |
2342 | 6686 } |
6687 | |
24995 | 6688 /* 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
|
6689 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
|
6690 { |
24995 | 6691 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
31178 | 6692 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
|
6693 |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6694 if (region_end < endpos) |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6695 endpos = region_end; |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6696 } |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6697 |
2342 | 6698 *endptr = endpos; |
6699 | |
24995 | 6700 /* 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
|
6701 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6702 return lookup_face (f, attrs, 0, NULL); |
2342 | 6703 } |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6704 |
24995 | 6705 |
6706 /* 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
|
6707 window W, for ASCII characters. |
24995 | 6708 |
6709 If STRING is an overlay string, it comes from position BUFPOS in | |
6710 current_buffer, otherwise BUFPOS is zero to indicate that STRING is | |
6711 not an overlay string. W must display the current buffer. | |
6712 REGION_BEG and REGION_END give the start and end positions of the | |
6713 region; both are -1 if no region is visible. BASE_FACE_ID is the | |
6714 id of the basic face to merge with. It is usually equal to | |
25546 | 6715 DEFAULT_FACE_ID but can be MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID |
24995 | 6716 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
|
6717 |
24995 | 6718 Set *ENDPTR to the next position where to check for faces in |
6719 STRING; -1 if the face is constant from POS to the end of the | |
6720 string. | |
6721 | |
6722 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
|
6723 for displaying ASCII characters. */ |
24995 | 6724 |
6725 int | |
6726 face_at_string_position (w, string, pos, bufpos, region_beg, | |
6727 region_end, endptr, base_face_id) | |
6728 struct window *w; | |
6729 Lisp_Object string; | |
6730 int pos, bufpos; | |
6731 int region_beg, region_end; | |
6732 int *endptr; | |
6733 enum face_id base_face_id; | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6734 { |
24995 | 6735 Lisp_Object prop, position, end, limit; |
6736 struct frame *f = XFRAME (WINDOW_FRAME (w)); | |
6737 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6738 struct face *base_face; | |
6739 int multibyte_p = STRING_MULTIBYTE (string); | |
6740 | |
6741 /* Get the value of the face property at the current position within | |
6742 STRING. Value is nil if there is no face property. */ | |
6743 XSETFASTINT (position, pos); | |
6744 prop = Fget_text_property (position, Qface, string); | |
6745 | |
6746 /* Get the next position at which to check for faces. Value of end | |
6747 is nil if face is constant all the way to the end of the string. | |
6748 Otherwise it is a string position where to check faces next. | |
6749 Limit is the maximum position up to which to check for property | |
6750 changes in Fnext_single_property_change. Strings are usually | |
6751 short, so set the limit to the end of the string. */ | |
6752 XSETFASTINT (limit, XSTRING (string)->size); | |
6753 end = Fnext_single_property_change (position, Qface, string, limit); | |
6754 if (INTEGERP (end)) | |
6755 *endptr = XFASTINT (end); | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6756 else |
24995 | 6757 *endptr = -1; |
6758 | |
6759 base_face = FACE_FROM_ID (f, base_face_id); | |
6760 xassert (base_face); | |
6761 | |
6762 /* Optimize the default case that there is no face property and we | |
6763 are not in the region. */ | |
6764 if (NILP (prop) | |
6765 && (base_face_id != DEFAULT_FACE_ID | |
6766 /* BUFPOS <= 0 means STRING is not an overlay string, so | |
6767 that the region doesn't have to be taken into account. */ | |
6768 || bufpos <= 0 | |
6769 || bufpos < region_beg | |
6770 || bufpos >= region_end) | |
6771 && (multibyte_p | |
6772 /* We can't realize faces for different charsets differently | |
6773 if we don't have fonts, so we can stop here if not working | |
6774 on a window-system frame. */ | |
6775 || !FRAME_WINDOW_P (f) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6776 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0))) |
24995 | 6777 return base_face->id; |
6778 | |
6779 /* Begin with attributes from the base face. */ | |
6780 bcopy (base_face->lface, attrs, sizeof attrs); | |
6781 | |
6782 /* Merge in attributes specified via text properties. */ | |
6783 if (!NILP (prop)) | |
6784 merge_face_vector_with_property (f, attrs, prop); | |
6785 | |
6786 /* If in the region, merge in the region face. */ | |
6787 if (bufpos | |
6788 && bufpos >= region_beg | |
6789 && bufpos < region_end) | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6790 { |
24995 | 6791 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
31178 | 6792 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
|
6793 } |
24995 | 6794 |
6795 /* 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
|
6796 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6797 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
|
6798 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6799 |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6800 |
2336 | 6801 |
24995 | 6802 /*********************************************************************** |
6803 Tests | |
6804 ***********************************************************************/ | |
6805 | |
6806 #if GLYPH_DEBUG | |
6807 | |
6808 /* Print the contents of the realized face FACE to stderr. */ | |
6809 | |
6810 static void | |
6811 dump_realized_face (face) | |
6812 struct face *face; | |
2336 | 6813 { |
24995 | 6814 fprintf (stderr, "ID: %d\n", face->id); |
6815 #ifdef HAVE_X_WINDOWS | |
6816 fprintf (stderr, "gc: %d\n", (int) face->gc); | |
6817 #endif | |
6818 fprintf (stderr, "foreground: 0x%lx (%s)\n", | |
6819 face->foreground, | |
6820 XSTRING (face->lface[LFACE_FOREGROUND_INDEX])->data); | |
6821 fprintf (stderr, "background: 0x%lx (%s)\n", | |
6822 face->background, | |
6823 XSTRING (face->lface[LFACE_BACKGROUND_INDEX])->data); | |
6824 fprintf (stderr, "font_name: %s (%s)\n", | |
6825 face->font_name, | |
6826 XSTRING (face->lface[LFACE_FAMILY_INDEX])->data); | |
6827 #ifdef HAVE_X_WINDOWS | |
6828 fprintf (stderr, "font = %p\n", face->font); | |
6829 #endif | |
6830 fprintf (stderr, "font_info_id = %d\n", face->font_info_id); | |
6831 fprintf (stderr, "fontset: %d\n", face->fontset); | |
6832 fprintf (stderr, "underline: %d (%s)\n", | |
6833 face->underline_p, | |
6834 XSTRING (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))->data); | |
6835 fprintf (stderr, "hash: %d\n", face->hash); | |
6836 fprintf (stderr, "charset: %d\n", face->charset); | |
6837 } | |
6838 | |
6839 | |
6840 DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, "") | |
6841 (n) | |
6842 Lisp_Object n; | |
6843 { | |
6844 if (NILP (n)) | |
2336 | 6845 { |
24995 | 6846 int i; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6847 |
24995 | 6848 fprintf (stderr, "font selection order: "); |
6849 for (i = 0; i < DIM (font_sort_order); ++i) | |
6850 fprintf (stderr, "%d ", font_sort_order[i]); | |
6851 fprintf (stderr, "\n"); | |
6852 | |
6853 fprintf (stderr, "alternative fonts: "); | |
6854 debug_print (Vface_alternative_font_family_alist); | |
6855 fprintf (stderr, "\n"); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6856 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6857 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i) |
24995 | 6858 Fdump_face (make_number (i)); |
2336 | 6859 } |
24995 | 6860 else |
6861 { | |
6862 struct face *face; | |
6863 CHECK_NUMBER (n, 0); | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6864 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n)); |
24995 | 6865 if (face == NULL) |
6866 error ("Not a valid face"); | |
6867 dump_realized_face (face); | |
6868 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6869 |
2336 | 6870 return Qnil; |
6871 } | |
6872 | |
6873 | |
24995 | 6874 DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources, |
6875 0, 0, 0, "") | |
6876 () | |
2336 | 6877 { |
24995 | 6878 fprintf (stderr, "number of colors = %d\n", ncolors_allocated); |
6879 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated); | |
6880 fprintf (stderr, "number of GCs = %d\n", ngcs); | |
2336 | 6881 return Qnil; |
6882 } | |
24995 | 6883 |
6884 #endif /* GLYPH_DEBUG != 0 */ | |
6885 | |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6886 |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6887 |
24995 | 6888 /*********************************************************************** |
6889 Initialization | |
6890 ***********************************************************************/ | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
6891 |
2336 | 6892 void |
2391 | 6893 syms_of_xfaces () |
2336 | 6894 { |
2391 | 6895 Qface = intern ("face"); |
6896 staticpro (&Qface); | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6897 Qbitmap_spec_p = intern ("bitmap-spec-p"); |
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6898 staticpro (&Qbitmap_spec_p); |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6899 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
|
6900 staticpro (&Qframe_update_face_colors); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6901 |
24995 | 6902 /* Lisp face attribute keywords. */ |
6903 QCfamily = intern (":family"); | |
6904 staticpro (&QCfamily); | |
6905 QCheight = intern (":height"); | |
6906 staticpro (&QCheight); | |
6907 QCweight = intern (":weight"); | |
6908 staticpro (&QCweight); | |
6909 QCslant = intern (":slant"); | |
6910 staticpro (&QCslant); | |
6911 QCunderline = intern (":underline"); | |
6912 staticpro (&QCunderline); | |
6913 QCinverse_video = intern (":inverse-video"); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6914 staticpro (&QCinverse_video); |
24995 | 6915 QCreverse_video = intern (":reverse-video"); |
6916 staticpro (&QCreverse_video); | |
6917 QCforeground = intern (":foreground"); | |
6918 staticpro (&QCforeground); | |
6919 QCbackground = intern (":background"); | |
6920 staticpro (&QCbackground); | |
6921 QCstipple = intern (":stipple");; | |
6922 staticpro (&QCstipple); | |
6923 QCwidth = intern (":width"); | |
6924 staticpro (&QCwidth); | |
6925 QCfont = intern (":font"); | |
6926 staticpro (&QCfont); | |
6927 QCbold = intern (":bold"); | |
6928 staticpro (&QCbold); | |
6929 QCitalic = intern (":italic"); | |
6930 staticpro (&QCitalic); | |
6931 QCoverline = intern (":overline"); | |
6932 staticpro (&QCoverline); | |
6933 QCstrike_through = intern (":strike-through"); | |
6934 staticpro (&QCstrike_through); | |
6935 QCbox = intern (":box"); | |
6936 staticpro (&QCbox); | |
31178 | 6937 QCinherit = intern (":inherit"); |
6938 staticpro (&QCinherit); | |
24995 | 6939 |
6940 /* Symbols used for Lisp face attribute values. */ | |
6941 QCcolor = intern (":color"); | |
6942 staticpro (&QCcolor); | |
6943 QCline_width = intern (":line-width"); | |
6944 staticpro (&QCline_width); | |
6945 QCstyle = intern (":style"); | |
6946 staticpro (&QCstyle); | |
6947 Qreleased_button = intern ("released-button"); | |
6948 staticpro (&Qreleased_button); | |
6949 Qpressed_button = intern ("pressed-button"); | |
6950 staticpro (&Qpressed_button); | |
6951 Qnormal = intern ("normal"); | |
6952 staticpro (&Qnormal); | |
6953 Qultra_light = intern ("ultra-light"); | |
6954 staticpro (&Qultra_light); | |
6955 Qextra_light = intern ("extra-light"); | |
6956 staticpro (&Qextra_light); | |
6957 Qlight = intern ("light"); | |
6958 staticpro (&Qlight); | |
6959 Qsemi_light = intern ("semi-light"); | |
6960 staticpro (&Qsemi_light); | |
6961 Qsemi_bold = intern ("semi-bold"); | |
6962 staticpro (&Qsemi_bold); | |
6963 Qbold = intern ("bold"); | |
6964 staticpro (&Qbold); | |
6965 Qextra_bold = intern ("extra-bold"); | |
6966 staticpro (&Qextra_bold); | |
6967 Qultra_bold = intern ("ultra-bold"); | |
6968 staticpro (&Qultra_bold); | |
6969 Qoblique = intern ("oblique"); | |
6970 staticpro (&Qoblique); | |
6971 Qitalic = intern ("italic"); | |
6972 staticpro (&Qitalic); | |
6973 Qreverse_oblique = intern ("reverse-oblique"); | |
6974 staticpro (&Qreverse_oblique); | |
6975 Qreverse_italic = intern ("reverse-italic"); | |
6976 staticpro (&Qreverse_italic); | |
6977 Qultra_condensed = intern ("ultra-condensed"); | |
6978 staticpro (&Qultra_condensed); | |
6979 Qextra_condensed = intern ("extra-condensed"); | |
6980 staticpro (&Qextra_condensed); | |
6981 Qcondensed = intern ("condensed"); | |
6982 staticpro (&Qcondensed); | |
6983 Qsemi_condensed = intern ("semi-condensed"); | |
6984 staticpro (&Qsemi_condensed); | |
6985 Qsemi_expanded = intern ("semi-expanded"); | |
6986 staticpro (&Qsemi_expanded); | |
6987 Qexpanded = intern ("expanded"); | |
6988 staticpro (&Qexpanded); | |
6989 Qextra_expanded = intern ("extra-expanded"); | |
6990 staticpro (&Qextra_expanded); | |
6991 Qultra_expanded = intern ("ultra-expanded"); | |
6992 staticpro (&Qultra_expanded); | |
6993 Qbackground_color = intern ("background-color"); | |
6994 staticpro (&Qbackground_color); | |
6995 Qforeground_color = intern ("foreground-color"); | |
6996 staticpro (&Qforeground_color); | |
6997 Qunspecified = intern ("unspecified"); | |
6998 staticpro (&Qunspecified); | |
6999 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
7000 Qface_alias = intern ("face-alias"); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
7001 staticpro (&Qface_alias); |
24995 | 7002 Qdefault = intern ("default"); |
7003 staticpro (&Qdefault); | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25389
diff
changeset
|
7004 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
|
7005 staticpro (&Qtool_bar); |
24995 | 7006 Qregion = intern ("region"); |
7007 staticpro (&Qregion); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7008 Qfringe = intern ("fringe"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7009 staticpro (&Qfringe); |
25546 | 7010 Qheader_line = intern ("header-line"); |
7011 staticpro (&Qheader_line); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7012 Qscroll_bar = intern ("scroll-bar"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7013 staticpro (&Qscroll_bar); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
7014 Qmenu = intern ("menu"); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
7015 staticpro (&Qmenu); |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7016 Qcursor = intern ("cursor"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7017 staticpro (&Qcursor); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7018 Qborder = intern ("border"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7019 staticpro (&Qborder); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7020 Qmouse = intern ("mouse"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7021 staticpro (&Qmouse); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
7022 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
|
7023 staticpro (&Qtty_color_desc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
7024 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
|
7025 staticpro (&Qtty_color_by_index); |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7026 Qtty_color_alist = intern ("tty-color-alist"); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7027 staticpro (&Qtty_color_alist); |
24995 | 7028 |
31449
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
7029 Vparam_value_alist = Fcons (Fcons (Qnil, Qnil), Qnil); |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
7030 staticpro (&Vparam_value_alist); |
30304
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
7031 Vface_alternative_font_family_alist = Qnil; |
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
7032 staticpro (&Vface_alternative_font_family_alist); |
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
7033 |
24995 | 7034 defsubr (&Sinternal_make_lisp_face); |
7035 defsubr (&Sinternal_lisp_face_p); | |
7036 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
|
7037 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 7038 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
|
7039 #endif |
27120
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
7040 defsubr (&Scolor_gray_p); |
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
7041 defsubr (&Scolor_supported_p); |
24995 | 7042 defsubr (&Sinternal_get_lisp_face_attribute); |
7043 defsubr (&Sinternal_lisp_face_attribute_values); | |
7044 defsubr (&Sinternal_lisp_face_equal_p); | |
7045 defsubr (&Sinternal_lisp_face_empty_p); | |
7046 defsubr (&Sinternal_copy_lisp_face); | |
7047 defsubr (&Sinternal_merge_in_global_face); | |
7048 defsubr (&Sface_font); | |
7049 defsubr (&Sframe_face_alist); | |
7050 defsubr (&Sinternal_set_font_selection_order); | |
7051 defsubr (&Sinternal_set_alternative_font_family_alist); | |
7052 #if GLYPH_DEBUG | |
7053 defsubr (&Sdump_face); | |
7054 defsubr (&Sshow_face_resources); | |
7055 #endif /* GLYPH_DEBUG */ | |
7056 defsubr (&Sclear_face_cache); | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
7057 defsubr (&Stty_suppress_bold_inverse_default_colors); |
24995 | 7058 |
29711
913fab478495
(syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
Gerd Moellmann <gerd@gnu.org>
parents:
29599
diff
changeset
|
7059 #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
|
7060 defsubr (&Sdump_colors); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
7061 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
7062 |
25270 | 7063 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit, |
7064 "*Limit for font matching.\n\ | |
7065 If an integer > 0, font matching functions won't load more than\n\ | |
7066 that number of fonts when searching for a matching font."); | |
7067 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT); | |
7068 | |
24995 | 7069 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults, |
7070 "List of global face definitions (for internal use only.)"); | |
7071 Vface_new_frame_defaults = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
7072 |
24995 | 7073 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple, |
7074 "*Default stipple pattern used on monochrome displays.\n\ | |
7075 This stipple pattern is used on monochrome displays\n\ | |
7076 instead of shades of gray for a face background color.\n\ | |
7077 See `set-face-stipple' for possible values for this variable."); | |
7078 Vface_default_stipple = build_string ("gray3"); | |
7079 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7080 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
|
7081 "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
|
7082 Vtty_defined_color_alist = Qnil; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7083 |
24995 | 7084 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed, |
7085 "Allowed scalable fonts.\n\ | |
7086 A value of nil means don't allow any scalable fonts.\n\ | |
7087 A value of t means allow any scalable font.\n\ | |
7088 Otherwise, value must be a list of regular expressions. A font may be\n\ | |
7089 scaled if its name matches a regular expression in the list."); | |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
7090 #if defined (WINDOWSNT) || defined (macintosh) |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7091 /* 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
|
7092 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
|
7093 Vscalable_fonts_allowed = Qt; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7094 #else |
24995 | 7095 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
|
7096 #endif |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
7097 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7098 #ifdef HAVE_WINDOW_SYSTEM |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
7099 defsubr (&Sbitmap_spec_p); |
24995 | 7100 defsubr (&Sx_list_fonts); |
7101 defsubr (&Sinternal_face_x_get_resource); | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
7102 defsubr (&Sx_family_fonts); |
24995 | 7103 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
|
7104 #endif /* HAVE_WINDOW_SYSTEM */ |
2336 | 7105 } |