Mercurial > emacs
annotate src/xfaces.c @ 34142:e10d50a60aaf
*** empty log message ***
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sun, 03 Dec 2000 02:29:36 +0000 |
parents | eb4affa4abc6 |
children | bb9ec0151423 |
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 | |
33372
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
378 /* Alist of alternative font registries. Each element is of the form |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
379 (REGISTRY REGISTRY1 REGISTRY2...). If fonts of REGISTRY can't be |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
380 loaded, try REGISTRY1, then REGISTRY2, ... */ |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
381 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
382 Lisp_Object Vface_alternative_font_registry_alist; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
383 |
24995 | 384 /* Allowed scalable fonts. A value of nil means don't allow any |
385 scalable fonts. A value of t means allow the use of any scalable | |
386 font. Otherwise, value must be a list of regular expressions. A | |
387 font may be scaled if its name matches a regular expression in the | |
388 list. */ | |
389 | |
390 Lisp_Object Vscalable_fonts_allowed; | |
391 | |
25270 | 392 /* Maximum number of fonts to consider in font_list. If not an |
393 integer > 0, DEFAULT_FONT_LIST_LIMIT is used instead. */ | |
394 | |
395 Lisp_Object Vfont_list_limit; | |
396 #define DEFAULT_FONT_LIST_LIMIT 100 | |
397 | |
24995 | 398 /* The symbols `foreground-color' and `background-color' which can be |
399 used as part of a `face' property. This is for compatibility with | |
400 Emacs 20.2. */ | |
401 | |
402 Lisp_Object Qforeground_color, Qbackground_color; | |
403 | |
404 /* The symbols `face' and `mouse-face' used as text properties. */ | |
2342 | 405 |
23730
c71c3ac4b80a
(Qmouse_face): Replace definition with extern decl.
Richard M. Stallman <rms@gnu.org>
parents:
21766
diff
changeset
|
406 Lisp_Object Qface; |
24995 | 407 extern Lisp_Object Qmouse_face; |
408 | |
409 /* Error symbol for wrong_type_argument in load_pixmap. */ | |
410 | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
411 Lisp_Object Qbitmap_spec_p; |
2391 | 412 |
24995 | 413 /* Alist of global face definitions. Each element is of the form |
414 (FACE . LFACE) where FACE is a symbol naming a face and LFACE | |
415 is a Lisp vector of face attributes. These faces are used | |
416 to initialize faces for new frames. */ | |
417 | |
418 Lisp_Object Vface_new_frame_defaults; | |
419 | |
420 /* The next ID to assign to Lisp faces. */ | |
421 | |
422 static int next_lface_id; | |
423 | |
424 /* A vector mapping Lisp face Id's to face names. */ | |
425 | |
426 static Lisp_Object *lface_id_to_name; | |
427 static int lface_id_to_name_size; | |
428 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
429 /* 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
|
430 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
431 Lisp_Object Qtty_color_desc, Qtty_color_by_index; |
24995 | 432 |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
433 /* 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
|
434 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
435 Lisp_Object Qtty_color_alist; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
436 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
437 /* 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
|
438 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
439 Lisp_Object Vtty_defined_color_alist; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
440 |
24995 | 441 /* Counter for calls to clear_face_cache. If this counter reaches |
442 CLEAR_FONT_TABLE_COUNT, and a frame has more than | |
443 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */ | |
444 | |
445 static int clear_font_table_count; | |
446 #define CLEAR_FONT_TABLE_COUNT 100 | |
447 #define CLEAR_FONT_TABLE_NFONTS 10 | |
448 | |
449 /* Non-zero means face attributes have been changed since the last | |
450 redisplay. Used in redisplay_internal. */ | |
451 | |
452 int face_change_count; | |
453 | |
33082
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
454 /* Incremented for every change in the `menu' face. */ |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
455 |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
456 int menu_face_change_count; |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
457 |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
458 /* 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
|
459 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
|
460 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
|
461 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
|
462 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
463 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
|
464 |
31449
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
465 /* 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
|
466 Finternal_set_lisp_face_attribute. */ |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
467 |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
468 static Lisp_Object Vparam_value_alist; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
469 |
24995 | 470 /* The total number of colors currently allocated. */ |
471 | |
472 #if GLYPH_DEBUG | |
473 static int ncolors_allocated; | |
474 static int npixmaps_allocated; | |
475 static int ngcs; | |
476 #endif | |
477 | |
478 | |
2336 | 479 |
24995 | 480 /* Function prototypes. */ |
481 | |
482 struct font_name; | |
483 struct table_entry; | |
484 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
485 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
|
486 enum lface_attribute_index, int *)); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
487 static Lisp_Object resolve_face_name P_ ((Lisp_Object)); |
24995 | 488 static int may_use_scalable_font_p P_ ((struct font_name *, char *)); |
489 static void set_font_frame_param P_ ((Lisp_Object, Lisp_Object)); | |
490 static int better_font_p P_ ((int *, struct font_name *, struct font_name *, | |
491 int)); | |
492 static int first_font_matching P_ ((struct frame *f, char *, | |
493 struct font_name *)); | |
494 static int x_face_list_fonts P_ ((struct frame *, char *, | |
495 struct font_name *, int, int, int)); | |
496 static int font_scalable_p P_ ((struct font_name *)); | |
497 static int get_lface_attributes P_ ((struct frame *, Lisp_Object, Lisp_Object *, int)); | |
498 static int load_pixmap P_ ((struct frame *, Lisp_Object, unsigned *, unsigned *)); | |
499 static unsigned char *xstrlwr P_ ((unsigned char *)); | |
500 static void signal_error P_ ((char *, Lisp_Object)); | |
501 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
|
502 static void load_face_font P_ ((struct frame *, struct face *, int)); |
24995 | 503 static void load_face_colors P_ ((struct frame *, struct face *, Lisp_Object *)); |
504 static void free_face_colors P_ ((struct frame *, struct face *)); | |
505 static int face_color_gray_p P_ ((struct frame *, char *)); | |
506 static char *build_font_name P_ ((struct font_name *)); | |
507 static void free_font_names P_ ((struct font_name *, int)); | |
508 static int sorted_font_list P_ ((struct frame *, char *, | |
509 int (*cmpfn) P_ ((const void *, const void *)), | |
510 struct font_name **)); | |
33372
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
511 static int font_list_1 P_ ((struct frame *, Lisp_Object, Lisp_Object, |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
512 Lisp_Object, struct font_name **)); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
513 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
|
514 Lisp_Object, struct font_name **)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
515 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
|
516 Lisp_Object, Lisp_Object, struct font_name **)); |
24995 | 517 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
|
518 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
|
519 struct face *, int)); |
24995 | 520 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
|
521 Lisp_Object *, int, struct face *)); |
24995 | 522 static struct face *realize_tty_face P_ ((struct face_cache *, |
523 Lisp_Object *, int)); | |
524 static int realize_basic_faces P_ ((struct frame *)); | |
525 static int realize_default_face P_ ((struct frame *)); | |
526 static void realize_named_face P_ ((struct frame *, Lisp_Object, int)); | |
527 static int lface_fully_specified_p P_ ((Lisp_Object *)); | |
528 static int lface_equal_p P_ ((Lisp_Object *, Lisp_Object *)); | |
529 static unsigned hash_string_case_insensitive P_ ((Lisp_Object)); | |
530 static unsigned lface_hash P_ ((Lisp_Object *)); | |
531 static int lface_same_font_attributes_p P_ ((Lisp_Object *, Lisp_Object *)); | |
532 static struct face_cache *make_face_cache P_ ((struct frame *)); | |
533 static void free_realized_face P_ ((struct frame *, struct face *)); | |
534 static void clear_face_gcs P_ ((struct face_cache *)); | |
535 static void free_face_cache P_ ((struct face_cache *)); | |
536 static int face_numeric_weight P_ ((Lisp_Object)); | |
537 static int face_numeric_slant P_ ((Lisp_Object)); | |
538 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
|
539 static int face_fontset P_ ((Lisp_Object *)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
540 static char *choose_face_font P_ ((struct frame *, Lisp_Object *, int, int)); |
31178 | 541 static void merge_face_vectors P_ ((struct frame *, Lisp_Object *, Lisp_Object*, Lisp_Object)); |
542 static void merge_face_inheritance P_ ((struct frame *f, Lisp_Object, | |
543 Lisp_Object *, Lisp_Object)); | |
24995 | 544 static void merge_face_vector_with_property P_ ((struct frame *, Lisp_Object *, |
545 Lisp_Object)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
546 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
|
547 Lisp_Object, int, int)); |
24995 | 548 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
|
549 static struct face *make_realized_face P_ ((Lisp_Object *)); |
24995 | 550 static void free_realized_faces P_ ((struct face_cache *)); |
551 static char *best_matching_font P_ ((struct frame *, Lisp_Object *, | |
552 struct font_name *, int)); | |
553 static void cache_face P_ ((struct face_cache *, struct face *, unsigned)); | |
554 static void uncache_face P_ ((struct face_cache *, struct face *)); | |
555 static int xlfd_numeric_slant P_ ((struct font_name *)); | |
556 static int xlfd_numeric_weight P_ ((struct font_name *)); | |
557 static int xlfd_numeric_swidth P_ ((struct font_name *)); | |
558 static Lisp_Object xlfd_symbolic_slant P_ ((struct font_name *)); | |
559 static Lisp_Object xlfd_symbolic_weight P_ ((struct font_name *)); | |
560 static Lisp_Object xlfd_symbolic_swidth P_ ((struct font_name *)); | |
561 static int xlfd_fixed_p P_ ((struct font_name *)); | |
562 static int xlfd_numeric_value P_ ((struct table_entry *, int, struct font_name *, | |
563 int, int)); | |
564 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
|
565 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
|
566 Lisp_Object)); |
24995 | 567 static struct table_entry *xlfd_lookup_field_contents P_ ((struct table_entry *, int, |
568 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
|
569 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
570 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 571 |
572 static int split_font_name P_ ((struct frame *, struct font_name *, int)); | |
573 static int xlfd_point_size P_ ((struct frame *, struct font_name *)); | |
574 static void sort_fonts P_ ((struct frame *, struct font_name *, int, | |
575 int (*cmpfn) P_ ((const void *, const void *)))); | |
576 static GC x_create_gc P_ ((struct frame *, unsigned long, XGCValues *)); | |
577 static void x_free_gc P_ ((struct frame *, GC)); | |
578 static void clear_font_table P_ ((struct frame *)); | |
579 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
580 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
581 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
|
582 #endif /* WINDOWSNT */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
583 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
584 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 585 |
586 | |
587 /*********************************************************************** | |
588 Utilities | |
589 ***********************************************************************/ | |
590 | |
591 #ifdef HAVE_X_WINDOWS | |
592 | |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
593 #ifdef DEBUG_X_COLORS |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
594 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
595 /* 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
|
596 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
|
597 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
|
598 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
|
599 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
|
600 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
|
601 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
|
602 single display/screen. --gerd. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
603 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
604 /* Reference counts for pixel colors. */ |
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 int color_count[256]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
607 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
608 /* Register color PIXEL as allocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
609 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
610 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
611 register_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
612 unsigned long pixel; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
613 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
614 xassert (pixel < 256); |
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 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
617 |
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 /* Register color PIXEL as deallocated. */ |
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 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
622 unregister_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
623 unsigned long pixel; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
624 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
625 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
626 if (color_count[pixel] > 0) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
627 --color_count[pixel]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
628 else |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
629 abort (); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
630 } |
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 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
633 /* Register N colors from PIXELS as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
634 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
635 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
636 unregister_colors (pixels, n) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
637 unsigned long *pixels; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
638 int n; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
639 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
640 int i; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
641 for (i = 0; i < n; ++i) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
642 unregister_color (pixels[i]); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
643 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
644 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
645 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
646 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
|
647 "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
|
648 () |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
649 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
650 int i, n; |
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 fputc ('\n', stderr); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
653 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
654 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
|
655 if (color_count[i]) |
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 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
|
658 ++n; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
659 if (n % 5 == 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
660 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
661 else |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
662 fputc ('\t', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
663 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
664 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
665 if (n % 5 != 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
666 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
667 return Qnil; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
668 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
669 |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
670 #endif /* DEBUG_X_COLORS */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
671 |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
672 |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
673 /* 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
|
674 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
|
675 is called. */ |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
676 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
677 void |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
678 x_free_colors (f, pixels, npixels) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
679 struct frame *f; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
680 unsigned long *pixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
681 int npixels; |
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 int class = FRAME_X_DISPLAY_INFO (f)->visual->class; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
684 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
685 /* 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
|
686 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
|
687 if (class != StaticColor && class != StaticGray && class != TrueColor) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
688 { |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
689 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
|
690 pixels, npixels, 0); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
691 #ifdef DEBUG_X_COLORS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
692 unregister_colors (pixels, npixels); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
693 #endif |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
694 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
695 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
696 |
29599
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 /* 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
|
699 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
|
700 is called. */ |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
701 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
702 void |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
703 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
|
704 Display *dpy; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
705 Screen *screen; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
706 Colormap cmap; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
707 unsigned long *pixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
708 int npixels; |
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 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
|
711 int class = dpyinfo->visual->class; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
712 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
713 /* 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
|
714 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
|
715 if (class != StaticColor && class != StaticGray && class != TrueColor) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
716 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
717 XFreeColors (dpy, cmap, pixels, npixels, 0); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
718 #ifdef DEBUG_X_COLORS |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
719 unregister_colors (pixels, npixels); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
720 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
721 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
722 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
723 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
724 |
24995 | 725 /* Create and return a GC for use on frame F. GC values and mask |
726 are given by XGCV and MASK. */ | |
727 | |
728 static INLINE GC | |
729 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
|
730 struct frame *f; |
24995 | 731 unsigned long mask; |
732 XGCValues *xgcv; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
733 { |
2336 | 734 GC gc; |
24995 | 735 BLOCK_INPUT; |
736 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv); | |
737 UNBLOCK_INPUT; | |
738 IF_DEBUG (++ngcs); | |
739 return gc; | |
740 } | |
741 | |
742 | |
743 /* Free GC which was used on frame F. */ | |
744 | |
745 static INLINE void | |
746 x_free_gc (f, gc) | |
747 struct frame *f; | |
748 GC gc; | |
749 { | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
750 BLOCK_INPUT; |
24995 | 751 xassert (--ngcs >= 0); |
752 XFreeGC (FRAME_X_DISPLAY (f), gc); | |
753 UNBLOCK_INPUT; | |
754 } | |
755 | |
756 #endif /* HAVE_X_WINDOWS */ | |
757 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
758 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
759 /* W32 emulation of GCs */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
760 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
761 static INLINE GC |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
762 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
|
763 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
764 unsigned long mask; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
765 XGCValues *xgcv; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
766 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
767 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
768 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
769 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
|
770 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
771 IF_DEBUG (++ngcs); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
772 return gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
773 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
774 |
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 /* 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
|
777 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
778 static INLINE void |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
779 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
|
780 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
781 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
782 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
783 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
784 xassert (--ngcs >= 0); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
785 xfree (gc); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
786 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
787 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
788 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
789 #endif /* WINDOWSNT */ |
24995 | 790 |
791 /* Like stricmp. Used to compare parts of font names which are in | |
792 ISO8859-1. */ | |
793 | |
794 int | |
795 xstricmp (s1, s2) | |
796 unsigned char *s1, *s2; | |
797 { | |
798 while (*s1 && *s2) | |
799 { | |
800 unsigned char c1 = tolower (*s1); | |
801 unsigned char c2 = tolower (*s2); | |
802 if (c1 != c2) | |
803 return c1 < c2 ? -1 : 1; | |
804 ++s1, ++s2; | |
805 } | |
806 | |
807 if (*s1 == 0) | |
808 return *s2 == 0 ? 0 : -1; | |
809 return 1; | |
810 } | |
811 | |
812 | |
813 /* Like strlwr, which might not always be available. */ | |
814 | |
815 static unsigned char * | |
816 xstrlwr (s) | |
817 unsigned char *s; | |
818 { | |
819 unsigned char *p = s; | |
820 | |
821 for (p = s; *p; ++p) | |
822 *p = tolower (*p); | |
823 | |
824 return s; | |
825 } | |
826 | |
827 | |
828 /* Signal `error' with message S, and additional argument ARG. */ | |
829 | |
830 static void | |
831 signal_error (s, arg) | |
832 char *s; | |
833 Lisp_Object arg; | |
834 { | |
835 Fsignal (Qerror, Fcons (build_string (s), Fcons (arg, Qnil))); | |
836 } | |
837 | |
838 | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
839 /* 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
|
840 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
|
841 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
|
842 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
|
843 Lisp function definitions. */ |
24995 | 844 |
845 static INLINE struct frame * | |
846 frame_or_selected_frame (frame, nparam) | |
847 Lisp_Object frame; | |
848 int nparam; | |
849 { | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
850 if (NILP (frame)) |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
851 frame = selected_frame; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
852 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
853 CHECK_LIVE_FRAME (frame, nparam); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
854 return XFRAME (frame); |
24995 | 855 } |
856 | |
857 | |
858 /*********************************************************************** | |
859 Frames and faces | |
860 ***********************************************************************/ | |
861 | |
862 /* 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
|
863 |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
864 void |
24995 | 865 init_frame_faces (f) |
866 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
|
867 { |
24995 | 868 /* Make a face cache, if F doesn't have one. */ |
869 if (FRAME_FACE_CACHE (f) == NULL) | |
870 FRAME_FACE_CACHE (f) = make_face_cache (f); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
871 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
872 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 873 /* 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
|
874 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
|
875 { |
24995 | 876 if (FRAME_X_IMAGE_CACHE (f) == NULL) |
877 FRAME_X_IMAGE_CACHE (f) = make_image_cache (); | |
878 ++FRAME_X_IMAGE_CACHE (f)->refcount; | |
879 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
880 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 881 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
882 /* Realize basic faces. Must have enough information in frame |
24995 | 883 parameters to realize basic faces at this point. */ |
884 #ifdef HAVE_X_WINDOWS | |
885 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f)) | |
886 #endif | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
887 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
888 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
|
889 #endif |
24995 | 890 if (!realize_basic_faces (f)) |
891 abort (); | |
892 } | |
893 | |
894 | |
895 /* Free face cache of frame F. Called from Fdelete_frame. */ | |
896 | |
897 void | |
898 free_frame_faces (f) | |
899 struct frame *f; | |
900 { | |
901 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
|
902 |
24995 | 903 if (face_cache) |
904 { | |
905 free_face_cache (face_cache); | |
906 FRAME_FACE_CACHE (f) = NULL; | |
907 } | |
908 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
909 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
910 if (FRAME_WINDOW_P (f)) |
24995 | 911 { |
912 struct image_cache *image_cache = FRAME_X_IMAGE_CACHE (f); | |
913 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
|
914 { |
24995 | 915 --image_cache->refcount; |
916 if (image_cache->refcount == 0) | |
917 free_image_cache (f); | |
918 } | |
919 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
920 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 921 } |
922 | |
923 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
924 /* 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
|
925 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
|
926 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
|
927 of named faces. */ |
24995 | 928 |
929 void | |
930 recompute_basic_faces (f) | |
931 struct frame *f; | |
932 { | |
933 if (FRAME_FACE_CACHE (f)) | |
934 { | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
935 clear_face_cache (0); |
26601
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
936 if (!realize_basic_faces (f)) |
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
937 abort (); |
24995 | 938 } |
939 } | |
940 | |
941 | |
942 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means | |
943 try to free unused fonts, too. */ | |
944 | |
945 void | |
946 clear_face_cache (clear_fonts_p) | |
947 int clear_fonts_p; | |
948 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
949 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 950 Lisp_Object tail, frame; |
951 struct frame *f; | |
952 | |
953 if (clear_fonts_p | |
954 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT) | |
955 { | |
956 /* From time to time see if we can unload some fonts. This also | |
957 frees all realized faces on all frames. Fonts needed by | |
958 faces will be loaded again when faces are realized again. */ | |
959 clear_font_table_count = 0; | |
960 | |
961 FOR_EACH_FRAME (tail, frame) | |
962 { | |
963 f = XFRAME (frame); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
964 if (FRAME_WINDOW_P (f) |
24995 | 965 && 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
|
966 { |
24995 | 967 free_all_realized_faces (frame); |
968 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
|
969 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
970 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
971 } |
24995 | 972 else |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
973 { |
24995 | 974 /* Clear GCs of realized faces. */ |
975 FOR_EACH_FRAME (tail, frame) | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
976 { |
24995 | 977 f = XFRAME (frame); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
978 if (FRAME_WINDOW_P (f)) |
24995 | 979 { |
980 clear_face_gcs (FRAME_FACE_CACHE (f)); | |
981 clear_image_cache (f, 0); | |
982 } | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
983 } |
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
984 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
985 #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
|
986 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
987 |
24995 | 988 |
989 DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0, | |
990 "Clear face caches on all frames.\n\ | |
991 Optional THOROUGHLY non-nil means try to free unused fonts, too.") | |
992 (thorougly) | |
993 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
|
994 { |
24995 | 995 clear_face_cache (!NILP (thorougly)); |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
996 ++face_change_count; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
997 ++windows_or_buffers_changed; |
24995 | 998 return Qnil; |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
999 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
1000 |
24995 | 1001 |
1002 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1003 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1004 |
1005 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1006 /* 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
|
1007 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
|
1008 from time to time. */ |
24995 | 1009 |
1010 static void | |
1011 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
|
1012 struct frame *f; |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
1013 { |
24995 | 1014 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); |
1015 int i; | |
1016 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1017 xassert (FRAME_WINDOW_P (f)); |
24995 | 1018 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1019 /* Free those fonts that are not used by the frame F as the default. */ |
24995 | 1020 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
|
1021 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1022 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
|
1023 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1024 if (!font_info->name |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1025 || font_info->font == FRAME_FONT (f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1026 continue; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1027 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1028 /* Free names. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1029 if (font_info->full_name != font_info->name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1030 xfree (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1031 xfree (font_info->name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1032 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1033 /* Free the font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1034 BLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1035 #ifdef HAVE_X_WINDOWS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1036 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
|
1037 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1038 #ifdef WINDOWSNT |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1039 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
|
1040 #endif |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1041 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1042 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1043 /* Mark font table slot free. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1044 font_info->font = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1045 font_info->name = font_info->full_name = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1046 } |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1047 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1048 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1049 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1050 |
1051 | |
1052 | |
1053 /*********************************************************************** | |
1054 X Pixmaps | |
1055 ***********************************************************************/ | |
1056 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1057 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1058 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1059 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
|
1060 "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
|
1061 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
|
1062 (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
|
1063 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
|
1064 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
|
1065 (WIDTH + 7)/8 bytes.") |
14090
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1066 (object) |
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1067 Lisp_Object object; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1068 { |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1069 int pixmap_p = 0; |
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 (STRINGP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1072 /* 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
|
1073 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1074 else if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1075 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1076 /* 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
|
1077 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
|
1078 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
|
1079 Lisp_Object width, height, data; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1080 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1081 height = width = data = Qnil; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1082 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1083 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1084 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1085 width = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1086 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1087 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1088 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1089 height = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1090 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1091 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1092 data = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1093 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1094 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1095 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1096 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1097 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1098 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
|
1099 / 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
|
1100 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
|
1101 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1102 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1103 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1104 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1105 return pixmap_p ? Qt : Qnil; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1106 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1107 |
24995 | 1108 |
1109 /* Load a bitmap according to NAME (which is either a file name or a | |
1110 pixmap spec) for use on frame F. Value is the bitmap_id (see | |
1111 xfns.c). If NAME is nil, return with a bitmap id of zero. If | |
1112 bitmap cannot be loaded, display a message saying so, and return | |
1113 zero. Store the bitmap width in *W_PTR and its height in *H_PTR, | |
1114 if these pointers are not null. */ | |
1115 | |
1116 static int | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1117 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
|
1118 FRAME_PTR f; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1119 Lisp_Object name; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1120 unsigned int *w_ptr, *h_ptr; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1121 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1122 int bitmap_id; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1123 Lisp_Object tem; |
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 if (NILP (name)) |
24995 | 1126 return 0; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1127 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1128 tem = Fbitmap_spec_p (name); |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1129 if (NILP (tem)) |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1130 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
|
1131 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1132 BLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1133 if (CONSP (name)) |
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 /* Decode a bitmap spec into a bitmap. */ |
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 int h, w; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1138 Lisp_Object bits; |
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 w = XINT (Fcar (name)); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1141 h = XINT (Fcar (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1142 bits = Fcar (Fcdr (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1143 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1144 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
|
1145 w, h); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1146 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1147 else |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1148 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1149 /* 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
|
1150 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
|
1151 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1152 UNBLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1153 |
9902
32ed712a45a3
(load_pixmap): Handle bitmap_id < 0. F is a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9671
diff
changeset
|
1154 if (bitmap_id < 0) |
24995 | 1155 { |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1156 add_to_log ("Invalid or undefined bitmap %s", name, Qnil); |
24995 | 1157 bitmap_id = 0; |
1158 | |
1159 if (w_ptr) | |
1160 *w_ptr = 0; | |
1161 if (h_ptr) | |
1162 *h_ptr = 0; | |
1163 } | |
1164 else | |
1165 { | |
1166 #if GLYPH_DEBUG | |
1167 ++npixmaps_allocated; | |
1168 #endif | |
1169 if (w_ptr) | |
1170 *w_ptr = x_bitmap_width (f, bitmap_id); | |
1171 | |
1172 if (h_ptr) | |
1173 *h_ptr = x_bitmap_height (f, bitmap_id); | |
1174 } | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1175 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1176 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
|
1177 } |
9572 | 1178 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1179 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1180 |
9572 | 1181 |
2336 | 1182 |
24995 | 1183 /*********************************************************************** |
1184 Minimum font bounds | |
1185 ***********************************************************************/ | |
1186 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1187 #ifdef HAVE_WINDOW_SYSTEM |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1188 |
25062
050561b336aa
(load_face_colors): Load background color if setting
Gerd Moellmann <gerd@gnu.org>
parents:
24995
diff
changeset
|
1189 /* 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
|
1190 changes. */ |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1191 |
6879
471aebc1b151
(frame_update_line_height): Don't call x_set_window_size.
Richard M. Stallman <rms@gnu.org>
parents:
6784
diff
changeset
|
1192 int |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1193 frame_update_line_height (f) |
24995 | 1194 struct frame *f; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1195 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1196 int line_height, changed_p; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1197 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1198 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
|
1199 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
|
1200 FRAME_LINE_HEIGHT (f) = line_height; |
24995 | 1201 return changed_p; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1202 } |
24995 | 1203 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1204 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1205 |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
1206 |
24995 | 1207 /*********************************************************************** |
1208 Fonts | |
1209 ***********************************************************************/ | |
1210 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1211 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1212 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1213 /* 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
|
1214 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
|
1215 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
|
1216 |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1217 static void |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1218 load_face_font (f, face, c) |
24995 | 1219 struct frame *f; |
1220 struct face *face; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1221 int c; |
24995 | 1222 { |
1223 struct font_info *font_info = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1224 char *font_name; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1225 |
24995 | 1226 face->font_info_id = -1; |
1227 face->font = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1228 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1229 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
|
1230 if (!font_name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1231 return; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1232 |
24995 | 1233 BLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1234 font_info = FS_LOAD_FACE_FONT (f, c, font_name, face); |
24995 | 1235 UNBLOCK_INPUT; |
1236 | |
1237 if (font_info) | |
1238 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1239 face->font_info_id = font_info->font_idx; |
24995 | 1240 face->font = font_info->font; |
1241 face->font_name = font_info->full_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1242 if (face->gc) |
24995 | 1243 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1244 x_free_gc (f, face->gc); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1245 face->gc = 0; |
24995 | 1246 } |
1247 } | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1248 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1249 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
|
1250 build_string (font_name), Qnil); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1251 xfree (font_name); |
24995 | 1252 } |
1253 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1254 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1255 |
1256 | |
1257 | |
1258 /*********************************************************************** | |
1259 X Colors | |
1260 ***********************************************************************/ | |
1261 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1262 /* 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
|
1263 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1264 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1265 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
|
1266 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1267 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1268 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1269 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1270 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1271 Lisp_Object color_desc; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
1272 unsigned long color_idx = FACE_TTY_DEFAULT_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
1273 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
|
1274 int status = 1; |
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 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
|
1277 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1278 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1279 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1280 XSETFRAME (frame, f); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1281 status = 0; |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1282 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
|
1283 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
|
1284 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1285 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
|
1286 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
|
1287 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1288 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
|
1289 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
|
1290 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
|
1291 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1292 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1293 } |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1294 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
|
1295 /* 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
|
1296 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
|
1297 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
|
1298 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
|
1299 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1300 } |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1301 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
|
1302 { |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1303 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
|
1304 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
|
1305 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
|
1306 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
|
1307 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1308 |
27743
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1309 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
|
1310 status = 1; |
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1311 |
27695
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1312 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
|
1313 color_def->red = red; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1314 color_def->green = green; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1315 color_def->blue = blue; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1316 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1317 return status; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1318 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1319 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1320 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1321 /* 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
|
1322 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
|
1323 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
|
1324 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1325 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
|
1326 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1327 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1328 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
|
1329 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1330 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1331 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1332 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1333 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1334 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
|
1335 return tty_defined_color (f, color_name, color_def, alloc); |
24995 | 1336 #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
|
1337 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
|
1338 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
|
1339 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1340 #ifdef WINDOWSNT |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1341 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
|
1342 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
|
1343 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1344 #ifdef macintosh |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1345 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
|
1346 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
|
1347 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1348 else |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1349 abort (); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1350 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1351 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1352 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1353 /* 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
|
1354 Lisp string. */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1355 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1356 Lisp_Object |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1357 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
|
1358 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1359 int idx; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1360 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1361 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
|
1362 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1363 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1364 Lisp_Object coldesc; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1365 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1366 XSETFRAME (frame, f); |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1367 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
|
1368 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1369 if (!NILP (coldesc)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1370 return XCAR (coldesc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1371 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1372 #ifdef MSDOS |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1373 /* 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
|
1374 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
|
1375 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
|
1376 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
|
1377 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1378 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1379 if (idx == FACE_TTY_DEFAULT_FG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1380 return build_string (unspecified_fg); |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1381 if (idx == FACE_TTY_DEFAULT_BG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1382 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
|
1383 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1384 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1385 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
|
1386 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1387 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1388 return Qunspecified; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1389 } |
24995 | 1390 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1391 |
24995 | 1392 /* Return non-zero if COLOR_NAME is a shade of gray (or white or |
1393 black) on frame F. The algorithm is taken from 20.2 faces.el. */ | |
1394 | |
1395 static int | |
1396 face_color_gray_p (f, color_name) | |
1397 struct frame *f; | |
1398 char *color_name; | |
1399 { | |
1400 XColor color; | |
1401 int gray_p; | |
1402 | |
1403 if (defined_color (f, color_name, &color, 0)) | |
1404 gray_p = ((abs (color.red - color.green) | |
1405 < max (color.red, color.green) / 20) | |
1406 && (abs (color.green - color.blue) | |
1407 < max (color.green, color.blue) / 20) | |
1408 && (abs (color.blue - color.red) | |
1409 < max (color.blue, color.red) / 20)); | |
1410 else | |
1411 gray_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1412 |
24995 | 1413 return gray_p; |
1414 } | |
1415 | |
1416 | |
1417 /* Return non-zero if color COLOR_NAME can be displayed on frame F. | |
1418 BACKGROUND_P non-zero means the color will be used as background | |
1419 color. */ | |
1420 | |
1421 static int | |
1422 face_color_supported_p (f, color_name, background_p) | |
1423 struct frame *f; | |
1424 char *color_name; | |
1425 int background_p; | |
1426 { | |
1427 Lisp_Object frame; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1428 XColor not_used; |
24995 | 1429 |
1430 XSETFRAME (frame, f); | |
26972
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1431 return (FRAME_WINDOW_P (f) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1432 ? (!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
|
1433 || xstricmp (color_name, "black") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1434 || xstricmp (color_name, "white") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1435 || (background_p |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1436 && 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
|
1437 || (!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
|
1438 && 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
|
1439 : 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
|
1440 } |
24995 | 1441 |
1442 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1443 DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0, |
24995 | 1444 "Return non-nil if COLOR is a shade of gray (or white or black).\n\ |
1445 FRAME specifies the frame and thus the display for interpreting COLOR.\n\ | |
1446 If FRAME is nil or omitted, use the selected frame.") | |
1447 (color, frame) | |
1448 Lisp_Object color, frame; | |
1449 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1450 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1451 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1452 CHECK_FRAME (frame, 0); |
24995 | 1453 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
|
1454 f = XFRAME (frame); |
24995 | 1455 return face_color_gray_p (f, XSTRING (color)->data) ? Qt : Qnil; |
1456 } | |
1457 | |
1458 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1459 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
|
1460 Scolor_supported_p, 2, 3, 0, |
24995 | 1461 "Return non-nil if COLOR can be displayed on FRAME.\n\ |
1462 BACKGROUND-P non-nil means COLOR is used as a background.\n\ | |
1463 If FRAME is nil or omitted, use the selected frame.\n\ | |
1464 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
|
1465 (color, frame, background_p) |
24995 | 1466 Lisp_Object frame, color, background_p; |
1467 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1468 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1469 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1470 CHECK_FRAME (frame, 0); |
24995 | 1471 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
|
1472 f = XFRAME (frame); |
24995 | 1473 if (face_color_supported_p (f, XSTRING (color)->data, !NILP (background_p))) |
1474 return Qt; | |
1475 return Qnil; | |
1476 } | |
1477 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1478 |
24995 | 1479 /* Load color with name NAME for use by face FACE on frame F. |
1480 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX, | |
1481 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX, | |
1482 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the | |
1483 pixel color. If color cannot be loaded, display a message, and | |
1484 return the foreground, background or underline color of F, but | |
1485 record that fact in flags of the face so that we don't try to free | |
1486 these colors. */ | |
1487 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
1488 unsigned long |
24995 | 1489 load_color (f, face, name, target_index) |
1490 struct frame *f; | |
1491 struct face *face; | |
1492 Lisp_Object name; | |
1493 enum lface_attribute_index target_index; | |
1494 { | |
1495 XColor color; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1496 |
24995 | 1497 xassert (STRINGP (name)); |
1498 xassert (target_index == LFACE_FOREGROUND_INDEX | |
1499 || target_index == LFACE_BACKGROUND_INDEX | |
1500 || target_index == LFACE_UNDERLINE_INDEX | |
1501 || target_index == LFACE_OVERLINE_INDEX | |
1502 || target_index == LFACE_STRIKE_THROUGH_INDEX | |
1503 || target_index == LFACE_BOX_INDEX); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1504 |
24995 | 1505 /* if the color map is full, defined_color will return a best match |
1506 to the values in an existing cell. */ | |
1507 if (!defined_color (f, XSTRING (name)->data, &color, 1)) | |
1508 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1509 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
|
1510 |
24995 | 1511 switch (target_index) |
1512 { | |
1513 case LFACE_FOREGROUND_INDEX: | |
1514 face->foreground_defaulted_p = 1; | |
1515 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1516 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1517 |
24995 | 1518 case LFACE_BACKGROUND_INDEX: |
1519 face->background_defaulted_p = 1; | |
1520 color.pixel = FRAME_BACKGROUND_PIXEL (f); | |
1521 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1522 |
24995 | 1523 case LFACE_UNDERLINE_INDEX: |
1524 face->underline_defaulted_p = 1; | |
1525 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1526 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1527 |
24995 | 1528 case LFACE_OVERLINE_INDEX: |
1529 face->overline_color_defaulted_p = 1; | |
1530 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1531 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1532 |
24995 | 1533 case LFACE_STRIKE_THROUGH_INDEX: |
1534 face->strike_through_color_defaulted_p = 1; | |
1535 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1536 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1537 |
24995 | 1538 case LFACE_BOX_INDEX: |
1539 face->box_color_defaulted_p = 1; | |
1540 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1541 break; | |
1542 | |
1543 default: | |
1544 abort (); | |
1545 } | |
1546 } | |
1547 #if GLYPH_DEBUG | |
1548 else | |
1549 ++ncolors_allocated; | |
1550 #endif | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1551 |
24995 | 1552 return color.pixel; |
1553 } | |
1554 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1555 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1556 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1557 |
1558 /* Load colors for face FACE which is used on frame F. Colors are | |
1559 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX | |
1560 of ATTRS. If the background color specified is not supported on F, | |
1561 try to emulate gray colors with a stipple from Vface_default_stipple. */ | |
1562 | |
1563 static void | |
1564 load_face_colors (f, face, attrs) | |
1565 struct frame *f; | |
1566 struct face *face; | |
1567 Lisp_Object *attrs; | |
1568 { | |
1569 Lisp_Object fg, bg; | |
1570 | |
1571 bg = attrs[LFACE_BACKGROUND_INDEX]; | |
1572 fg = attrs[LFACE_FOREGROUND_INDEX]; | |
1573 | |
1574 /* Swap colors if face is inverse-video. */ | |
1575 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt)) | |
1576 { | |
1577 Lisp_Object tmp; | |
1578 tmp = fg; | |
1579 fg = bg; | |
1580 bg = tmp; | |
1581 } | |
1582 | |
1583 /* Check for support for foreground, not for background because | |
1584 face_color_supported_p is smart enough to know that grays are | |
1585 "supported" as background because we are supposed to use stipple | |
1586 for them. */ | |
1587 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
|
1588 && !NILP (Fbitmap_spec_p (Vface_default_stipple))) |
24995 | 1589 { |
1590 x_destroy_bitmap (f, face->stipple); | |
1591 face->stipple = load_pixmap (f, Vface_default_stipple, | |
1592 &face->pixmap_w, &face->pixmap_h); | |
1593 } | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1594 |
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1595 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX); |
24995 | 1596 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX); |
1597 } | |
1598 | |
1599 | |
1600 /* Free color PIXEL on frame F. */ | |
1601 | |
1602 void | |
1603 unload_color (f, pixel) | |
1604 struct frame *f; | |
1605 unsigned long pixel; | |
1606 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1607 #ifdef HAVE_X_WINDOWS |
24995 | 1608 BLOCK_INPUT; |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1609 x_free_colors (f, &pixel, 1); |
24995 | 1610 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1611 #endif |
24995 | 1612 } |
1613 | |
1614 | |
1615 /* Free colors allocated for FACE. */ | |
1616 | |
1617 static void | |
1618 free_face_colors (f, face) | |
1619 struct frame *f; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1620 struct face *face; |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1621 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1622 #ifdef HAVE_X_WINDOWS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1623 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1624 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1625 if (!face->foreground_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1626 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1627 x_free_colors (f, &face->foreground, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1628 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1629 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1630 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1631 if (!face->background_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1632 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1633 x_free_colors (f, &face->background, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1634 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1635 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1636 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1637 if (face->underline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1638 && !face->underline_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1639 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1640 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
|
1641 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1642 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1643 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1644 if (face->overline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1645 && !face->overline_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1646 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1647 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
|
1648 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1649 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1650 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1651 if (face->strike_through_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1652 && !face->strike_through_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1653 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1654 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
|
1655 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1656 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1657 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1658 if (face->box != FACE_NO_BOX |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1659 && !face->box_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1660 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1661 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
|
1662 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1663 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1664 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1665 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1666 #endif /* HAVE_X_WINDOWS */ |
24995 | 1667 } |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1668 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1669 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1670 |
1671 | |
1672 | |
1673 /*********************************************************************** | |
1674 XLFD Font Names | |
1675 ***********************************************************************/ | |
1676 | |
1677 /* An enumerator for each field of an XLFD font name. */ | |
1678 | |
1679 enum xlfd_field | |
1680 { | |
1681 XLFD_FOUNDRY, | |
1682 XLFD_FAMILY, | |
1683 XLFD_WEIGHT, | |
1684 XLFD_SLANT, | |
1685 XLFD_SWIDTH, | |
1686 XLFD_ADSTYLE, | |
1687 XLFD_PIXEL_SIZE, | |
1688 XLFD_POINT_SIZE, | |
1689 XLFD_RESX, | |
1690 XLFD_RESY, | |
1691 XLFD_SPACING, | |
1692 XLFD_AVGWIDTH, | |
1693 XLFD_REGISTRY, | |
1694 XLFD_ENCODING, | |
1695 XLFD_LAST | |
1696 }; | |
1697 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1698 /* An enumerator for each possible slant value of a font. Taken from |
24995 | 1699 the XLFD specification. */ |
1700 | |
1701 enum xlfd_slant | |
1702 { | |
1703 XLFD_SLANT_UNKNOWN, | |
1704 XLFD_SLANT_ROMAN, | |
1705 XLFD_SLANT_ITALIC, | |
1706 XLFD_SLANT_OBLIQUE, | |
1707 XLFD_SLANT_REVERSE_ITALIC, | |
1708 XLFD_SLANT_REVERSE_OBLIQUE, | |
1709 XLFD_SLANT_OTHER | |
1710 }; | |
1711 | |
1712 /* Relative font weight according to XLFD documentation. */ | |
1713 | |
1714 enum xlfd_weight | |
1715 { | |
1716 XLFD_WEIGHT_UNKNOWN, | |
1717 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */ | |
1718 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */ | |
1719 XLFD_WEIGHT_LIGHT, /* 30 */ | |
1720 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */ | |
1721 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1722 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */ | |
1723 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */ | |
1724 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */ | |
1725 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */ | |
1726 }; | |
1727 | |
1728 /* Relative proportionate width. */ | |
1729 | |
1730 enum xlfd_swidth | |
1731 { | |
1732 XLFD_SWIDTH_UNKNOWN, | |
1733 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */ | |
1734 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */ | |
1735 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */ | |
1736 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */ | |
1737 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1738 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */ | |
1739 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */ | |
1740 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */ | |
1741 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */ | |
1742 }; | |
1743 | |
1744 /* Structure used for tables mapping XLFD weight, slant, and width | |
1745 names to numeric and symbolic values. */ | |
1746 | |
1747 struct table_entry | |
1748 { | |
1749 char *name; | |
1750 int numeric; | |
1751 Lisp_Object *symbol; | |
1752 }; | |
1753 | |
1754 /* Table of XLFD slant names and their numeric and symbolic | |
1755 representations. This table must be sorted by slant names in | |
1756 ascending order. */ | |
1757 | |
1758 static struct table_entry slant_table[] = | |
1759 { | |
1760 {"i", XLFD_SLANT_ITALIC, &Qitalic}, | |
1761 {"o", XLFD_SLANT_OBLIQUE, &Qoblique}, | |
1762 {"ot", XLFD_SLANT_OTHER, &Qitalic}, | |
1763 {"r", XLFD_SLANT_ROMAN, &Qnormal}, | |
1764 {"ri", XLFD_SLANT_REVERSE_ITALIC, &Qreverse_italic}, | |
1765 {"ro", XLFD_SLANT_REVERSE_OBLIQUE, &Qreverse_oblique} | |
1766 }; | |
1767 | |
1768 /* Table of XLFD weight names. This table must be sorted by weight | |
1769 names in ascending order. */ | |
1770 | |
1771 static struct table_entry weight_table[] = | |
1772 { | |
1773 {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}, | |
1774 {"bold", XLFD_WEIGHT_BOLD, &Qbold}, | |
1775 {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
33529
2e6d343c238d
(weight_table): Add `demi' with the same meaning as
Gerd Moellmann <gerd@gnu.org>
parents:
33372
diff
changeset
|
1776 {"demi", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, |
24995 | 1777 {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, |
1778 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light}, | |
1779 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1780 {"heavy", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1781 {"light", XLFD_WEIGHT_LIGHT, &Qlight}, | |
1782 {"medium", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1783 {"normal", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1784 {"regular", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1785 {"semibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1786 {"semilight", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1787 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT, &Qultra_light}, | |
1788 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold} | |
1789 }; | |
1790 | |
1791 /* Table of XLFD width names. This table must be sorted by width | |
1792 names in ascending order. */ | |
1793 | |
1794 static struct table_entry swidth_table[] = | |
1795 { | |
1796 {"compressed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1797 {"condensed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1798 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1799 {"expanded", XLFD_SWIDTH_EXPANDED, &Qexpanded}, | |
1800 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED, &Qextra_condensed}, | |
1801 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded}, | |
1802 {"medium", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1803 {"narrow", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1804 {"normal", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1805 {"regular", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1806 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED, &Qsemi_condensed}, | |
1807 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1808 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED, &Qultra_condensed}, | |
1809 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED, &Qultra_expanded}, | |
1810 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded} | |
1811 }; | |
1812 | |
1813 /* Structure used to hold the result of splitting font names in XLFD | |
1814 format into their fields. */ | |
1815 | |
1816 struct font_name | |
1817 { | |
1818 /* The original name which is modified destructively by | |
1819 split_font_name. The pointer is kept here to be able to free it | |
1820 if it was allocated from the heap. */ | |
1821 char *name; | |
1822 | |
1823 /* Font name fields. Each vector element points into `name' above. | |
1824 Fields are NUL-terminated. */ | |
1825 char *fields[XLFD_LAST]; | |
1826 | |
1827 /* Numeric values for those fields that interest us. See | |
1828 split_font_name for which these are. */ | |
1829 int numeric[XLFD_LAST]; | |
1830 }; | |
1831 | |
1832 /* The frame in effect when sorting font names. Set temporarily in | |
1833 sort_fonts so that it is available in font comparison functions. */ | |
1834 | |
1835 static struct frame *font_frame; | |
1836 | |
1837 /* Order by which font selection chooses fonts. The default values | |
1838 mean `first, find a best match for the font width, then for the | |
1839 font height, then for weight, then for slant.' This variable can be | |
1840 set via set-face-font-sort-order. */ | |
1841 | |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
1842 #ifdef macintosh |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
1843 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
|
1844 #else |
24995 | 1845 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
|
1846 #endif |
24995 | 1847 |
1848 /* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries. | |
1849 TABLE must be sorted by TABLE[i]->name in ascending order. Value | |
1850 is a pointer to the matching table entry or null if no table entry | |
1851 matches. */ | |
1852 | |
1853 static struct table_entry * | |
1854 xlfd_lookup_field_contents (table, dim, font, field_index) | |
1855 struct table_entry *table; | |
1856 int dim; | |
1857 struct font_name *font; | |
1858 int field_index; | |
1859 { | |
1860 /* Function split_font_name converts fields to lower-case, so there | |
1861 is no need to use xstrlwr or xstricmp here. */ | |
1862 char *s = font->fields[field_index]; | |
1863 int low, mid, high, cmp; | |
1864 | |
1865 low = 0; | |
1866 high = dim - 1; | |
1867 | |
1868 while (low <= high) | |
1869 { | |
1870 mid = (low + high) / 2; | |
1871 cmp = strcmp (table[mid].name, s); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1872 |
24995 | 1873 if (cmp < 0) |
1874 low = mid + 1; | |
1875 else if (cmp > 0) | |
1876 high = mid - 1; | |
1877 else | |
1878 return table + mid; | |
1879 } | |
1880 | |
1881 return NULL; | |
1882 } | |
1883 | |
1884 | |
1885 /* Return a numeric representation for font name field | |
1886 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1887 has DIM entries. Value is the numeric value found or DFLT if no | |
1888 table entry matches. This function is used to translate weight, | |
1889 slant, and swidth names of XLFD font names to numeric values. */ | |
1890 | |
1891 static INLINE int | |
1892 xlfd_numeric_value (table, dim, font, field_index, dflt) | |
1893 struct table_entry *table; | |
1894 int dim; | |
1895 struct font_name *font; | |
1896 int field_index; | |
1897 int dflt; | |
1898 { | |
1899 struct table_entry *p; | |
1900 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1901 return p ? p->numeric : dflt; | |
1902 } | |
1903 | |
1904 | |
1905 /* Return a symbolic representation for font name field | |
1906 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1907 has DIM entries. Value is the symbolic value found or DFLT if no | |
1908 table entry matches. This function is used to translate weight, | |
1909 slant, and swidth names of XLFD font names to symbols. */ | |
1910 | |
1911 static INLINE Lisp_Object | |
1912 xlfd_symbolic_value (table, dim, font, field_index, dflt) | |
1913 struct table_entry *table; | |
1914 int dim; | |
1915 struct font_name *font; | |
1916 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
|
1917 Lisp_Object dflt; |
24995 | 1918 { |
1919 struct table_entry *p; | |
1920 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1921 return p ? *p->symbol : dflt; | |
1922 } | |
1923 | |
1924 | |
1925 /* Return a numeric value for the slant of the font given by FONT. */ | |
1926 | |
1927 static INLINE int | |
1928 xlfd_numeric_slant (font) | |
1929 struct font_name *font; | |
1930 { | |
1931 return xlfd_numeric_value (slant_table, DIM (slant_table), | |
1932 font, XLFD_SLANT, XLFD_SLANT_ROMAN); | |
1933 } | |
1934 | |
1935 | |
1936 /* Return a symbol representing the weight of the font given by FONT. */ | |
1937 | |
1938 static INLINE Lisp_Object | |
1939 xlfd_symbolic_slant (font) | |
1940 struct font_name *font; | |
1941 { | |
1942 return xlfd_symbolic_value (slant_table, DIM (slant_table), | |
1943 font, XLFD_SLANT, Qnormal); | |
1944 } | |
1945 | |
1946 | |
1947 /* Return a numeric value for the weight of the font given by FONT. */ | |
1948 | |
1949 static INLINE int | |
1950 xlfd_numeric_weight (font) | |
1951 struct font_name *font; | |
1952 { | |
1953 return xlfd_numeric_value (weight_table, DIM (weight_table), | |
1954 font, XLFD_WEIGHT, XLFD_WEIGHT_MEDIUM); | |
1955 } | |
1956 | |
1957 | |
1958 /* Return a symbol representing the slant of the font given by FONT. */ | |
1959 | |
1960 static INLINE Lisp_Object | |
1961 xlfd_symbolic_weight (font) | |
1962 struct font_name *font; | |
1963 { | |
1964 return xlfd_symbolic_value (weight_table, DIM (weight_table), | |
1965 font, XLFD_WEIGHT, Qnormal); | |
1966 } | |
1967 | |
1968 | |
1969 /* Return a numeric value for the swidth of the font whose XLFD font | |
1970 name fields are found in FONT. */ | |
1971 | |
1972 static INLINE int | |
1973 xlfd_numeric_swidth (font) | |
1974 struct font_name *font; | |
1975 { | |
1976 return xlfd_numeric_value (swidth_table, DIM (swidth_table), | |
1977 font, XLFD_SWIDTH, XLFD_SWIDTH_MEDIUM); | |
1978 } | |
1979 | |
1980 | |
1981 /* Return a symbolic value for the swidth of FONT. */ | |
1982 | |
1983 static INLINE Lisp_Object | |
1984 xlfd_symbolic_swidth (font) | |
1985 struct font_name *font; | |
1986 { | |
1987 return xlfd_symbolic_value (swidth_table, DIM (swidth_table), | |
1988 font, XLFD_SWIDTH, Qnormal); | |
1989 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
1990 |
24995 | 1991 |
1992 /* Look up the entry of SYMBOL in the vector TABLE which has DIM | |
1993 entries. Value is a pointer to the matching table entry or null if | |
1994 no element of TABLE contains SYMBOL. */ | |
1995 | |
1996 static struct table_entry * | |
1997 face_value (table, dim, symbol) | |
1998 struct table_entry *table; | |
1999 int dim; | |
2000 Lisp_Object symbol; | |
2001 { | |
2002 int i; | |
2003 | |
2004 xassert (SYMBOLP (symbol)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2005 |
24995 | 2006 for (i = 0; i < dim; ++i) |
2007 if (EQ (*table[i].symbol, symbol)) | |
2008 break; | |
2009 | |
2010 return i < dim ? table + i : NULL; | |
2011 } | |
2012 | |
2013 | |
2014 /* Return a numeric value for SYMBOL in the vector TABLE which has DIM | |
2015 entries. Value is -1 if SYMBOL is not found in TABLE. */ | |
2016 | |
2017 static INLINE int | |
2018 face_numeric_value (table, dim, symbol) | |
2019 struct table_entry *table; | |
2020 int dim; | |
2021 Lisp_Object symbol; | |
2022 { | |
2023 struct table_entry *p = face_value (table, dim, symbol); | |
2024 return p ? p->numeric : -1; | |
2025 } | |
2026 | |
2027 | |
2028 /* Return a numeric value representing the weight specified by Lisp | |
2029 symbol WEIGHT. Value is one of the enumerators of enum | |
2030 xlfd_weight. */ | |
2031 | |
2032 static INLINE int | |
2033 face_numeric_weight (weight) | |
2034 Lisp_Object weight; | |
2035 { | |
2036 return face_numeric_value (weight_table, DIM (weight_table), weight); | |
2037 } | |
2038 | |
2039 | |
2040 /* Return a numeric value representing the slant specified by Lisp | |
2041 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */ | |
2042 | |
2043 static INLINE int | |
2044 face_numeric_slant (slant) | |
2045 Lisp_Object slant; | |
2046 { | |
2047 return face_numeric_value (slant_table, DIM (slant_table), slant); | |
2048 } | |
2049 | |
2050 | |
2051 /* Return a numeric value representing the swidth specified by Lisp | |
2052 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */ | |
2053 | |
2054 static int | |
2055 face_numeric_swidth (width) | |
2056 Lisp_Object width; | |
2057 { | |
2058 return face_numeric_value (swidth_table, DIM (swidth_table), width); | |
2059 } | |
2060 | |
2061 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2062 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2063 |
2064 /* Return non-zero if FONT is the name of a fixed-pitch font. */ | |
2065 | |
2066 static INLINE int | |
2067 xlfd_fixed_p (font) | |
2068 struct font_name *font; | |
2069 { | |
2070 /* Function split_font_name converts fields to lower-case, so there | |
2071 is no need to use tolower here. */ | |
2072 return *font->fields[XLFD_SPACING] != 'p'; | |
2073 } | |
2074 | |
2075 | |
2076 /* Return the point size of FONT on frame F, measured in 1/10 pt. | |
2077 | |
2078 The actual height of the font when displayed on F depends on the | |
2079 resolution of both the font and frame. For example, a 10pt font | |
2080 designed for a 100dpi display will display larger than 10pt on a | |
2081 75dpi display. (It's not unusual to use fonts not designed for the | |
2082 display one is using. For example, some intlfonts are available in | |
2083 72dpi versions, only.) | |
2084 | |
2085 Value is the real point size of FONT on frame F, or 0 if it cannot | |
2086 be determined. */ | |
2087 | |
2088 static INLINE int | |
2089 xlfd_point_size (f, font) | |
2090 struct frame *f; | |
2091 struct font_name *font; | |
2092 { | |
2093 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
2094 double font_resy = atoi (font->fields[XLFD_RESY]); | |
2095 double font_pt = atoi (font->fields[XLFD_POINT_SIZE]); | |
2096 int real_pt; | |
2097 | |
2098 if (font_resy == 0 || font_pt == 0) | |
2099 real_pt = 0; | |
2100 else | |
2101 real_pt = (font_resy / resy) * font_pt + 0.5; | |
2102 | |
2103 return real_pt; | |
2104 } | |
2105 | |
2106 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2107 /* 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
|
2108 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
|
2109 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
|
2110 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2111 static INLINE int |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2112 pixel_point_size (f, pixel) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2113 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2114 int pixel; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2115 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2116 double resy = FRAME_X_DISPLAY_INFO (f)->resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2117 double real_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2118 int int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2119 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2120 /* 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
|
2121 real_pt = pixel * 72 / resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2122 int_pt = real_pt + 0.5; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2123 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2124 return int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2125 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2126 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2127 |
24995 | 2128 /* Split XLFD font name FONT->name destructively into NUL-terminated, |
2129 lower-case fields in FONT->fields. NUMERIC_P non-zero means | |
2130 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH, | |
2131 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is | |
2132 zero if the font name doesn't have the format we expect. The | |
2133 expected format is a font name that starts with a `-' and has | |
2134 XLFD_LAST fields separated by `-'. (The XLFD specification allows | |
2135 forms of font names where certain field contents are enclosed in | |
2136 square brackets. We don't support that, for now. */ | |
2137 | |
2138 static int | |
2139 split_font_name (f, font, numeric_p) | |
2140 struct frame *f; | |
2141 struct font_name *font; | |
2142 int numeric_p; | |
2143 { | |
2144 int i = 0; | |
2145 int success_p; | |
2146 | |
2147 if (*font->name == '-') | |
2148 { | |
2149 char *p = xstrlwr (font->name) + 1; | |
2150 | |
2151 while (i < XLFD_LAST) | |
2152 { | |
2153 font->fields[i] = p; | |
2154 ++i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2155 |
24995 | 2156 while (*p && *p != '-') |
2157 ++p; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2158 |
24995 | 2159 if (*p != '-') |
2160 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2161 |
24995 | 2162 *p++ = 0; |
2163 } | |
2164 } | |
2165 | |
2166 success_p = i == XLFD_LAST; | |
2167 | |
2168 /* If requested, and font name was in the expected format, | |
2169 compute numeric values for some fields. */ | |
2170 if (numeric_p && success_p) | |
2171 { | |
2172 font->numeric[XLFD_POINT_SIZE] = xlfd_point_size (f, font); | |
2173 font->numeric[XLFD_RESY] = atoi (font->fields[XLFD_RESY]); | |
2174 font->numeric[XLFD_SLANT] = xlfd_numeric_slant (font); | |
2175 font->numeric[XLFD_WEIGHT] = xlfd_numeric_weight (font); | |
2176 font->numeric[XLFD_SWIDTH] = xlfd_numeric_swidth (font); | |
2177 } | |
2178 | |
2179 return success_p; | |
2180 } | |
2181 | |
2182 | |
2183 /* Build an XLFD font name from font name fields in FONT. Value is a | |
2184 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
|
2185 |
24995 | 2186 static char * |
2187 build_font_name (font) | |
2188 struct font_name *font; | |
2189 { | |
2190 int i; | |
2191 int size = 100; | |
2192 char *font_name = (char *) xmalloc (size); | |
2193 int total_length = 0; | |
2194 | |
2195 for (i = 0; i < XLFD_LAST; ++i) | |
2196 { | |
2197 /* Add 1 because of the leading `-'. */ | |
2198 int len = strlen (font->fields[i]) + 1; | |
2199 | |
2200 /* Reallocate font_name if necessary. Add 1 for the final | |
2201 NUL-byte. */ | |
2202 if (total_length + len + 1 >= size) | |
2203 { | |
2204 int new_size = max (2 * size, size + len + 1); | |
2205 int sz = new_size * sizeof *font_name; | |
2206 font_name = (char *) xrealloc (font_name, sz); | |
2207 size = new_size; | |
2208 } | |
2209 | |
2210 font_name[total_length] = '-'; | |
2211 bcopy (font->fields[i], font_name + total_length + 1, len - 1); | |
2212 total_length += len; | |
2213 } | |
2214 | |
2215 font_name[total_length] = 0; | |
2216 return font_name; | |
2217 } | |
2218 | |
2219 | |
2220 /* Free an array FONTS of N font_name structures. This frees FONTS | |
2221 itself and all `name' fields in its elements. */ | |
2222 | |
2223 static INLINE void | |
2224 free_font_names (fonts, n) | |
2225 struct font_name *fonts; | |
2226 int n; | |
2227 { | |
2228 while (n) | |
2229 xfree (fonts[--n].name); | |
2230 xfree (fonts); | |
2231 } | |
2232 | |
2233 | |
2234 /* Sort vector FONTS of font_name structures which contains NFONTS | |
2235 elements using qsort and comparison function CMPFN. F is the frame | |
2236 on which the fonts will be used. The global variable font_frame | |
2237 is temporarily set to F to make it available in CMPFN. */ | |
2238 | |
2239 static INLINE void | |
2240 sort_fonts (f, fonts, nfonts, cmpfn) | |
2241 struct frame *f; | |
2242 struct font_name *fonts; | |
2243 int nfonts; | |
2244 int (*cmpfn) P_ ((const void *, const void *)); | |
2245 { | |
2246 font_frame = f; | |
2247 qsort (fonts, nfonts, sizeof *fonts, cmpfn); | |
2248 font_frame = NULL; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2249 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2250 |
24995 | 2251 |
2252 /* Get fonts matching PATTERN on frame F. If F is null, use the first | |
2253 display in x_display_list. FONTS is a pointer to a vector of | |
2254 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try | |
2255 alternative patterns from Valternate_fontname_alist if no fonts are | |
2256 found matching PATTERN. SCALABLE_FONTS_P non-zero means include | |
2257 scalable fonts. | |
2258 | |
2259 For all fonts found, set FONTS[i].name to the name of the font, | |
2260 allocated via xmalloc, and split font names into fields. Ignore | |
2261 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
|
2262 |
24995 | 2263 This is similar to x_list_fonts. The differences are: |
2264 | |
2265 1. It avoids consing. | |
2266 2. It never calls XLoadQueryFont. */ | |
2267 | |
2268 static int | |
2269 x_face_list_fonts (f, pattern, fonts, nfonts, try_alternatives_p, | |
2270 scalable_fonts_p) | |
2271 struct frame *f; | |
2272 char *pattern; | |
2273 struct font_name *fonts; | |
2274 int nfonts, try_alternatives_p; | |
2275 int scalable_fonts_p; | |
2276 { | |
2277 int n, i, j; | |
2278 char **names; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2279 #ifdef HAVE_X_WINDOWS |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2280 Display *dpy = f ? FRAME_X_DISPLAY (f) : x_display_list->display; |
24995 | 2281 |
2282 /* Get the list of fonts matching PATTERN from the X server. */ | |
2283 BLOCK_INPUT; | |
2284 names = XListFonts (dpy, pattern, nfonts, &n); | |
2285 UNBLOCK_INPUT; | |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
2286 #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
|
2287 #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
|
2288 /* 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
|
2289 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
|
2290 Lisp_Object lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2291 Lisp_Object lpattern, tem; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2292 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2293 n = 0; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2294 names = NULL; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2295 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2296 lpattern = build_string (pattern); |
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 /* 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
|
2299 BLOCK_INPUT; |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
2300 #ifdef WINDOWSNT |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2301 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
|
2302 #else /* macintosh */ |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
2303 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
|
2304 #endif |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2305 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2306 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2307 /* Count fonts returned */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2308 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
|
2309 n++; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2310 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2311 /* Allocate array. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2312 if (n) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2313 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
|
2314 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2315 /* 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
|
2316 tem = lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2317 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
|
2318 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2319 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
|
2320 tem = XCDR (tem); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2321 } |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
2322 #endif /* defined (WINDOWSNT) || defined (macintosh) */ |
24995 | 2323 |
2324 if (names) | |
2325 { | |
2326 /* Make a copy of the font names we got from X, and | |
2327 split them into fields. */ | |
2328 for (i = j = 0; i < n; ++i) | |
2329 { | |
2330 /* Make a copy of the font name. */ | |
2331 fonts[j].name = xstrdup (names[i]); | |
2332 | |
2333 /* Ignore fonts having a name that we can't parse. */ | |
2334 if (!split_font_name (f, fonts + j, 1)) | |
2335 xfree (fonts[j].name); | |
2336 else if (font_scalable_p (fonts + j)) | |
2337 { | |
2338 if (!scalable_fonts_p | |
2339 || !may_use_scalable_font_p (fonts + j, names[i])) | |
2340 xfree (fonts[j].name); | |
2341 else | |
2342 ++j; | |
2343 } | |
2344 else | |
2345 ++j; | |
2346 } | |
2347 | |
2348 n = j; | |
2349 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2350 #ifdef HAVE_X_WINDOWS |
24995 | 2351 /* Free font names. */ |
2352 BLOCK_INPUT; | |
2353 XFreeFontNames (names); | |
2354 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2355 #endif |
24995 | 2356 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2357 |
24995 | 2358 |
2359 /* If no fonts found, try patterns from Valternate_fontname_alist. */ | |
2360 if (n == 0 && try_alternatives_p) | |
2361 { | |
2362 Lisp_Object list = Valternate_fontname_alist; | |
2363 | |
2364 while (CONSP (list)) | |
2365 { | |
2366 Lisp_Object entry = XCAR (list); | |
2367 if (CONSP (entry) | |
2368 && STRINGP (XCAR (entry)) | |
2369 && strcmp (XSTRING (XCAR (entry))->data, pattern) == 0) | |
2370 break; | |
2371 list = XCDR (list); | |
2372 } | |
2373 | |
2374 if (CONSP (list)) | |
2375 { | |
2376 Lisp_Object patterns = XCAR (list); | |
2377 Lisp_Object name; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2378 |
24995 | 2379 while (CONSP (patterns) |
2380 /* If list is screwed up, give up. */ | |
2381 && (name = XCAR (patterns), | |
2382 STRINGP (name)) | |
2383 /* Ignore patterns equal to PATTERN because we tried that | |
2384 already with no success. */ | |
2385 && (strcmp (XSTRING (name)->data, pattern) == 0 | |
2386 || (n = x_face_list_fonts (f, XSTRING (name)->data, | |
2387 fonts, nfonts, 0, | |
2388 scalable_fonts_p), | |
2389 n == 0))) | |
2390 patterns = XCDR (patterns); | |
2391 } | |
2392 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2393 |
24995 | 2394 return n; |
2395 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2396 |
24995 | 2397 |
2398 /* Determine the first font matching PATTERN on frame F. Return in | |
2399 *FONT the matching font name, split into fields. Value is non-zero | |
2400 if a match was found. */ | |
2401 | |
2402 static int | |
2403 first_font_matching (f, pattern, font) | |
2404 struct frame *f; | |
2405 char *pattern; | |
2406 struct font_name *font; | |
2407 { | |
2408 int nfonts = 100; | |
2409 struct font_name *fonts; | |
2410 | |
2411 fonts = (struct font_name *) xmalloc (nfonts * sizeof *fonts); | |
2412 nfonts = x_face_list_fonts (f, pattern, fonts, nfonts, 1, 0); | |
2413 | |
2414 if (nfonts > 0) | |
2415 { | |
2416 bcopy (&fonts[0], font, sizeof *font); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2417 |
24995 | 2418 fonts[0].name = NULL; |
2419 free_font_names (fonts, nfonts); | |
2420 } | |
2421 | |
2422 return nfonts > 0; | |
2423 } | |
2424 | |
2425 | |
2426 /* Determine fonts matching PATTERN on frame F. Sort resulting fonts | |
2427 using comparison function CMPFN. Value is the number of fonts | |
2428 found. If value is non-zero, *FONTS is set to a vector of | |
2429 font_name structures allocated from the heap containing matching | |
2430 fonts. Each element of *FONTS contains a name member that is also | |
2431 allocated from the heap. Font names in these structures are split | |
2432 into fields. Use free_font_names to free such an array. */ | |
2433 | |
2434 static int | |
2435 sorted_font_list (f, pattern, cmpfn, fonts) | |
2436 struct frame *f; | |
2437 char *pattern; | |
2438 int (*cmpfn) P_ ((const void *, const void *)); | |
2439 struct font_name **fonts; | |
2440 { | |
2441 int nfonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2442 |
24995 | 2443 /* Get the list of fonts matching pattern. 100 should suffice. */ |
25270 | 2444 nfonts = DEFAULT_FONT_LIST_LIMIT; |
2445 if (INTEGERP (Vfont_list_limit) && XINT (Vfont_list_limit) > 0) | |
2446 nfonts = XFASTINT (Vfont_list_limit); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2447 |
24995 | 2448 *fonts = (struct font_name *) xmalloc (nfonts * sizeof **fonts); |
2449 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
|
2450 |
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2451 /* Sort the resulting array and return it in *FONTS. If no |
24995 | 2452 fonts were found, make sure to set *FONTS to null. */ |
2453 if (nfonts) | |
2454 sort_fonts (f, *fonts, nfonts, cmpfn); | |
2455 else | |
2456 { | |
2457 xfree (*fonts); | |
2458 *fonts = NULL; | |
2459 } | |
2460 | |
2461 return nfonts; | |
2462 } | |
2463 | |
2464 | |
2465 /* Compare two font_name structures *A and *B. Value is analogous to | |
2466 strcmp. Sort order is given by the global variable | |
2467 font_sort_order. Font names are sorted so that, everything else | |
2468 being equal, fonts with a resolution closer to that of the frame on | |
2469 which they are used are listed first. The global variable | |
2470 font_frame is the frame on which we operate. */ | |
2471 | |
2472 static int | |
2473 cmp_font_names (a, b) | |
2474 const void *a, *b; | |
2475 { | |
2476 struct font_name *x = (struct font_name *) a; | |
2477 struct font_name *y = (struct font_name *) b; | |
2478 int cmp; | |
2479 | |
2480 /* All strings have been converted to lower-case by split_font_name, | |
2481 so we can use strcmp here. */ | |
2482 cmp = strcmp (x->fields[XLFD_FAMILY], y->fields[XLFD_FAMILY]); | |
2483 if (cmp == 0) | |
2484 { | |
2485 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2486 |
24995 | 2487 for (i = 0; i < DIM (font_sort_order) && cmp == 0; ++i) |
2488 { | |
2489 int j = font_sort_order[i]; | |
2490 cmp = x->numeric[j] - y->numeric[j]; | |
2491 } | |
2492 | |
2493 if (cmp == 0) | |
2494 { | |
2495 /* Everything else being equal, we prefer fonts with an | |
2496 y-resolution closer to that of the frame. */ | |
2497 int resy = FRAME_X_DISPLAY_INFO (font_frame)->resy; | |
2498 int x_resy = x->numeric[XLFD_RESY]; | |
2499 int y_resy = y->numeric[XLFD_RESY]; | |
2500 cmp = abs (resy - x_resy) - abs (resy - y_resy); | |
2501 } | |
2502 } | |
2503 | |
2504 return cmp; | |
2505 } | |
2506 | |
2507 | |
2508 /* 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
|
2509 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
|
2510 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
|
2511 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
|
2512 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
|
2513 Value is the number of fonts found. */ |
24995 | 2514 |
2515 static int | |
33372
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2516 font_list_1 (f, pattern, family, registry, fonts) |
24995 | 2517 struct frame *f; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2518 Lisp_Object pattern, family, registry; |
24995 | 2519 struct font_name **fonts; |
2520 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2521 char *pattern_str, *family_str, *registry_str; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2522 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2523 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2524 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2525 family_str = (NILP (family) ? "*" : (char *) XSTRING (family)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2526 registry_str = (NILP (registry) ? "*" : (char *) XSTRING (registry)->data); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2527 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2528 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
|
2529 + strlen (registry_str) |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2530 + 10); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2531 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
|
2532 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
|
2533 strcat (pattern_str, "-*-"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2534 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
|
2535 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
|
2536 { |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2537 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
|
2538 strcat (pattern_str, "-*"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2539 else |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2540 strcat (pattern_str, "*-*"); |
6f3f0ca4a359
(font_list): Handle the case that REGISTRY doesn't contain information
Kenichi Handa <handa@m17n.org>
parents:
29711
diff
changeset
|
2541 } |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2542 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2543 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2544 pattern_str = (char *) XSTRING (pattern)->data; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2545 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2546 return sorted_font_list (f, pattern_str, cmp_font_names, fonts); |
24995 | 2547 } |
2548 | |
2549 | |
33372
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2550 /* Get a sorted list of fonts of family FAMILY on frame F. |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2551 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2552 If PATTERN is non-nil list fonts matching that pattern. |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2553 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2554 If REGISTRY is non-nil, retur fonts with that registry. If none |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2555 are found, try alternative registries from |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2556 Vface_alternative_font_registry_alist. |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2557 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2558 If REGISTRY is nil return fonts of any registry. |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2559 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2560 Set *FONTS to a vector of font_name structures allocated from the |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2561 heap containing the fonts found. Value is the number of fonts |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2562 found. */ |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2563 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2564 static int |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2565 font_list (f, pattern, family, registry, fonts) |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2566 struct frame *f; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2567 Lisp_Object pattern, family, registry; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2568 struct font_name **fonts; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2569 { |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2570 int nfonts = font_list_1 (f, pattern, family, registry, fonts); |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2571 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2572 if (nfonts == 0 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2573 && !NILP (registry) |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2574 && CONSP (Vface_alternative_font_registry_alist)) |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2575 { |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2576 Lisp_Object alter; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2577 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2578 alter = Fassoc (registry, Vface_alternative_font_registry_alist); |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2579 if (CONSP (alter)) |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2580 { |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2581 for (alter = XCDR (alter); |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2582 CONSP (alter) && nfonts == 0; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2583 alter = XCDR (alter)) |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2584 if (STRINGP (XCAR (alter))) |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2585 nfonts = font_list_1 (f, pattern, family, XCAR (alter), fonts); |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2586 } |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2587 } |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2588 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2589 return nfonts; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2590 } |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2591 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
2592 |
24995 | 2593 /* 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
|
2594 x-family-fonts and x-font-family-list to remove duplicate font |
24995 | 2595 entries. */ |
2596 | |
2597 static void | |
2598 remove_duplicates (list) | |
2599 Lisp_Object list; | |
2600 { | |
2601 Lisp_Object tail = list; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2602 |
24995 | 2603 while (!NILP (tail) && !NILP (XCDR (tail))) |
2604 { | |
2605 Lisp_Object next = XCDR (tail); | |
2606 if (!NILP (Fequal (XCAR (next), XCAR (tail)))) | |
2607 XCDR (tail) = XCDR (next); | |
2608 else | |
2609 tail = XCDR (tail); | |
2610 } | |
2611 } | |
2612 | |
2613 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2614 DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0, |
24995 | 2615 "Return a list of available fonts of family FAMILY on FRAME.\n\ |
2616 If FAMILY is omitted or nil, list all families.\n\ | |
2617 Otherwise, FAMILY must be a string, possibly containing wildcards\n\ | |
2618 `?' and `*'.\n\ | |
2619 If FRAME is omitted or nil, use the selected frame.\n\ | |
2620 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT\n\ | |
25270 | 2621 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].\n\ |
24995 | 2622 FAMILY is the font family name. POINT-SIZE is the size of the\n\ |
2623 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the\n\ | |
2624 width, weight and slant of the font. These symbols are the same as for\n\ | |
2625 face attributes. FIXED-P is non-nil if the font is fixed-pitch.\n\ | |
25270 | 2626 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string\n\ |
2627 giving the registry and encoding of the font.\n\ | |
24995 | 2628 The result list is sorted according to the current setting of\n\ |
2629 the face font sort order.") | |
2630 (family, frame) | |
2631 Lisp_Object family, frame; | |
2632 { | |
2633 struct frame *f = check_x_frame (frame); | |
2634 struct font_name *fonts; | |
2635 int i, nfonts; | |
2636 Lisp_Object result; | |
2637 struct gcpro gcpro1; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2638 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2639 if (!NILP (family)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2640 CHECK_STRING (family, 1); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2641 |
24995 | 2642 result = Qnil; |
2643 GCPRO1 (result); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2644 nfonts = font_list (f, Qnil, family, Qnil, &fonts); |
24995 | 2645 for (i = nfonts - 1; i >= 0; --i) |
2646 { | |
25270 | 2647 Lisp_Object v = Fmake_vector (make_number (8), Qnil); |
2648 char *tem; | |
24995 | 2649 |
2650 ASET (v, 0, build_string (fonts[i].fields[XLFD_FAMILY])); | |
2651 ASET (v, 1, xlfd_symbolic_swidth (fonts + i)); | |
2652 ASET (v, 2, make_number (xlfd_point_size (f, fonts + i))); | |
2653 ASET (v, 3, xlfd_symbolic_weight (fonts + i)); | |
2654 ASET (v, 4, xlfd_symbolic_slant (fonts + i)); | |
2655 ASET (v, 5, xlfd_fixed_p (fonts + i) ? Qt : Qnil); | |
25270 | 2656 tem = build_font_name (fonts + i); |
2657 ASET (v, 6, build_string (tem)); | |
2658 sprintf (tem, "%s-%s", fonts[i].fields[XLFD_REGISTRY], | |
2659 fonts[i].fields[XLFD_ENCODING]); | |
2660 ASET (v, 7, build_string (tem)); | |
2661 xfree (tem); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2662 |
24995 | 2663 result = Fcons (v, result); |
2664 } | |
2665 | |
2666 remove_duplicates (result); | |
2667 free_font_names (fonts, nfonts); | |
2668 UNGCPRO; | |
2669 return result; | |
2670 } | |
2671 | |
2672 | |
2673 DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list, | |
2674 0, 1, 0, | |
2675 "Return a list of available font families on FRAME.\n\ | |
2676 If FRAME is omitted or nil, use the selected frame.\n\ | |
2677 Value is a list of conses (FAMILY . FIXED-P) where FAMILY\n\ | |
2678 is a font family, and FIXED-P is non-nil if fonts of that family\n\ | |
2679 are fixed-pitch.") | |
2680 (frame) | |
2681 Lisp_Object frame; | |
2682 { | |
2683 struct frame *f = check_x_frame (frame); | |
2684 int nfonts, i; | |
2685 struct font_name *fonts; | |
2686 Lisp_Object result; | |
2687 struct gcpro gcpro1; | |
25270 | 2688 int count = specpdl_ptr - specpdl; |
2689 int limit; | |
2690 | |
2691 /* Let's consider all fonts. Increase the limit for matching | |
2692 fonts until we have them all. */ | |
2693 for (limit = 500;;) | |
2694 { | |
2695 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
|
2696 nfonts = font_list (f, Qnil, Qnil, Qnil, &fonts); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2697 |
25270 | 2698 if (nfonts == limit) |
2699 { | |
2700 free_font_names (fonts, nfonts); | |
2701 limit *= 2; | |
2702 } | |
2703 else | |
2704 break; | |
2705 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2706 |
24995 | 2707 result = Qnil; |
2708 GCPRO1 (result); | |
2709 for (i = nfonts - 1; i >= 0; --i) | |
2710 result = Fcons (Fcons (build_string (fonts[i].fields[XLFD_FAMILY]), | |
2711 xlfd_fixed_p (fonts + i) ? Qt : Qnil), | |
2712 result); | |
2713 | |
2714 remove_duplicates (result); | |
2715 free_font_names (fonts, nfonts); | |
2716 UNGCPRO; | |
25270 | 2717 return unbind_to (count, result); |
24995 | 2718 } |
2719 | |
2720 | |
2721 DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0, | |
2722 "Return a list of the names of available fonts matching PATTERN.\n\ | |
2723 If optional arguments FACE and FRAME are specified, return only fonts\n\ | |
2724 the same size as FACE on FRAME.\n\ | |
2725 PATTERN is a string, perhaps with wildcard characters;\n\ | |
2726 the * character matches any substring, and\n\ | |
2727 the ? character matches any single character.\n\ | |
2728 PATTERN is case-insensitive.\n\ | |
2729 FACE is a face name--a symbol.\n\ | |
2730 \n\ | |
2731 The return value is a list of strings, suitable as arguments to\n\ | |
2732 set-face-font.\n\ | |
2733 \n\ | |
2734 Fonts Emacs can't use may or may not be excluded\n\ | |
2735 even if they match PATTERN and FACE.\n\ | |
2736 The optional fourth argument MAXIMUM sets a limit on how many\n\ | |
2737 fonts to match. The first MAXIMUM fonts are reported.\n\ | |
2738 The optional fifth argument WIDTH, if specified, is a number of columns\n\ | |
2739 occupied by a character of a font. In that case, return only fonts\n\ | |
2740 the WIDTH times as wide as FACE on FRAME.") | |
2741 (pattern, face, frame, maximum, width) | |
2742 Lisp_Object pattern, face, frame, maximum, width; | |
2743 { | |
2744 struct frame *f; | |
2745 int size; | |
2746 int maxnames; | |
2747 | |
2748 check_x (); | |
2749 CHECK_STRING (pattern, 0); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2750 |
24995 | 2751 if (NILP (maximum)) |
2752 maxnames = 2000; | |
2753 else | |
2754 { | |
2755 CHECK_NATNUM (maximum, 0); | |
2756 maxnames = XINT (maximum); | |
2757 } | |
2758 | |
2759 if (!NILP (width)) | |
2760 CHECK_NUMBER (width, 4); | |
2761 | |
2762 /* We can't simply call check_x_frame because this function may be | |
2763 called before any frame is created. */ | |
2764 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
|
2765 if (!FRAME_WINDOW_P (f)) |
24995 | 2766 { |
2767 /* Perhaps we have not yet created any frame. */ | |
2768 f = NULL; | |
2769 face = Qnil; | |
2770 } | |
2771 | |
2772 /* Determine the width standard for comparison with the fonts we find. */ | |
2773 | |
2774 if (NILP (face)) | |
2775 size = 0; | |
2776 else | |
2777 { | |
2778 /* This is of limited utility since it works with character | |
2779 widths. Keep it for compatibility. --gerd. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2780 int face_id = lookup_named_face (f, face, 0); |
33275
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
2781 struct face *face = (face_id < 0 |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
2782 ? NULL |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
2783 : FACE_FROM_ID (f, face_id)); |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
2784 |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
2785 if (face && face->font) |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2786 size = FONT_WIDTH (face->font); |
24995 | 2787 else |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2788 size = FONT_WIDTH (FRAME_FONT (f)); |
24995 | 2789 |
2790 if (!NILP (width)) | |
2791 size *= XINT (width); | |
2792 } | |
2793 | |
2794 { | |
2795 Lisp_Object args[2]; | |
2796 | |
2797 args[0] = x_list_fonts (f, pattern, size, maxnames); | |
2798 if (f == NULL) | |
2799 /* We don't have to check fontsets. */ | |
2800 return args[0]; | |
2801 args[1] = list_fontsets (f, pattern, size); | |
2802 return Fnconc (2, args); | |
2803 } | |
2804 } | |
2805 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2806 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 2807 |
2808 | |
2809 | |
2810 /*********************************************************************** | |
2811 Lisp Faces | |
2812 ***********************************************************************/ | |
2813 | |
2814 /* Access face attributes of face FACE, a Lisp vector. */ | |
2815 | |
2816 #define LFACE_FAMILY(LFACE) \ | |
2817 XVECTOR (LFACE)->contents[LFACE_FAMILY_INDEX] | |
2818 #define LFACE_HEIGHT(LFACE) \ | |
2819 XVECTOR (LFACE)->contents[LFACE_HEIGHT_INDEX] | |
2820 #define LFACE_WEIGHT(LFACE) \ | |
2821 XVECTOR (LFACE)->contents[LFACE_WEIGHT_INDEX] | |
2822 #define LFACE_SLANT(LFACE) \ | |
2823 XVECTOR (LFACE)->contents[LFACE_SLANT_INDEX] | |
2824 #define LFACE_UNDERLINE(LFACE) \ | |
2825 XVECTOR (LFACE)->contents[LFACE_UNDERLINE_INDEX] | |
2826 #define LFACE_INVERSE(LFACE) \ | |
2827 XVECTOR (LFACE)->contents[LFACE_INVERSE_INDEX] | |
2828 #define LFACE_FOREGROUND(LFACE) \ | |
2829 XVECTOR (LFACE)->contents[LFACE_FOREGROUND_INDEX] | |
2830 #define LFACE_BACKGROUND(LFACE) \ | |
2831 XVECTOR (LFACE)->contents[LFACE_BACKGROUND_INDEX] | |
2832 #define LFACE_STIPPLE(LFACE) \ | |
2833 XVECTOR (LFACE)->contents[LFACE_STIPPLE_INDEX] | |
2834 #define LFACE_SWIDTH(LFACE) \ | |
2835 XVECTOR (LFACE)->contents[LFACE_SWIDTH_INDEX] | |
2836 #define LFACE_OVERLINE(LFACE) \ | |
2837 XVECTOR (LFACE)->contents[LFACE_OVERLINE_INDEX] | |
2838 #define LFACE_STRIKE_THROUGH(LFACE) \ | |
2839 XVECTOR (LFACE)->contents[LFACE_STRIKE_THROUGH_INDEX] | |
2840 #define LFACE_BOX(LFACE) \ | |
2841 XVECTOR (LFACE)->contents[LFACE_BOX_INDEX] | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2842 #define LFACE_FONT(LFACE) \ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2843 XVECTOR (LFACE)->contents[LFACE_FONT_INDEX] |
31178 | 2844 #define LFACE_INHERIT(LFACE) \ |
2845 XVECTOR (LFACE)->contents[LFACE_INHERIT_INDEX] | |
24995 | 2846 |
2847 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size | |
2848 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */ | |
2849 | |
2850 #define LFACEP(LFACE) \ | |
2851 (VECTORP (LFACE) \ | |
2852 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \ | |
2853 && EQ (XVECTOR (LFACE)->contents[0], Qface)) | |
2854 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2855 |
24995 | 2856 #if GLYPH_DEBUG |
2857 | |
2858 /* Check consistency of Lisp face attribute vector ATTRS. */ | |
2859 | |
2860 static void | |
2861 check_lface_attrs (attrs) | |
2862 Lisp_Object *attrs; | |
2863 { | |
2864 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX]) | |
2865 || STRINGP (attrs[LFACE_FAMILY_INDEX])); | |
2866 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX]) | |
2867 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX])); | |
2868 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX]) | |
31178 | 2869 || INTEGERP (attrs[LFACE_HEIGHT_INDEX]) |
2870 || FLOATP (attrs[LFACE_HEIGHT_INDEX]) | |
2871 || FUNCTIONP (attrs[LFACE_HEIGHT_INDEX])); | |
24995 | 2872 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX]) |
2873 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX])); | |
2874 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX]) | |
2875 || SYMBOLP (attrs[LFACE_SLANT_INDEX])); | |
2876 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX]) | |
2877 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX]) | |
2878 || STRINGP (attrs[LFACE_UNDERLINE_INDEX])); | |
2879 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX]) | |
2880 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX]) | |
2881 || STRINGP (attrs[LFACE_OVERLINE_INDEX])); | |
2882 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2883 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2884 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX])); | |
2885 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX]) | |
2886 || SYMBOLP (attrs[LFACE_BOX_INDEX]) | |
2887 || STRINGP (attrs[LFACE_BOX_INDEX]) | |
2888 || INTEGERP (attrs[LFACE_BOX_INDEX]) | |
2889 || CONSP (attrs[LFACE_BOX_INDEX])); | |
2890 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX]) | |
2891 || SYMBOLP (attrs[LFACE_INVERSE_INDEX])); | |
2892 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX]) | |
2893 || STRINGP (attrs[LFACE_FOREGROUND_INDEX])); | |
2894 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX]) | |
2895 || STRINGP (attrs[LFACE_BACKGROUND_INDEX])); | |
31178 | 2896 xassert (UNSPECIFIEDP (attrs[LFACE_INHERIT_INDEX]) |
2897 || NILP (attrs[LFACE_INHERIT_INDEX]) | |
2898 || SYMBOLP (attrs[LFACE_INHERIT_INDEX]) | |
2899 || CONSP (attrs[LFACE_INHERIT_INDEX])); | |
24995 | 2900 #ifdef HAVE_WINDOW_SYSTEM |
2901 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX]) | |
2902 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX]) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
2903 || !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
|
2904 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
|
2905 || NILP (attrs[LFACE_FONT_INDEX]) |
2f636fd2f714
(check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
Gerd Moellmann <gerd@gnu.org>
parents:
28230
diff
changeset
|
2906 || STRINGP (attrs[LFACE_FONT_INDEX])); |
24995 | 2907 #endif |
2908 } | |
2909 | |
2910 | |
2911 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */ | |
2912 | |
2913 static void | |
2914 check_lface (lface) | |
2915 Lisp_Object lface; | |
2916 { | |
2917 if (!NILP (lface)) | |
2918 { | |
2919 xassert (LFACEP (lface)); | |
2920 check_lface_attrs (XVECTOR (lface)->contents); | |
2921 } | |
2922 } | |
2923 | |
2924 #else /* GLYPH_DEBUG == 0 */ | |
2925 | |
2926 #define check_lface_attrs(attrs) (void) 0 | |
2927 #define check_lface(lface) (void) 0 | |
2928 | |
2929 #endif /* GLYPH_DEBUG == 0 */ | |
2930 | |
2931 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2932 /* 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
|
2933 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
|
2934 return that face's name. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2935 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2936 static Lisp_Object |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2937 resolve_face_name (face_name) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2938 Lisp_Object face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2939 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2940 Lisp_Object aliased; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
2941 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2942 if (STRINGP (face_name)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2943 face_name = intern (XSTRING (face_name)->data); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2944 |
33070
ca31e3965686
(resolve_face_name): Handle case that FACE_NAME
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
2945 while (SYMBOLP (face_name)) |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2946 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2947 aliased = Fget (face_name, Qface_alias); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2948 if (NILP (aliased)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2949 break; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2950 else |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2951 face_name = aliased; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2952 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2953 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2954 return face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2955 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2956 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2957 |
24995 | 2958 /* Return the face definition of FACE_NAME on frame F. F null means |
33853
eb4affa4abc6
(lface_from_face_name): Function comment fix.
Gerd Moellmann <gerd@gnu.org>
parents:
33529
diff
changeset
|
2959 return the definition for new frames. FACE_NAME may be a string or |
eb4affa4abc6
(lface_from_face_name): Function comment fix.
Gerd Moellmann <gerd@gnu.org>
parents:
33529
diff
changeset
|
2960 a symbol (apparently Emacs 20.2 allowed strings as face names in |
eb4affa4abc6
(lface_from_face_name): Function comment fix.
Gerd Moellmann <gerd@gnu.org>
parents:
33529
diff
changeset
|
2961 face text properties; Ediff uses that). If FACE_NAME is an alias |
eb4affa4abc6
(lface_from_face_name): Function comment fix.
Gerd Moellmann <gerd@gnu.org>
parents:
33529
diff
changeset
|
2962 for another face, return that face's definition. If SIGNAL_P is |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2963 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
|
2964 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
|
2965 name. */ |
24995 | 2966 |
2967 static INLINE Lisp_Object | |
2968 lface_from_face_name (f, face_name, signal_p) | |
2969 struct frame *f; | |
2970 Lisp_Object face_name; | |
2971 int signal_p; | |
2972 { | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2973 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2974 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2975 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
|
2976 |
24995 | 2977 if (f) |
2978 lface = assq_no_quit (face_name, f->face_alist); | |
2979 else | |
2980 lface = assq_no_quit (face_name, Vface_new_frame_defaults); | |
2981 | |
2982 if (CONSP (lface)) | |
2983 lface = XCDR (lface); | |
2984 else if (signal_p) | |
2985 signal_error ("Invalid face", face_name); | |
2986 | |
2987 check_lface (lface); | |
2988 return lface; | |
2989 } | |
2990 | |
2991 | |
2992 /* Get face attributes of face FACE_NAME from frame-local faces on | |
2993 frame F. Store the resulting attributes in ATTRS which must point | |
2994 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P | |
2995 is non-zero, signal an error if FACE_NAME does not name a face. | |
2996 Otherwise, value is zero if FACE_NAME is not a face. */ | |
2997 | |
2998 static INLINE int | |
2999 get_lface_attributes (f, face_name, attrs, signal_p) | |
3000 struct frame *f; | |
3001 Lisp_Object face_name; | |
3002 Lisp_Object *attrs; | |
3003 int signal_p; | |
3004 { | |
3005 Lisp_Object lface; | |
3006 int success_p; | |
3007 | |
3008 lface = lface_from_face_name (f, face_name, signal_p); | |
3009 if (!NILP (lface)) | |
3010 { | |
3011 bcopy (XVECTOR (lface)->contents, attrs, | |
3012 LFACE_VECTOR_SIZE * sizeof *attrs); | |
3013 success_p = 1; | |
3014 } | |
3015 else | |
3016 success_p = 0; | |
3017 | |
3018 return success_p; | |
3019 } | |
3020 | |
3021 | |
3022 /* Non-zero if all attributes in face attribute vector ATTRS are | |
3023 specified, i.e. are non-nil. */ | |
3024 | |
3025 static int | |
3026 lface_fully_specified_p (attrs) | |
3027 Lisp_Object *attrs; | |
3028 { | |
3029 int i; | |
3030 | |
3031 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
|
3032 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
|
3033 if (UNSPECIFIEDP (attrs[i])) |
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
3034 break; |
24995 | 3035 |
3036 return i == LFACE_VECTOR_SIZE; | |
3037 } | |
3038 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3039 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3040 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3041 /* 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
|
3042 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
|
3043 unspecified attributes of LFACE. The exception is `font' |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3044 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
|
3045 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3046 If FONTNAME is not available on frame F, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3047 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
|
3048 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
|
3049 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
|
3050 in LFACE and return 1. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3051 Otherwise, return 1. */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3052 |
24995 | 3053 static int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3054 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
|
3055 struct frame *f; |
24995 | 3056 Lisp_Object lface; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3057 Lisp_Object fontname; |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3058 int force_p, may_fail_p; |
24995 | 3059 { |
3060 struct font_name font; | |
3061 char *buffer; | |
3062 int pt; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3063 int have_xlfd_p; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3064 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3065 char *font_name = XSTRING (fontname)->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3066 struct font_info *font_info; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3067 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3068 /* 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
|
3069 fontset = fs_query_fontset (fontname, 0); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3070 if (fontset >= 0) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3071 font_name = XSTRING (fontset_ascii (fontset))->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3072 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3073 /* 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
|
3074 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
|
3075 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
|
3076 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
|
3077 later. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3078 BLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3079 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
|
3080 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3081 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3082 if (!font_info) |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3083 { |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3084 if (may_fail_p) |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
3085 return 0; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3086 abort (); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3087 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3088 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3089 font.name = STRDUPA (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3090 have_xlfd_p = split_font_name (f, &font, 1); |
24995 | 3091 |
3092 /* 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
|
3093 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
|
3094 name conforming to XLFD, set normal values. */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3095 |
24995 | 3096 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface))) |
3097 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3098 Lisp_Object val; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3099 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3100 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3101 buffer = (char *) alloca (strlen (font.fields[XLFD_FAMILY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3102 + strlen (font.fields[XLFD_FOUNDRY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3103 + 2); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3104 sprintf (buffer, "%s-%s", font.fields[XLFD_FOUNDRY], |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3105 font.fields[XLFD_FAMILY]); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3106 val = build_string (buffer); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3107 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3108 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3109 val = build_string ("*"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3110 LFACE_FAMILY (lface) = val; |
24995 | 3111 } |
3112 | |
3113 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface))) | |
3114 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3115 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3116 pt = xlfd_point_size (f, &font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3117 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3118 pt = pixel_point_size (f, font_info->height * 10); |
24995 | 3119 xassert (pt > 0); |
3120 LFACE_HEIGHT (lface) = make_number (pt); | |
3121 } | |
3122 | |
3123 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3124 LFACE_SWIDTH (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3125 = have_xlfd_p ? xlfd_symbolic_swidth (&font) : Qnormal; |
24995 | 3126 |
3127 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3128 LFACE_WEIGHT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3129 = have_xlfd_p ? xlfd_symbolic_weight (&font) : Qnormal; |
24995 | 3130 |
3131 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3132 LFACE_SLANT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3133 = have_xlfd_p ? xlfd_symbolic_slant (&font) : Qnormal; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3134 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3135 LFACE_FONT (lface) = fontname; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3136 |
24995 | 3137 return 1; |
3138 } | |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
3139 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3140 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3141 |
3142 | |
31178 | 3143 /* Merges the face height FROM with the face height TO, and returns the |
3144 merged height. If FROM is an invalid height, then INVALID is | |
3145 returned instead. FROM may be a either an absolute face height or a | |
3146 `relative' height, and TO must be an absolute height. The returned | |
3147 value is always an absolute height. GCPRO is a lisp value that will | |
3148 be protected from garbage-collection if this function makes a call | |
3149 into lisp. */ | |
3150 | |
3151 Lisp_Object | |
3152 merge_face_heights (from, to, invalid, gcpro) | |
3153 Lisp_Object from, to, invalid, gcpro; | |
3154 { | |
3155 int result = 0; | |
3156 | |
3157 if (INTEGERP (from)) | |
3158 result = XINT (from); | |
3159 else if (NUMBERP (from)) | |
3160 result = XFLOATINT (from) * XINT (to); | |
3161 #if 0 /* Probably not so useful. */ | |
3162 else if (CONSP (from) && CONSP (XCDR (from))) | |
3163 { | |
3164 if (EQ (XCAR(from), Qplus) || EQ (XCAR(from), Qminus)) | |
3165 { | |
3166 if (INTEGERP (XCAR (XCDR (from)))) | |
3167 { | |
3168 int inc = XINT (XCAR (XCDR (from))); | |
3169 if (EQ (XCAR (from), Qminus)) | |
3170 inc = -inc; | |
3171 | |
3172 result = XFASTINT (to); | |
3173 if (result + inc > 0) | |
3174 /* Note that `underflows' don't mean FROM is invalid, so | |
3175 we just pin the result at TO if it would otherwise be | |
3176 negative or 0. */ | |
3177 result += inc; | |
3178 } | |
3179 } | |
3180 } | |
3181 #endif | |
3182 else if (FUNCTIONP (from)) | |
3183 { | |
3184 /* Call function with current height as argument. | |
3185 From is the new height. */ | |
3186 Lisp_Object args[2], height; | |
3187 struct gcpro gcpro1; | |
3188 | |
3189 GCPRO1 (gcpro); | |
3190 | |
3191 args[0] = from; | |
3192 args[1] = to; | |
32176
01156edaa3f9
(merge_face_heights): Use safe_call instead of
Gerd Moellmann <gerd@gnu.org>
parents:
31940
diff
changeset
|
3193 height = safe_call (2, args); |
31178 | 3194 |
3195 UNGCPRO; | |
3196 | |
3197 if (NUMBERP (height)) | |
3198 result = XFLOATINT (height); | |
3199 } | |
3200 | |
3201 if (result > 0) | |
3202 return make_number (result); | |
3203 else | |
3204 return invalid; | |
3205 } | |
3206 | |
3207 | |
3208 /* 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
|
3209 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
|
3210 completely specified and contain only absolute attributes. Every |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3211 specified attribute of FROM overrides the corresponding attribute of |
2be1770112c1
(default_face_vector): New function.
Miles Bader <miles@gnu.org>
parents:
31221
diff
changeset
|
3212 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
|
3213 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
|
3214 face inheritance; it should be Qnil when called from other places. */ |
24995 | 3215 |
3216 static INLINE void | |
31178 | 3217 merge_face_vectors (f, from, to, cycle_check) |
3218 struct frame *f; | |
24995 | 3219 Lisp_Object *from, *to; |
31178 | 3220 Lisp_Object cycle_check; |
24995 | 3221 { |
3222 int i; | |
31178 | 3223 |
3224 /* If FROM inherits from some other faces, merge their attributes into | |
3225 TO before merging FROM's direct attributes. Note that an :inherit | |
3226 attribute of `unspecified' is the same as one of nil; we never | |
3227 merge :inherit attributes, so nil is more correct, but lots of | |
3228 other code uses `unspecified' as a generic value for face attributes. */ | |
3229 if (!UNSPECIFIEDP (from[LFACE_INHERIT_INDEX]) | |
3230 && !NILP (from[LFACE_INHERIT_INDEX])) | |
3231 merge_face_inheritance (f, from[LFACE_INHERIT_INDEX], to, cycle_check); | |
3232 | |
31221 | 3233 /* If TO specifies a :font attribute, and FROM specifies some |
3234 font-related attribute, we need to clear TO's :font attribute | |
3235 (because it will be inconsistent with whatever FROM specifies, and | |
3236 FROM takes precedence). */ | |
3237 if (!NILP (to[LFACE_FONT_INDEX]) | |
3238 && (!UNSPECIFIEDP (from[LFACE_FAMILY_INDEX]) | |
3239 || !UNSPECIFIEDP (from[LFACE_HEIGHT_INDEX]) | |
3240 || !UNSPECIFIEDP (from[LFACE_WEIGHT_INDEX]) | |
3241 || !UNSPECIFIEDP (from[LFACE_SLANT_INDEX]) | |
3242 || !UNSPECIFIEDP (from[LFACE_SWIDTH_INDEX]))) | |
3243 to[LFACE_FONT_INDEX] = Qnil; | |
3244 | |
24995 | 3245 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) |
3246 if (!UNSPECIFIEDP (from[i])) | |
31178 | 3247 if (i == LFACE_HEIGHT_INDEX && !INTEGERP (from[i])) |
3248 to[i] = merge_face_heights (from[i], to[i], to[i], cycle_check); | |
3249 else | |
3250 to[i] = from[i]; | |
3251 | |
3252 /* TO is always an absolute face, which should inherit from nothing. | |
3253 We blindly copy the :inherit attribute above and fix it up here. */ | |
3254 to[LFACE_INHERIT_INDEX] = Qnil; | |
3255 } | |
3256 | |
31202
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
3257 |
31178 | 3258 /* Checks the `cycle check' variable CHECK to see if it indicates that |
3259 EL is part of a cycle; CHECK must be either Qnil or a value returned | |
3260 by an earlier use of CYCLE_CHECK. SUSPICIOUS is the number of | |
3261 elements after which a cycle might be suspected; after that many | |
3262 elements, this macro begins consing in order to keep more precise | |
3263 track of elements. | |
3264 | |
3265 Returns NIL if a cycle was detected, otherwise a new value for CHECK | |
3266 that includes EL. | |
3267 | |
3268 CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so | |
3269 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
|
3270 |
31522
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3271 #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
|
3272 (NILP (check) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3273 ? make_number (0) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3274 : (INTEGERP (check) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3275 ? (XFASTINT (check) < (suspicious) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3276 ? make_number (XFASTINT (check) + 1) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3277 : Fcons (el, Qnil)) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3278 : (!NILP (Fmemq ((el), (check))) \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3279 ? Qnil \ |
7ba4ef0eac8d
(CYCLE_CHECK): Don't use the Lisp_Object returned
Gerd Moellmann <gerd@gnu.org>
parents:
31519
diff
changeset
|
3280 : Fcons ((el), (check))))) |
31178 | 3281 |
31221 | 3282 |
3283 /* Merge face attributes from the face on frame F whose name is | |
3284 INHERITS, into the vector of face attributes TO; INHERITS may also be | |
3285 a list of face names, in which case they are applied in order. | |
3286 CYCLE_CHECK is used to detect loops in face inheritance. | |
3287 Returns true if any of the inherited attributes are `font-related'. */ | |
3288 | |
31178 | 3289 static void |
3290 merge_face_inheritance (f, inherit, to, cycle_check) | |
3291 struct frame *f; | |
3292 Lisp_Object inherit; | |
3293 Lisp_Object *to; | |
3294 Lisp_Object cycle_check; | |
3295 { | |
3296 if (SYMBOLP (inherit) && !EQ (inherit, Qunspecified)) | |
3297 /* Inherit from the named face INHERIT. */ | |
3298 { | |
3299 Lisp_Object lface; | |
3300 | |
3301 /* Make sure we're not in an inheritance loop. */ | |
3302 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15); | |
3303 if (NILP (cycle_check)) | |
3304 /* Cycle detected, ignore any further inheritance. */ | |
3305 return; | |
3306 | |
3307 lface = lface_from_face_name (f, inherit, 0); | |
3308 if (!NILP (lface)) | |
3309 merge_face_vectors (f, XVECTOR (lface)->contents, to, cycle_check); | |
3310 } | |
3311 else if (CONSP (inherit)) | |
3312 /* Handle a list of inherited faces by calling ourselves recursively | |
3313 on each element. Note that we only do so for symbol elements, so | |
3314 it's not possible to infinitely recurse. */ | |
3315 { | |
3316 while (CONSP (inherit)) | |
3317 { | |
3318 if (SYMBOLP (XCAR (inherit))) | |
3319 merge_face_inheritance (f, XCAR (inherit), to, cycle_check); | |
3320 | |
3321 /* Check for a circular inheritance list. */ | |
3322 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15); | |
3323 if (NILP (cycle_check)) | |
3324 /* Cycle detected. */ | |
3325 break; | |
3326 | |
3327 inherit = XCDR (inherit); | |
3328 } | |
3329 } | |
24995 | 3330 } |
3331 | |
3332 | |
3333 /* Given a Lisp face attribute vector TO and a Lisp object PROP that | |
3334 is a face property, determine the resulting face attributes on | |
3335 frame F, and store them in TO. PROP may be a single face | |
3336 specification or a list of such specifications. Each face | |
3337 specification can be | |
3338 | |
3339 1. A symbol or string naming a Lisp face. | |
3340 | |
3341 2. A property list of the form (KEYWORD VALUE ...) where each | |
3342 KEYWORD is a face attribute name, and value is an appropriate value | |
3343 for that attribute. | |
3344 | |
3345 3. Conses or the form (FOREGROUND-COLOR . COLOR) or | |
3346 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is | |
3347 for compatibility with 20.2. | |
3348 | |
3349 Face specifications earlier in lists take precedence over later | |
3350 specifications. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3351 |
24995 | 3352 static void |
3353 merge_face_vector_with_property (f, to, prop) | |
3354 struct frame *f; | |
3355 Lisp_Object *to; | |
3356 Lisp_Object prop; | |
3357 { | |
3358 if (CONSP (prop)) | |
3359 { | |
3360 Lisp_Object first = XCAR (prop); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3361 |
24995 | 3362 if (EQ (first, Qforeground_color) |
3363 || EQ (first, Qbackground_color)) | |
3364 { | |
3365 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR | |
3366 . COLOR). COLOR must be a string. */ | |
3367 Lisp_Object color_name = XCDR (prop); | |
3368 Lisp_Object color = first; | |
3369 | |
3370 if (STRINGP (color_name)) | |
3371 { | |
3372 if (EQ (color, Qforeground_color)) | |
3373 to[LFACE_FOREGROUND_INDEX] = color_name; | |
3374 else | |
3375 to[LFACE_BACKGROUND_INDEX] = color_name; | |
3376 } | |
3377 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3378 add_to_log ("Invalid face color", color_name, Qnil); |
24995 | 3379 } |
3380 else if (SYMBOLP (first) | |
3381 && *XSYMBOL (first)->name->data == ':') | |
3382 { | |
3383 /* Assume this is the property list form. */ | |
3384 while (CONSP (prop) && CONSP (XCDR (prop))) | |
3385 { | |
3386 Lisp_Object keyword = XCAR (prop); | |
3387 Lisp_Object value = XCAR (XCDR (prop)); | |
3388 | |
3389 if (EQ (keyword, QCfamily)) | |
3390 { | |
3391 if (STRINGP (value)) | |
3392 to[LFACE_FAMILY_INDEX] = value; | |
3393 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3394 add_to_log ("Invalid face font family", value, Qnil); |
24995 | 3395 } |
3396 else if (EQ (keyword, QCheight)) | |
3397 { | |
31178 | 3398 Lisp_Object new_height = |
3399 merge_face_heights (value, to[LFACE_HEIGHT_INDEX], | |
3400 Qnil, Qnil); | |
3401 | |
3402 if (NILP (new_height)) | |
3403 add_to_log ("Invalid face font height", value, Qnil); | |
24995 | 3404 else |
31178 | 3405 to[LFACE_HEIGHT_INDEX] = new_height; |
24995 | 3406 } |
3407 else if (EQ (keyword, QCweight)) | |
3408 { | |
3409 if (SYMBOLP (value) | |
3410 && face_numeric_weight (value) >= 0) | |
3411 to[LFACE_WEIGHT_INDEX] = value; | |
3412 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3413 add_to_log ("Invalid face weight", value, Qnil); |
24995 | 3414 } |
3415 else if (EQ (keyword, QCslant)) | |
3416 { | |
3417 if (SYMBOLP (value) | |
3418 && face_numeric_slant (value) >= 0) | |
3419 to[LFACE_SLANT_INDEX] = value; | |
3420 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3421 add_to_log ("Invalid face slant", value, Qnil); |
24995 | 3422 } |
3423 else if (EQ (keyword, QCunderline)) | |
3424 { | |
3425 if (EQ (value, Qt) | |
3426 || NILP (value) | |
3427 || STRINGP (value)) | |
3428 to[LFACE_UNDERLINE_INDEX] = value; | |
3429 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3430 add_to_log ("Invalid face underline", value, Qnil); |
24995 | 3431 } |
3432 else if (EQ (keyword, QCoverline)) | |
3433 { | |
3434 if (EQ (value, Qt) | |
3435 || NILP (value) | |
3436 || STRINGP (value)) | |
3437 to[LFACE_OVERLINE_INDEX] = value; | |
3438 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3439 add_to_log ("Invalid face overline", value, Qnil); |
24995 | 3440 } |
3441 else if (EQ (keyword, QCstrike_through)) | |
3442 { | |
3443 if (EQ (value, Qt) | |
3444 || NILP (value) | |
3445 || STRINGP (value)) | |
3446 to[LFACE_STRIKE_THROUGH_INDEX] = value; | |
3447 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3448 add_to_log ("Invalid face strike-through", value, Qnil); |
24995 | 3449 } |
3450 else if (EQ (keyword, QCbox)) | |
3451 { | |
3452 if (EQ (value, Qt)) | |
3453 value = make_number (1); | |
3454 if (INTEGERP (value) | |
3455 || STRINGP (value) | |
3456 || CONSP (value) | |
3457 || NILP (value)) | |
3458 to[LFACE_BOX_INDEX] = value; | |
3459 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3460 add_to_log ("Invalid face box", value, Qnil); |
24995 | 3461 } |
3462 else if (EQ (keyword, QCinverse_video) | |
3463 || EQ (keyword, QCreverse_video)) | |
3464 { | |
3465 if (EQ (value, Qt) || NILP (value)) | |
3466 to[LFACE_INVERSE_INDEX] = value; | |
3467 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3468 add_to_log ("Invalid face inverse-video", value, Qnil); |
24995 | 3469 } |
3470 else if (EQ (keyword, QCforeground)) | |
3471 { | |
3472 if (STRINGP (value)) | |
3473 to[LFACE_FOREGROUND_INDEX] = value; | |
3474 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3475 add_to_log ("Invalid face foreground", value, Qnil); |
24995 | 3476 } |
3477 else if (EQ (keyword, QCbackground)) | |
3478 { | |
3479 if (STRINGP (value)) | |
3480 to[LFACE_BACKGROUND_INDEX] = value; | |
3481 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3482 add_to_log ("Invalid face background", value, Qnil); |
24995 | 3483 } |
3484 else if (EQ (keyword, QCstipple)) | |
3485 { | |
3486 #ifdef HAVE_X_WINDOWS | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3487 Lisp_Object pixmap_p = Fbitmap_spec_p (value); |
24995 | 3488 if (!NILP (pixmap_p)) |
3489 to[LFACE_STIPPLE_INDEX] = value; | |
3490 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3491 add_to_log ("Invalid face stipple", value, Qnil); |
24995 | 3492 #endif |
3493 } | |
3494 else if (EQ (keyword, QCwidth)) | |
3495 { | |
3496 if (SYMBOLP (value) | |
3497 && face_numeric_swidth (value) >= 0) | |
3498 to[LFACE_SWIDTH_INDEX] = value; | |
3499 else | |
30601
7c995a54a0e8
Replace `illegal' with `invalid'.
Gerd Moellmann <gerd@gnu.org>
parents:
30304
diff
changeset
|
3500 add_to_log ("Invalid face width", value, Qnil); |
24995 | 3501 } |
31178 | 3502 else if (EQ (keyword, QCinherit)) |
3503 { | |
3504 if (SYMBOLP (value)) | |
3505 to[LFACE_INHERIT_INDEX] = value; | |
3506 else | |
3507 { | |
3508 Lisp_Object tail; | |
3509 for (tail = value; CONSP (tail); tail = XCDR (tail)) | |
3510 if (!SYMBOLP (XCAR (tail))) | |
3511 break; | |
3512 if (NILP (tail)) | |
3513 to[LFACE_INHERIT_INDEX] = value; | |
3514 else | |
3515 add_to_log ("Invalid face inherit", value, Qnil); | |
3516 } | |
3517 } | |
24995 | 3518 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3519 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
|
3520 keyword, Qnil); |
24995 | 3521 |
3522 prop = XCDR (XCDR (prop)); | |
3523 } | |
3524 } | |
3525 else | |
3526 { | |
3527 /* This is a list of face specs. Specifications at the | |
3528 beginning of the list take precedence over later | |
3529 specifications, so we have to merge starting with the | |
3530 last specification. */ | |
3531 Lisp_Object next = XCDR (prop); | |
3532 if (!NILP (next)) | |
3533 merge_face_vector_with_property (f, to, next); | |
3534 merge_face_vector_with_property (f, to, first); | |
3535 } | |
3536 } | |
3537 else | |
3538 { | |
3539 /* PROP ought to be a face name. */ | |
3540 Lisp_Object lface = lface_from_face_name (f, prop, 0); | |
3541 if (NILP (lface)) | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3542 add_to_log ("Invalid face text property value: %s", prop, Qnil); |
24995 | 3543 else |
31178 | 3544 merge_face_vectors (f, XVECTOR (lface)->contents, to, Qnil); |
24995 | 3545 } |
3546 } | |
3547 | |
3548 | |
3549 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face, | |
3550 Sinternal_make_lisp_face, 1, 2, 0, | |
3551 "Make FACE, a symbol, a Lisp face with all attributes nil.\n\ | |
3552 If FACE was not known as a face before, create a new one.\n\ | |
3553 If optional argument FRAME is specified, make a frame-local face\n\ | |
3554 for that frame. Otherwise operate on the global face definition.\n\ | |
3555 Value is a vector of face attributes.") | |
3556 (face, frame) | |
3557 Lisp_Object face, frame; | |
3558 { | |
3559 Lisp_Object global_lface, lface; | |
3560 struct frame *f; | |
3561 int i; | |
3562 | |
3563 CHECK_SYMBOL (face, 0); | |
3564 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
|
3565 |
24995 | 3566 if (!NILP (frame)) |
3567 { | |
3568 CHECK_LIVE_FRAME (frame, 1); | |
3569 f = XFRAME (frame); | |
3570 lface = lface_from_face_name (f, face, 0); | |
3571 } | |
3572 else | |
3573 f = NULL, lface = Qnil; | |
3574 | |
3575 /* Add a global definition if there is none. */ | |
3576 if (NILP (global_lface)) | |
3577 { | |
3578 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3579 Qunspecified); | |
3580 XVECTOR (global_lface)->contents[0] = Qface; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3581 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface), |
24995 | 3582 Vface_new_frame_defaults); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3583 |
24995 | 3584 /* Assign the new Lisp face a unique ID. The mapping from Lisp |
3585 face id to Lisp face is given by the vector lface_id_to_name. | |
3586 The mapping from Lisp face to Lisp face id is given by the | |
3587 property `face' of the Lisp face name. */ | |
3588 if (next_lface_id == lface_id_to_name_size) | |
3589 { | |
3590 int new_size = max (50, 2 * lface_id_to_name_size); | |
3591 int sz = new_size * sizeof *lface_id_to_name; | |
3592 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz); | |
3593 lface_id_to_name_size = new_size; | |
3594 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3595 |
24995 | 3596 lface_id_to_name[next_lface_id] = face; |
3597 Fput (face, Qface, make_number (next_lface_id)); | |
3598 ++next_lface_id; | |
3599 } | |
3600 else if (f == NULL) | |
3601 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3602 XVECTOR (global_lface)->contents[i] = Qunspecified; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3603 |
24995 | 3604 /* Add a frame-local definition. */ |
3605 if (f) | |
3606 { | |
3607 if (NILP (lface)) | |
3608 { | |
3609 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3610 Qunspecified); | |
3611 XVECTOR (lface)->contents[0] = Qface; | |
3612 f->face_alist = Fcons (Fcons (face, lface), f->face_alist); | |
3613 } | |
3614 else | |
3615 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3616 XVECTOR (lface)->contents[i] = Qunspecified; | |
3617 } | |
3618 else | |
3619 lface = global_lface; | |
3620 | |
3621 xassert (LFACEP (lface)); | |
3622 check_lface (lface); | |
3623 return lface; | |
3624 } | |
3625 | |
3626 | |
3627 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p, | |
3628 Sinternal_lisp_face_p, 1, 2, 0, | |
3629 "Return non-nil if FACE names a face.\n\ | |
3630 If optional second parameter FRAME is non-nil, check for the\n\ | |
3631 existence of a frame-local face with name FACE on that frame.\n\ | |
3632 Otherwise check for the existence of a global face.") | |
3633 (face, frame) | |
3634 Lisp_Object face, frame; | |
3635 { | |
3636 Lisp_Object lface; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3637 |
24995 | 3638 if (!NILP (frame)) |
3639 { | |
3640 CHECK_LIVE_FRAME (frame, 1); | |
3641 lface = lface_from_face_name (XFRAME (frame), face, 0); | |
3642 } | |
3643 else | |
3644 lface = lface_from_face_name (NULL, face, 0); | |
3645 | |
3646 return lface; | |
3647 } | |
3648 | |
3649 | |
3650 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face, | |
3651 Sinternal_copy_lisp_face, 4, 4, 0, | |
3652 "Copy face FROM to TO.\n\ | |
3653 If FRAME it t, copy the global face definition of FROM to the\n\ | |
3654 global face definition of TO. Otherwise, copy the frame-local\n\ | |
3655 definition of FROM on FRAME to the frame-local definition of TO\n\ | |
3656 on NEW-FRAME, or FRAME if NEW-FRAME is nil.\n\ | |
3657 \n\ | |
3658 Value is TO.") | |
3659 (from, to, frame, new_frame) | |
3660 Lisp_Object from, to, frame, new_frame; | |
3661 { | |
3662 Lisp_Object lface, copy; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3663 |
24995 | 3664 CHECK_SYMBOL (from, 0); |
3665 CHECK_SYMBOL (to, 1); | |
3666 if (NILP (new_frame)) | |
3667 new_frame = frame; | |
3668 | |
3669 if (EQ (frame, Qt)) | |
3670 { | |
3671 /* Copy global definition of FROM. We don't make copies of | |
3672 strings etc. because 20.2 didn't do it either. */ | |
3673 lface = lface_from_face_name (NULL, from, 1); | |
3674 copy = Finternal_make_lisp_face (to, Qnil); | |
3675 } | |
3676 else | |
3677 { | |
3678 /* Copy frame-local definition of FROM. */ | |
3679 CHECK_LIVE_FRAME (frame, 2); | |
3680 CHECK_LIVE_FRAME (new_frame, 3); | |
3681 lface = lface_from_face_name (XFRAME (frame), from, 1); | |
3682 copy = Finternal_make_lisp_face (to, new_frame); | |
3683 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3684 |
24995 | 3685 bcopy (XVECTOR (lface)->contents, XVECTOR (copy)->contents, |
3686 LFACE_VECTOR_SIZE * sizeof (Lisp_Object)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3687 |
24995 | 3688 return to; |
3689 } | |
3690 | |
3691 | |
3692 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute, | |
3693 Sinternal_set_lisp_face_attribute, 3, 4, 0, | |
3694 "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
|
3695 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
|
3696 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
|
3697 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
|
3698 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
|
3699 for new frames.") |
24995 | 3700 (face, attr, value, frame) |
3701 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
|
3702 { |
24995 | 3703 Lisp_Object lface; |
3704 Lisp_Object old_value = Qnil; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3705 /* Set 1 if ATTR is QCfont. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3706 int font_attr_p = 0; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3707 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */ |
24995 | 3708 int font_related_attr_p = 0; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3709 |
24995 | 3710 CHECK_SYMBOL (face, 0); |
3711 CHECK_SYMBOL (attr, 1); | |
3712 | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3713 face = resolve_face_name (face); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3714 |
31440
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3715 /* 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
|
3716 default for new frames. */ |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3717 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
|
3718 { |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3719 Lisp_Object tail; |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
3720 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
|
3721 FOR_EACH_FRAME (tail, frame) |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3722 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
|
3723 return face; |
31440
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3724 } |
67f5b4186ed2
(Finternal_set_lisp_face_attribute): If FRAME is 0,
Gerd Moellmann <gerd@gnu.org>
parents:
31292
diff
changeset
|
3725 |
24995 | 3726 /* Set lface to the Lisp attribute vector of FACE. */ |
3727 if (EQ (frame, Qt)) | |
3728 lface = lface_from_face_name (NULL, face, 1); | |
3729 else | |
3730 { | |
3731 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3732 frame = selected_frame; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3733 |
24995 | 3734 CHECK_LIVE_FRAME (frame, 3); |
3735 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
|
3736 |
24995 | 3737 /* If a frame-local face doesn't exist yet, create one. */ |
3738 if (NILP (lface)) | |
3739 lface = Finternal_make_lisp_face (face, frame); | |
3740 } | |
3741 | |
3742 if (EQ (attr, QCfamily)) | |
3743 { | |
3744 if (!UNSPECIFIEDP (value)) | |
3745 { | |
3746 CHECK_STRING (value, 3); | |
3747 if (XSTRING (value)->size == 0) | |
3748 signal_error ("Invalid face family", value); | |
3749 } | |
3750 old_value = LFACE_FAMILY (lface); | |
3751 LFACE_FAMILY (lface) = value; | |
3752 font_related_attr_p = 1; | |
3753 } | |
3754 else if (EQ (attr, QCheight)) | |
3755 { | |
3756 if (!UNSPECIFIEDP (value)) | |
3757 { | |
31519
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3758 Lisp_Object test = |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3759 (EQ (face, Qdefault) ? value : |
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
3760 /* 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
|
3761 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
|
3762 merge_face_heights (value, make_number(10), Qnil, Qnil)); |
31178 | 3763 |
3764 if (!INTEGERP(test) || XINT(test) <= 0) | |
24995 | 3765 signal_error ("Invalid face height", value); |
3766 } | |
31178 | 3767 |
24995 | 3768 old_value = LFACE_HEIGHT (lface); |
3769 LFACE_HEIGHT (lface) = value; | |
3770 font_related_attr_p = 1; | |
3771 } | |
3772 else if (EQ (attr, QCweight)) | |
3773 { | |
3774 if (!UNSPECIFIEDP (value)) | |
3775 { | |
3776 CHECK_SYMBOL (value, 3); | |
3777 if (face_numeric_weight (value) < 0) | |
3778 signal_error ("Invalid face weight", value); | |
3779 } | |
3780 old_value = LFACE_WEIGHT (lface); | |
3781 LFACE_WEIGHT (lface) = value; | |
3782 font_related_attr_p = 1; | |
3783 } | |
3784 else if (EQ (attr, QCslant)) | |
3785 { | |
3786 if (!UNSPECIFIEDP (value)) | |
3787 { | |
3788 CHECK_SYMBOL (value, 3); | |
3789 if (face_numeric_slant (value) < 0) | |
3790 signal_error ("Invalid face slant", value); | |
3791 } | |
3792 old_value = LFACE_SLANT (lface); | |
3793 LFACE_SLANT (lface) = value; | |
3794 font_related_attr_p = 1; | |
3795 } | |
3796 else if (EQ (attr, QCunderline)) | |
3797 { | |
3798 if (!UNSPECIFIEDP (value)) | |
3799 if ((SYMBOLP (value) | |
3800 && !EQ (value, Qt) | |
3801 && !EQ (value, Qnil)) | |
3802 /* Underline color. */ | |
3803 || (STRINGP (value) | |
3804 && XSTRING (value)->size == 0)) | |
3805 signal_error ("Invalid face underline", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3806 |
24995 | 3807 old_value = LFACE_UNDERLINE (lface); |
3808 LFACE_UNDERLINE (lface) = value; | |
3809 } | |
3810 else if (EQ (attr, QCoverline)) | |
3811 { | |
3812 if (!UNSPECIFIEDP (value)) | |
3813 if ((SYMBOLP (value) | |
3814 && !EQ (value, Qt) | |
3815 && !EQ (value, Qnil)) | |
3816 /* Overline color. */ | |
3817 || (STRINGP (value) | |
3818 && XSTRING (value)->size == 0)) | |
3819 signal_error ("Invalid face overline", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3820 |
24995 | 3821 old_value = LFACE_OVERLINE (lface); |
3822 LFACE_OVERLINE (lface) = value; | |
3823 } | |
3824 else if (EQ (attr, QCstrike_through)) | |
3825 { | |
3826 if (!UNSPECIFIEDP (value)) | |
3827 if ((SYMBOLP (value) | |
3828 && !EQ (value, Qt) | |
3829 && !EQ (value, Qnil)) | |
3830 /* Strike-through color. */ | |
3831 || (STRINGP (value) | |
3832 && XSTRING (value)->size == 0)) | |
3833 signal_error ("Invalid face strike-through", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3834 |
24995 | 3835 old_value = LFACE_STRIKE_THROUGH (lface); |
3836 LFACE_STRIKE_THROUGH (lface) = value; | |
3837 } | |
3838 else if (EQ (attr, QCbox)) | |
3839 { | |
3840 int valid_p; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3841 |
24995 | 3842 /* Allow t meaning a simple box of width 1 in foreground color |
3843 of the face. */ | |
3844 if (EQ (value, Qt)) | |
3845 value = make_number (1); | |
3846 | |
3847 if (UNSPECIFIEDP (value)) | |
3848 valid_p = 1; | |
3849 else if (NILP (value)) | |
3850 valid_p = 1; | |
3851 else if (INTEGERP (value)) | |
3852 valid_p = XINT (value) > 0; | |
3853 else if (STRINGP (value)) | |
3854 valid_p = XSTRING (value)->size > 0; | |
3855 else if (CONSP (value)) | |
3856 { | |
3857 Lisp_Object tem; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3858 |
24995 | 3859 tem = value; |
3860 while (CONSP (tem)) | |
3861 { | |
3862 Lisp_Object k, v; | |
3863 | |
3864 k = XCAR (tem); | |
3865 tem = XCDR (tem); | |
3866 if (!CONSP (tem)) | |
3867 break; | |
3868 v = XCAR (tem); | |
3869 tem = XCDR (tem); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3870 |
24995 | 3871 if (EQ (k, QCline_width)) |
3872 { | |
3873 if (!INTEGERP (v) || XINT (v) <= 0) | |
3874 break; | |
3875 } | |
3876 else if (EQ (k, QCcolor)) | |
3877 { | |
3878 if (!STRINGP (v) || XSTRING (v)->size == 0) | |
3879 break; | |
3880 } | |
3881 else if (EQ (k, QCstyle)) | |
3882 { | |
3883 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button)) | |
3884 break; | |
3885 } | |
3886 else | |
3887 break; | |
3888 } | |
3889 | |
3890 valid_p = NILP (tem); | |
3891 } | |
3892 else | |
3893 valid_p = 0; | |
3894 | |
3895 if (!valid_p) | |
3896 signal_error ("Invalid face box", value); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3897 |
24995 | 3898 old_value = LFACE_BOX (lface); |
3899 LFACE_BOX (lface) = value; | |
3900 } | |
3901 else if (EQ (attr, QCinverse_video) | |
3902 || EQ (attr, QCreverse_video)) | |
3903 { | |
3904 if (!UNSPECIFIEDP (value)) | |
3905 { | |
3906 CHECK_SYMBOL (value, 3); | |
3907 if (!EQ (value, Qt) && !NILP (value)) | |
3908 signal_error ("Invalid inverse-video face attribute value", value); | |
3909 } | |
3910 old_value = LFACE_INVERSE (lface); | |
3911 LFACE_INVERSE (lface) = value; | |
3912 } | |
3913 else if (EQ (attr, QCforeground)) | |
3914 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3915 if (!UNSPECIFIEDP (value)) |
24995 | 3916 { |
3917 /* Don't check for valid color names here because it depends | |
3918 on the frame (display) whether the color will be valid | |
3919 when the face is realized. */ | |
3920 CHECK_STRING (value, 3); | |
3921 if (XSTRING (value)->size == 0) | |
3922 signal_error ("Empty foreground color value", value); | |
3923 } | |
3924 old_value = LFACE_FOREGROUND (lface); | |
3925 LFACE_FOREGROUND (lface) = value; | |
3926 } | |
3927 else if (EQ (attr, QCbackground)) | |
3928 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3929 if (!UNSPECIFIEDP (value)) |
24995 | 3930 { |
3931 /* Don't check for valid color names here because it depends | |
3932 on the frame (display) whether the color will be valid | |
3933 when the face is realized. */ | |
3934 CHECK_STRING (value, 3); | |
3935 if (XSTRING (value)->size == 0) | |
3936 signal_error ("Empty background color value", value); | |
3937 } | |
3938 old_value = LFACE_BACKGROUND (lface); | |
3939 LFACE_BACKGROUND (lface) = value; | |
3940 } | |
3941 else if (EQ (attr, QCstipple)) | |
3942 { | |
3943 #ifdef HAVE_X_WINDOWS | |
3944 if (!UNSPECIFIEDP (value) | |
3945 && !NILP (value) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3946 && NILP (Fbitmap_spec_p (value))) |
24995 | 3947 signal_error ("Invalid stipple attribute", value); |
3948 old_value = LFACE_STIPPLE (lface); | |
3949 LFACE_STIPPLE (lface) = value; | |
3950 #endif /* HAVE_X_WINDOWS */ | |
3951 } | |
3952 else if (EQ (attr, QCwidth)) | |
3953 { | |
3954 if (!UNSPECIFIEDP (value)) | |
3955 { | |
3956 CHECK_SYMBOL (value, 3); | |
3957 if (face_numeric_swidth (value) < 0) | |
3958 signal_error ("Invalid face width", value); | |
3959 } | |
3960 old_value = LFACE_SWIDTH (lface); | |
3961 LFACE_SWIDTH (lface) = value; | |
3962 font_related_attr_p = 1; | |
3963 } | |
3964 else if (EQ (attr, QCfont)) | |
3965 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3966 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3967 /* Set font-related attributes of the Lisp face from an |
3968 XLFD font name. */ | |
3969 struct frame *f; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3970 Lisp_Object tmp; |
24995 | 3971 |
3972 CHECK_STRING (value, 3); | |
3973 if (EQ (frame, Qt)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3974 f = SELECTED_FRAME (); |
24995 | 3975 else |
3976 f = check_x_frame (frame); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
3977 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3978 /* 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
|
3979 a case, use the base fontset name. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3980 tmp = Fquery_fontset (value, Qnil); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3981 if (!NILP (tmp)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3982 value = tmp; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3983 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3984 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
|
3985 signal_error ("Invalid font or fontset name", value); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3986 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3987 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
|
3988 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3989 } |
31178 | 3990 else if (EQ (attr, QCinherit)) |
3991 { | |
3992 Lisp_Object tail; | |
3993 if (SYMBOLP (value)) | |
3994 tail = Qnil; | |
3995 else | |
3996 for (tail = value; CONSP (tail); tail = XCDR (tail)) | |
3997 if (!SYMBOLP (XCAR (tail))) | |
3998 break; | |
3999 if (NILP (tail)) | |
4000 LFACE_INHERIT (lface) = value; | |
4001 else | |
31202
1733db535955
(lface_fully_specified_p): Handle :inherit.
Gerd Moellmann <gerd@gnu.org>
parents:
31178
diff
changeset
|
4002 signal_error ("Invalid face inheritance", value); |
31178 | 4003 } |
24995 | 4004 else if (EQ (attr, QCbold)) |
4005 { | |
4006 old_value = LFACE_WEIGHT (lface); | |
4007 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold; | |
4008 font_related_attr_p = 1; | |
4009 } | |
4010 else if (EQ (attr, QCitalic)) | |
4011 { | |
4012 old_value = LFACE_SLANT (lface); | |
4013 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic; | |
4014 font_related_attr_p = 1; | |
4015 } | |
4016 else | |
4017 signal_error ("Invalid face attribute name", attr); | |
4018 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4019 if (font_related_attr_p |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4020 && !UNSPECIFIEDP (value)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4021 /* 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
|
4022 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
|
4023 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
|
4024 selection mechanism doesn't use it. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4025 LFACE_FONT (lface) = Qnil; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4026 |
24995 | 4027 /* Changing a named face means that all realized faces depending on |
4028 that face are invalid. Since we cannot tell which realized faces | |
4029 depend on the face, make sure they are all removed. This is done | |
4030 by incrementing face_change_count. The next call to | |
4031 init_iterator will then free realized faces. */ | |
4032 if (!EQ (frame, Qt) | |
4033 && (EQ (attr, QCfont) | |
4034 || NILP (Fequal (old_value, value)))) | |
4035 { | |
4036 ++face_change_count; | |
4037 ++windows_or_buffers_changed; | |
4038 } | |
4039 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4040 #ifdef HAVE_WINDOW_SYSTEM |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4041 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4042 if (!EQ (frame, Qt) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4043 && !UNSPECIFIEDP (value) |
24995 | 4044 && NILP (Fequal (old_value, value))) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4045 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4046 Lisp_Object param; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4047 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4048 param = Qnil; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4049 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4050 if (EQ (face, Qdefault)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4051 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4052 /* 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
|
4053 reflected in changed `font' frame parameters. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4054 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
|
4055 && lface_fully_specified_p (XVECTOR (lface)->contents)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4056 set_font_frame_param (frame, lface); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4057 else if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4058 param = Qforeground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4059 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4060 param = Qbackground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4061 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4062 #ifndef WINDOWSNT |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4063 else if (EQ (face, Qscroll_bar)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4064 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4065 /* 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
|
4066 `scroll-bar-foreground' and `scroll-bar-background'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4067 if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4068 param = Qscroll_bar_foreground; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4069 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4070 param = Qscroll_bar_background; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4071 } |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
4072 #endif /* not WINDOWSNT */ |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4073 else if (EQ (face, Qborder)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4074 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4075 /* Changing background color of `border' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4076 `border-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4077 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4078 param = Qborder_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4079 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4080 else if (EQ (face, Qcursor)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4081 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4082 /* Changing background color of `cursor' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4083 `cursor-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4084 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4085 param = Qcursor_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4086 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4087 else if (EQ (face, Qmouse)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4088 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4089 /* Changing background color of `mouse' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4090 `mouse-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4091 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4092 param = Qmouse_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4093 } |
33082
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
4094 else if (EQ (face, Qmenu)) |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
4095 ++menu_face_change_count; |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4096 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4097 if (!NILP (param)) |
31449
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4098 { |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4099 Lisp_Object cons; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4100 cons = XCAR (Vparam_value_alist); |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4101 XCAR (cons) = param; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4102 XCDR (cons) = value; |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4103 Fmodify_frame_parameters (frame, Vparam_value_alist); |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
4104 } |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4105 } |
24995 | 4106 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4107 #endif /* HAVE_WINDOW_SYSTEM */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4108 |
24995 | 4109 return face; |
4110 } | |
4111 | |
4112 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4113 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4114 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4115 /* 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
|
4116 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
|
4117 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
|
4118 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
|
4119 there's no matching font, signals an error. */ |
24995 | 4120 |
4121 static void | |
4122 set_font_frame_param (frame, lface) | |
4123 Lisp_Object frame, lface; | |
4124 { | |
4125 struct frame *f = XFRAME (frame); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4126 Lisp_Object font_name; |
24995 | 4127 char *font; |
4128 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4129 if (STRINGP (LFACE_FONT (lface))) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4130 font_name = LFACE_FONT (lface); |
24995 | 4131 else |
4132 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4133 /* 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
|
4134 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
|
4135 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
|
4136 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
|
4137 if (!font) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4138 error ("No font matches the specified attribute"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4139 font_name = build_string (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4140 xfree (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4141 } |
31292
b176433657cc
(set_font_frame_param): Use Fmodify_frame_parameters
Gerd Moellmann <gerd@gnu.org>
parents:
31259
diff
changeset
|
4142 |
b176433657cc
(set_font_frame_param): Use Fmodify_frame_parameters
Gerd Moellmann <gerd@gnu.org>
parents:
31259
diff
changeset
|
4143 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font_name), Qnil)); |
24995 | 4144 } |
4145 | |
4146 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4147 /* 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
|
4148 has been assigned the value NEW_VALUE. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4149 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4150 void |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4151 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
|
4152 struct frame *f; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4153 Lisp_Object param, new_value; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4154 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4155 Lisp_Object lface; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4156 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4157 /* 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
|
4158 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
|
4159 face-set-after-frame-defaults. */ |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4160 if (NILP (f->face_alist)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4161 return; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4162 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4163 if (EQ (param, Qforeground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4164 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4165 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4166 LFACE_FOREGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4167 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4168 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4169 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4170 else if (EQ (param, Qbackground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4171 { |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4172 Lisp_Object frame; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4173 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4174 /* 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
|
4175 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
|
4176 frame-update-face-colors to do that. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4177 XSETFRAME (frame, f); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
4178 call1 (Qframe_update_face_colors, frame); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4179 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4180 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4181 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4182 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4183 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4184 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4185 if (EQ (param, Qborder_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4186 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4187 lface = lface_from_face_name (f, Qborder, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4188 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4189 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4190 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4191 else if (EQ (param, Qcursor_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4192 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4193 lface = lface_from_face_name (f, Qcursor, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4194 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4195 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4196 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4197 else if (EQ (param, Qmouse_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4198 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4199 lface = lface_from_face_name (f, Qmouse, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4200 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4201 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4202 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4203 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4204 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
4205 |
24995 | 4206 /* Get the value of X resource RESOURCE, class CLASS for the display |
4207 of frame FRAME. This is here because ordinary `x-get-resource' | |
4208 doesn't take a frame argument. */ | |
4209 | |
4210 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource, | |
4211 Sinternal_face_x_get_resource, 3, 3, 0, "") | |
4212 (resource, class, frame) | |
4213 Lisp_Object resource, class, frame; | |
4214 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4215 Lisp_Object value = Qnil; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4216 #ifndef WINDOWSNT |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
4217 #ifndef macintosh |
24995 | 4218 CHECK_STRING (resource, 0); |
4219 CHECK_STRING (class, 1); | |
4220 CHECK_LIVE_FRAME (frame, 2); | |
4221 BLOCK_INPUT; | |
4222 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)), | |
4223 resource, class, Qnil, Qnil); | |
4224 UNBLOCK_INPUT; | |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
4225 #endif /* not macintosh */ |
31570
9eeff4863080
Remove conditional compilation on SCALABLE_FONTS.
Gerd Moellmann <gerd@gnu.org>
parents:
31522
diff
changeset
|
4226 #endif /* not WINDOWSNT */ |
24995 | 4227 return value; |
4228 } | |
4229 | |
4230 | |
4231 /* Return resource string VALUE as a boolean value, i.e. nil, or t. | |
4232 If VALUE is "on" or "true", return t. If VALUE is "off" or | |
4233 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an | |
4234 error; if SIGNAL_P is zero, return 0. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4235 |
24995 | 4236 static Lisp_Object |
4237 face_boolean_x_resource_value (value, signal_p) | |
4238 Lisp_Object value; | |
4239 int signal_p; | |
4240 { | |
4241 Lisp_Object result = make_number (0); | |
4242 | |
4243 xassert (STRINGP (value)); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4244 |
24995 | 4245 if (xstricmp (XSTRING (value)->data, "on") == 0 |
4246 || xstricmp (XSTRING (value)->data, "true") == 0) | |
4247 result = Qt; | |
4248 else if (xstricmp (XSTRING (value)->data, "off") == 0 | |
4249 || xstricmp (XSTRING (value)->data, "false") == 0) | |
4250 result = Qnil; | |
4251 else if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
4252 result = Qunspecified; | |
4253 else if (signal_p) | |
4254 signal_error ("Invalid face attribute value from X resource", value); | |
4255 | |
4256 return result; | |
4257 } | |
4258 | |
4259 | |
4260 DEFUN ("internal-set-lisp-face-attribute-from-resource", | |
4261 Finternal_set_lisp_face_attribute_from_resource, | |
4262 Sinternal_set_lisp_face_attribute_from_resource, | |
4263 3, 4, 0, "") | |
4264 (face, attr, value, frame) | |
4265 Lisp_Object face, attr, value, frame; | |
4266 { | |
4267 CHECK_SYMBOL (face, 0); | |
4268 CHECK_SYMBOL (attr, 1); | |
4269 CHECK_STRING (value, 2); | |
4270 | |
4271 if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
4272 value = Qunspecified; | |
4273 else if (EQ (attr, QCheight)) | |
4274 { | |
4275 value = Fstring_to_number (value, make_number (10)); | |
4276 if (XINT (value) <= 0) | |
4277 signal_error ("Invalid face height from X resource", value); | |
4278 } | |
4279 else if (EQ (attr, QCbold) || EQ (attr, QCitalic)) | |
4280 value = face_boolean_x_resource_value (value, 1); | |
4281 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth)) | |
4282 value = intern (XSTRING (value)->data); | |
4283 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video)) | |
4284 value = face_boolean_x_resource_value (value, 1); | |
4285 else if (EQ (attr, QCunderline) | |
4286 || EQ (attr, QCoverline) | |
4287 || EQ (attr, QCstrike_through) | |
4288 || EQ (attr, QCbox)) | |
4289 { | |
4290 Lisp_Object boolean_value; | |
4291 | |
4292 /* If the result of face_boolean_x_resource_value is t or nil, | |
4293 VALUE does NOT specify a color. */ | |
4294 boolean_value = face_boolean_x_resource_value (value, 0); | |
4295 if (SYMBOLP (boolean_value)) | |
4296 value = boolean_value; | |
4297 } | |
4298 | |
4299 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
|
4300 } |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4301 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4302 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4303 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4304 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4305 #ifdef HAVE_X_WINDOWS |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4306 /*********************************************************************** |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4307 Menu face |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4308 ***********************************************************************/ |
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 #ifdef USE_X_TOOLKIT |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4311 |
29897
cd1bb44e646d
Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not HAVE_X_WINDOWS.
Dave Love <fx@gnu.org>
parents:
29768
diff
changeset
|
4312 #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
|
4313 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4314 /* 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
|
4315 XtApplyToWidgets. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4316 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4317 struct x_resources |
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 Arg *av; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4320 int ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4321 }; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4322 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4323 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4324 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4325 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4326 static void xm_apply_resources P_ ((Widget, XtPointer)); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4327 static void 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
|
4328 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4329 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4330 /* Set widget W's 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
|
4331 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
|
4332 submenu. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4333 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4334 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4335 xm_apply_resources (w, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4336 Widget w; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4337 XtPointer p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4338 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4339 Widget submenu = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4340 struct x_resources *res = (struct x_resources *) p; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4341 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4342 XtSetValues (w, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4343 XtVaGetValues (w, XmNsubMenuId, &submenu, NULL); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4344 if (submenu) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4345 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4346 XtSetValues (submenu, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4347 XtApplyToWidgets (submenu, xm_apply_resources, p); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4348 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4349 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4350 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4351 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4352 /* 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
|
4353 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
|
4354 following problems: |
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 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
|
4357 somewhere in LessTif. */ |
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 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4360 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
|
4361 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4362 Widget 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 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4365 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4366 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4367 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4368 XmFontList fl = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4369 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4370 lface = lface_from_face_name (f, Qmenu, 1); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4371 face = FACE_FROM_ID (f, MENU_FACE_ID); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4372 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4373 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4374 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4375 XtSetArg (av[ac], XmNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4376 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4377 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4378 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4379 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4380 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4381 XtSetArg (av[ac], XmNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4382 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4383 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4384 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4385 /* If 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
|
4386 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4387 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4388 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4389 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4390 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4391 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4392 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4393 #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
|
4394 in LessTif during geometry computation. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4395 XmFontListEntry fe; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4396 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
|
4397 fl = XmFontListAppendEntry (NULL, fe); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4398 XtSetArg (av[ac], XmNfontList, fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4399 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4400 #endif |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4403 xassert (ac <= sizeof av / sizeof *av); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4404 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4405 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4406 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4407 struct x_resources res; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4408 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4409 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4410 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4411 XtApplyToWidgets (widget, xm_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4412 if (fl) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4413 XmFontListFree (fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4414 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4415 } |
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 #endif /* USE_MOTIF */ |
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 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4420 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4421 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
|
4422 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
|
4423 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4424 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4425 /* 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
|
4426 structure. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4427 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4428 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4429 xl_apply_resources (widget, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4430 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4431 XtPointer p; |
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 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
|
4434 XtSetValues (widget, res->av, res->ac); |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4437 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4438 /* 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
|
4439 This is the Lucid version. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4440 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4441 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4442 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
|
4443 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4444 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4445 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4446 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4447 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4448 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4449 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4450 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4451 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
|
4452 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
|
4453 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4454 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4455 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4456 XtSetArg (av[ac], XtNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4457 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4458 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4459 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4460 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4461 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4462 XtSetArg (av[ac], XtNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4463 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4464 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4465 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4466 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4467 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4468 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4469 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4470 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4471 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4472 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4473 XtSetArg (av[ac], XtNfont, face->font); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4474 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4475 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4476 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4477 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4478 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4479 struct x_resources res; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4480 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4481 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4482 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4483 /* 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
|
4484 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
|
4485 is a function from lwlib. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4486 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4487 XtApplyToWidgets (widget, xl_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4488 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4489 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4490 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4491 #endif /* USE_LUCID */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4492 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4493 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4494 /* 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
|
4495 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4496 void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4497 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
|
4498 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4499 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4500 { |
26759
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4501 /* 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
|
4502 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
|
4503 will need the `menu' face. */ |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4504 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
|
4505 recompute_basic_faces (f); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4506 |
33082
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
4507 BLOCK_INPUT; |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4508 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4509 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
|
4510 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4511 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4512 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
|
4513 #endif |
33082
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
4514 UNBLOCK_INPUT; |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4515 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4516 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4517 #endif /* USE_X_TOOLKIT */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4518 |
24995 | 4519 #endif /* HAVE_X_WINDOWS */ |
4520 | |
4521 | |
4522 | |
4523 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute, | |
4524 Sinternal_get_lisp_face_attribute, | |
4525 2, 3, 0, | |
4526 "Return face attribute KEYWORD of face SYMBOL.\n\ | |
4527 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid\n\ | |
4528 face attribute name, signal an error.\n\ | |
4529 If the optional argument FRAME is given, report on face FACE in that\n\ | |
4530 frame. If FRAME is t, report on the defaults for face FACE (for new\n\ | |
4531 frames). If FRAME is omitted or nil, use the selected frame.") | |
4532 (symbol, keyword, frame) | |
4533 Lisp_Object symbol, keyword, frame; | |
4534 { | |
4535 Lisp_Object lface, value = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4536 |
24995 | 4537 CHECK_SYMBOL (symbol, 0); |
4538 CHECK_SYMBOL (keyword, 1); | |
4539 | |
4540 if (EQ (frame, Qt)) | |
4541 lface = lface_from_face_name (NULL, symbol, 1); | |
4542 else | |
4543 { | |
4544 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4545 frame = selected_frame; |
24995 | 4546 CHECK_LIVE_FRAME (frame, 2); |
4547 lface = lface_from_face_name (XFRAME (frame), symbol, 1); | |
4548 } | |
4549 | |
4550 if (EQ (keyword, QCfamily)) | |
4551 value = LFACE_FAMILY (lface); | |
4552 else if (EQ (keyword, QCheight)) | |
4553 value = LFACE_HEIGHT (lface); | |
4554 else if (EQ (keyword, QCweight)) | |
4555 value = LFACE_WEIGHT (lface); | |
4556 else if (EQ (keyword, QCslant)) | |
4557 value = LFACE_SLANT (lface); | |
4558 else if (EQ (keyword, QCunderline)) | |
4559 value = LFACE_UNDERLINE (lface); | |
4560 else if (EQ (keyword, QCoverline)) | |
4561 value = LFACE_OVERLINE (lface); | |
4562 else if (EQ (keyword, QCstrike_through)) | |
4563 value = LFACE_STRIKE_THROUGH (lface); | |
4564 else if (EQ (keyword, QCbox)) | |
4565 value = LFACE_BOX (lface); | |
4566 else if (EQ (keyword, QCinverse_video) | |
4567 || EQ (keyword, QCreverse_video)) | |
4568 value = LFACE_INVERSE (lface); | |
4569 else if (EQ (keyword, QCforeground)) | |
4570 value = LFACE_FOREGROUND (lface); | |
4571 else if (EQ (keyword, QCbackground)) | |
4572 value = LFACE_BACKGROUND (lface); | |
4573 else if (EQ (keyword, QCstipple)) | |
4574 value = LFACE_STIPPLE (lface); | |
4575 else if (EQ (keyword, QCwidth)) | |
4576 value = LFACE_SWIDTH (lface); | |
31178 | 4577 else if (EQ (keyword, QCinherit)) |
4578 value = LFACE_INHERIT (lface); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4579 else if (EQ (keyword, QCfont)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4580 value = LFACE_FONT (lface); |
24995 | 4581 else |
4582 signal_error ("Invalid face attribute name", keyword); | |
4583 | |
4584 return value; | |
4585 } | |
4586 | |
4587 | |
4588 DEFUN ("internal-lisp-face-attribute-values", | |
4589 Finternal_lisp_face_attribute_values, | |
4590 Sinternal_lisp_face_attribute_values, 1, 1, 0, | |
4591 "Return a list of valid discrete values for face attribute ATTR.\n\ | |
4592 Value is nil if ATTR doesn't have a discrete set of valid values.") | |
4593 (attr) | |
4594 Lisp_Object attr; | |
4595 { | |
4596 Lisp_Object result = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4597 |
24995 | 4598 CHECK_SYMBOL (attr, 0); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4599 |
24995 | 4600 if (EQ (attr, QCweight) |
4601 || EQ (attr, QCslant) | |
4602 || EQ (attr, QCwidth)) | |
4603 { | |
4604 /* Extract permissible symbols from tables. */ | |
4605 struct table_entry *table; | |
4606 int i, dim; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4607 |
24995 | 4608 if (EQ (attr, QCweight)) |
4609 table = weight_table, dim = DIM (weight_table); | |
4610 else if (EQ (attr, QCslant)) | |
4611 table = slant_table, dim = DIM (slant_table); | |
4612 else | |
4613 table = swidth_table, dim = DIM (swidth_table); | |
4614 | |
4615 for (i = 0; i < dim; ++i) | |
4616 { | |
4617 Lisp_Object symbol = *table[i].symbol; | |
4618 Lisp_Object tail = result; | |
4619 | |
4620 while (!NILP (tail) | |
4621 && !EQ (XCAR (tail), symbol)) | |
4622 tail = XCDR (tail); | |
4623 | |
4624 if (NILP (tail)) | |
4625 result = Fcons (symbol, result); | |
4626 } | |
4627 } | |
4628 else if (EQ (attr, QCunderline)) | |
4629 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4630 else if (EQ (attr, QCoverline)) | |
4631 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4632 else if (EQ (attr, QCstrike_through)) | |
4633 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4634 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video)) | |
4635 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4636 | |
4637 return result; | |
4638 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4639 |
24995 | 4640 |
4641 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
|
4642 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
|
4643 "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
|
4644 Default face attributes override any local face attributes.") |
24995 | 4645 (face, frame) |
4646 Lisp_Object face, frame; | |
4647 { | |
31483
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4648 int i; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4649 Lisp_Object global_lface, local_lface, *gvec, *lvec; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4650 |
24995 | 4651 CHECK_LIVE_FRAME (frame, 1); |
4652 global_lface = lface_from_face_name (NULL, face, 1); | |
4653 local_lface = lface_from_face_name (XFRAME (frame), face, 0); | |
4654 if (NILP (local_lface)) | |
4655 local_lface = Finternal_make_lisp_face (face, frame); | |
31483
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4656 |
31519
5a14247e8e26
(Finternal_set_lisp_face_attribute): Minor thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31518
diff
changeset
|
4657 /* 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
|
4658 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
|
4659 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
|
4660 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
|
4661 "global before local" priority. */ |
31483
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4662 lvec = XVECTOR (local_lface)->contents; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4663 gvec = XVECTOR (global_lface)->contents; |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4664 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4665 if (! UNSPECIFIEDP (gvec[i])) |
5ef4cd475781
(default_face_vector): Function removed.
Miles Bader <miles@gnu.org>
parents:
31463
diff
changeset
|
4666 lvec[i] = gvec[i]; |
31507
ac6d049932e9
(Finternal_merge_in_global_face): Return a Lisp object.
Gerd Moellmann <gerd@gnu.org>
parents:
31483
diff
changeset
|
4667 |
ac6d049932e9
(Finternal_merge_in_global_face): Return a Lisp object.
Gerd Moellmann <gerd@gnu.org>
parents:
31483
diff
changeset
|
4668 return Qnil; |
24995 | 4669 } |
4670 | |
4671 | |
4672 /* The following function is implemented for compatibility with 20.2. | |
4673 The function is used in x-resolve-fonts when it is asked to | |
4674 return fonts with the same size as the font of a face. This is | |
4675 done in fontset.el. */ | |
4676 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4677 DEFUN ("face-font", Fface_font, Sface_font, 1, 2, 0, |
24995 | 4678 "Return the font name of face FACE, or nil if it is unspecified.\n\ |
4679 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4680 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4681 The font default for a face is either nil, or a list\n\ | |
4682 of the form (bold), (italic) or (bold italic).\n\ | |
4683 If FRAME is omitted or nil, use the selected frame.") | |
4684 (face, frame) | |
4685 Lisp_Object face, frame; | |
4686 { | |
4687 if (EQ (frame, Qt)) | |
4688 { | |
4689 Lisp_Object result = Qnil; | |
4690 Lisp_Object lface = lface_from_face_name (NULL, face, 1); | |
4691 | |
4692 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface)) | |
4693 && !EQ (LFACE_WEIGHT (lface), Qnormal)) | |
4694 result = Fcons (Qbold, result); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4695 |
24995 | 4696 if (!NILP (LFACE_SLANT (lface)) |
4697 && !EQ (LFACE_SLANT (lface), Qnormal)) | |
4698 result = Fcons (Qitalic, result); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4699 |
24995 | 4700 return result; |
4701 } | |
4702 else | |
4703 { | |
4704 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
|
4705 int face_id = lookup_named_face (f, face, 0); |
24995 | 4706 struct face *face = FACE_FROM_ID (f, face_id); |
33275
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
4707 return face ? build_string (face->font_name) : Qnil; |
24995 | 4708 } |
4709 } | |
4710 | |
4711 | |
4712 /* Compare face vectors V1 and V2 for equality. Value is non-zero if | |
4713 all attributes are `equal'. Tries to be fast because this function | |
4714 is called quite often. */ | |
4715 | |
4716 static INLINE int | |
4717 lface_equal_p (v1, v2) | |
4718 Lisp_Object *v1, *v2; | |
4719 { | |
4720 int i, equal_p = 1; | |
4721 | |
4722 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i) | |
4723 { | |
4724 Lisp_Object a = v1[i]; | |
4725 Lisp_Object b = v2[i]; | |
4726 | |
4727 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil, | |
4728 and the other is specified. */ | |
4729 equal_p = XTYPE (a) == XTYPE (b); | |
4730 if (!equal_p) | |
4731 break; | |
4732 | |
4733 if (!EQ (a, b)) | |
4734 { | |
4735 switch (XTYPE (a)) | |
4736 { | |
4737 case Lisp_String: | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4738 equal_p = ((STRING_BYTES (XSTRING (a)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4739 == STRING_BYTES (XSTRING (b))) |
24995 | 4740 && bcmp (XSTRING (a)->data, XSTRING (b)->data, |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
4741 STRING_BYTES (XSTRING (a))) == 0); |
24995 | 4742 break; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4743 |
24995 | 4744 case Lisp_Int: |
4745 case Lisp_Symbol: | |
4746 equal_p = 0; | |
4747 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4748 |
24995 | 4749 default: |
4750 equal_p = !NILP (Fequal (a, b)); | |
4751 break; | |
4752 } | |
4753 } | |
4754 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4755 |
24995 | 4756 return equal_p; |
4757 } | |
4758 | |
4759 | |
4760 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p, | |
4761 Sinternal_lisp_face_equal_p, 2, 3, 0, | |
4762 "True if FACE1 and FACE2 are equal.\n\ | |
4763 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4764 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4765 If FRAME is omitted or nil, use the selected frame.") | |
4766 (face1, face2, frame) | |
4767 Lisp_Object face1, face2, frame; | |
4768 { | |
4769 int equal_p; | |
4770 struct frame *f; | |
4771 Lisp_Object lface1, lface2; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4772 |
24995 | 4773 if (EQ (frame, Qt)) |
4774 f = NULL; | |
4775 else | |
4776 /* Don't use check_x_frame here because this function is called | |
4777 before X frames exist. At that time, if FRAME is nil, | |
4778 selected_frame will be used which is the frame dumped with | |
4779 Emacs. That frame is not an X frame. */ | |
4780 f = frame_or_selected_frame (frame, 2); | |
4781 | |
4782 lface1 = lface_from_face_name (NULL, face1, 1); | |
4783 lface2 = lface_from_face_name (NULL, face2, 1); | |
4784 equal_p = lface_equal_p (XVECTOR (lface1)->contents, | |
4785 XVECTOR (lface2)->contents); | |
4786 return equal_p ? Qt : Qnil; | |
4787 } | |
4788 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4789 |
24995 | 4790 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p, |
4791 Sinternal_lisp_face_empty_p, 1, 2, 0, | |
4792 "True if FACE has no attribute specified.\n\ | |
4793 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4794 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4795 If FRAME is omitted or nil, use the selected frame.") | |
4796 (face, frame) | |
4797 Lisp_Object face, frame; | |
4798 { | |
4799 struct frame *f; | |
4800 Lisp_Object lface; | |
4801 int i; | |
4802 | |
4803 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4804 frame = selected_frame; |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4805 CHECK_LIVE_FRAME (frame, 0); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4806 f = XFRAME (frame); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4807 |
24995 | 4808 if (EQ (frame, Qt)) |
4809 lface = lface_from_face_name (NULL, face, 1); | |
4810 else | |
4811 lface = lface_from_face_name (f, face, 1); | |
4812 | |
4813 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
4814 if (!UNSPECIFIEDP (XVECTOR (lface)->contents[i])) | |
4815 break; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4816 |
24995 | 4817 return i == LFACE_VECTOR_SIZE ? Qt : Qnil; |
4818 } | |
4819 | |
4820 | |
4821 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
|
4822 0, 1, 0, |
24995 | 4823 "Return an alist of frame-local faces defined on FRAME.\n\ |
4824 For internal use only.") | |
4825 (frame) | |
4826 Lisp_Object frame; | |
4827 { | |
4828 struct frame *f = frame_or_selected_frame (frame, 0); | |
4829 return f->face_alist; | |
4830 } | |
4831 | |
4832 | |
4833 /* Return a hash code for Lisp string STRING with case ignored. Used | |
4834 below in computing a hash value for a Lisp face. */ | |
4835 | |
4836 static INLINE unsigned | |
4837 hash_string_case_insensitive (string) | |
4838 Lisp_Object string; | |
4839 { | |
4840 unsigned char *s; | |
4841 unsigned hash = 0; | |
4842 xassert (STRINGP (string)); | |
4843 for (s = XSTRING (string)->data; *s; ++s) | |
4844 hash = (hash << 1) ^ tolower (*s); | |
4845 return hash; | |
4846 } | |
4847 | |
4848 | |
4849 /* Return a hash code for face attribute vector V. */ | |
4850 | |
4851 static INLINE unsigned | |
4852 lface_hash (v) | |
4853 Lisp_Object *v; | |
4854 { | |
4855 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX]) | |
4856 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX]) | |
4857 ^ 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
|
4858 ^ 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
|
4859 ^ 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
|
4860 ^ XFASTINT (v[LFACE_SWIDTH_INDEX]) |
24995 | 4861 ^ XFASTINT (v[LFACE_HEIGHT_INDEX])); |
4862 } | |
4863 | |
4864 | |
4865 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without | |
4866 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
|
4867 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
|
4868 and LFACE2 must be fully-specified. */ |
24995 | 4869 |
4870 static INLINE int | |
4871 lface_same_font_attributes_p (lface1, lface2) | |
4872 Lisp_Object *lface1, *lface2; | |
4873 { | |
4874 xassert (lface_fully_specified_p (lface1) | |
4875 && lface_fully_specified_p (lface2)); | |
4876 return (xstricmp (XSTRING (lface1[LFACE_FAMILY_INDEX])->data, | |
4877 XSTRING (lface2[LFACE_FAMILY_INDEX])->data) == 0 | |
31178 | 4878 && EQ (lface1[LFACE_HEIGHT_INDEX], lface2[LFACE_HEIGHT_INDEX]) |
24995 | 4879 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX]) |
4880 && 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
|
4881 && 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
|
4882 && (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
|
4883 || (STRINGP (lface1[LFACE_FONT_INDEX]) |
28263
73181b84ea57
(lface_same_font_attributes_p): Compare font attributes
Gerd Moellmann <gerd@gnu.org>
parents:
28237
diff
changeset
|
4884 && STRINGP (lface2[LFACE_FONT_INDEX]) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4885 && xstricmp (XSTRING (lface1[LFACE_FONT_INDEX])->data, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4886 XSTRING (lface2[LFACE_FONT_INDEX])->data)))); |
24995 | 4887 } |
4888 | |
4889 | |
4890 | |
4891 /*********************************************************************** | |
4892 Realized Faces | |
4893 ***********************************************************************/ | |
4894 | |
4895 /* 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
|
4896 vector ATTR. */ |
24995 | 4897 |
4898 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4899 make_realized_face (attr) |
24995 | 4900 Lisp_Object *attr; |
4901 { | |
4902 struct face *face = (struct face *) xmalloc (sizeof *face); | |
4903 bzero (face, sizeof *face); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4904 face->ascii_face = face; |
24995 | 4905 bcopy (attr, face->lface, sizeof face->lface); |
4906 return face; | |
4907 } | |
4908 | |
4909 | |
4910 /* Free realized face FACE, including its X resources. FACE may | |
4911 be null. */ | |
4912 | |
4913 static void | |
4914 free_realized_face (f, face) | |
4915 struct frame *f; | |
4916 struct face *face; | |
4917 { | |
4918 if (face) | |
4919 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4920 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4921 if (FRAME_WINDOW_P (f)) |
24995 | 4922 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4923 /* 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
|
4924 if (face->fontset >= 0 && face == face->ascii_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4925 free_face_fontset (f, face); |
24995 | 4926 if (face->gc) |
4927 { | |
4928 x_free_gc (f, face->gc); | |
4929 face->gc = 0; | |
4930 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4931 |
24995 | 4932 free_face_colors (f, face); |
4933 x_destroy_bitmap (f, face->stipple); | |
4934 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4935 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4936 |
4937 xfree (face); | |
4938 } | |
4939 } | |
4940 | |
4941 | |
4942 /* Prepare face FACE for subsequent display on frame F. This | |
4943 allocated GCs if they haven't been allocated yet or have been freed | |
4944 by clearing the face cache. */ | |
4945 | |
4946 void | |
4947 prepare_face_for_display (f, face) | |
4948 struct frame *f; | |
4949 struct face *face; | |
4950 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4951 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4952 xassert (FRAME_WINDOW_P (f)); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
4953 |
24995 | 4954 if (face->gc == 0) |
4955 { | |
4956 XGCValues xgcv; | |
4957 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures; | |
4958 | |
4959 xgcv.foreground = face->foreground; | |
4960 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
|
4961 #ifdef HAVE_X_WINDOWS |
24995 | 4962 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
|
4963 #endif |
24995 | 4964 /* The font of FACE may be null if we couldn't load it. */ |
4965 if (face->font) | |
4966 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4967 #ifdef HAVE_X_WINDOWS |
24995 | 4968 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
|
4969 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4970 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4971 xgcv.font = face->font; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4972 #endif |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
4973 #ifdef macintosh |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
4974 xgcv.font = face->font; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
4975 #endif |
24995 | 4976 mask |= GCFont; |
4977 } | |
4978 | |
4979 BLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4980 #ifdef HAVE_X_WINDOWS |
24995 | 4981 if (face->stipple) |
4982 { | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
4983 xgcv.fill_style = FillOpaqueStippled; |
24995 | 4984 xgcv.stipple = x_bitmap_pixmap (f, face->stipple); |
4985 mask |= GCFillStyle | GCStipple; | |
4986 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4987 #endif |
24995 | 4988 face->gc = x_create_gc (f, mask, &xgcv); |
4989 UNBLOCK_INPUT; | |
4990 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4991 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4992 } |
4993 | |
4994 | |
4995 /*********************************************************************** | |
4996 Face Cache | |
4997 ***********************************************************************/ | |
4998 | |
4999 /* Return a new face cache for frame F. */ | |
5000 | |
5001 static struct face_cache * | |
5002 make_face_cache (f) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5003 struct frame *f; |
24995 | 5004 { |
5005 struct face_cache *c; | |
5006 int size; | |
5007 | |
5008 c = (struct face_cache *) xmalloc (sizeof *c); | |
5009 bzero (c, sizeof *c); | |
5010 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
5011 c->buckets = (struct face **) xmalloc (size); | |
5012 bzero (c->buckets, size); | |
5013 c->size = 50; | |
5014 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id); | |
5015 c->f = f; | |
5016 return c; | |
5017 } | |
5018 | |
5019 | |
5020 /* Clear out all graphics contexts for all realized faces, except for | |
5021 the basic faces. This should be done from time to time just to avoid | |
5022 keeping too many graphics contexts that are no longer needed. */ | |
5023 | |
5024 static void | |
5025 clear_face_gcs (c) | |
5026 struct face_cache *c; | |
5027 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5028 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
|
5029 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5030 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5031 int i; |
5032 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i) | |
5033 { | |
5034 struct face *face = c->faces_by_id[i]; | |
5035 if (face && face->gc) | |
5036 { | |
5037 x_free_gc (c->f, face->gc); | |
5038 face->gc = 0; | |
5039 } | |
5040 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5041 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5042 } |
5043 } | |
5044 | |
5045 | |
5046 /* Free all realized faces in face cache C, including basic faces. C | |
5047 may be null. If faces are freed, make sure the frame's current | |
5048 matrix is marked invalid, so that a display caused by an expose | |
5049 event doesn't try to use faces we destroyed. */ | |
5050 | |
5051 static void | |
5052 free_realized_faces (c) | |
5053 struct face_cache *c; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5054 { |
24995 | 5055 if (c && c->used) |
5056 { | |
5057 int i, size; | |
5058 struct frame *f = c->f; | |
5059 | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5060 /* 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
|
5061 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
|
5062 current matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5063 BLOCK_INPUT; |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5064 |
24995 | 5065 for (i = 0; i < c->used; ++i) |
5066 { | |
5067 free_realized_face (f, c->faces_by_id[i]); | |
5068 c->faces_by_id[i] = NULL; | |
5069 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5070 |
24995 | 5071 c->used = 0; |
5072 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
5073 bzero (c->buckets, size); | |
5074 | |
5075 /* Must do a thorough redisplay the next time. Mark current | |
5076 matrices as invalid because they will reference faces freed | |
5077 above. This function is also called when a frame is | |
5078 destroyed. In this case, the root window of F is nil. */ | |
5079 if (WINDOWP (f->root_window)) | |
5080 { | |
5081 clear_current_matrices (f); | |
5082 ++windows_or_buffers_changed; | |
5083 } | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5084 |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5085 UNBLOCK_INPUT; |
24995 | 5086 } |
5087 } | |
5088 | |
5089 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5090 /* 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
|
5091 has FONTSET. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5092 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5093 void |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5094 free_realized_multibyte_face (f, fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5095 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5096 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5097 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5098 struct face_cache *cache = FRAME_FACE_CACHE (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5099 struct face *face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5100 int i; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5101 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5102 /* 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
|
5103 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
|
5104 matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5105 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5106 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5107 for (i = 0; i < cache->used; i++) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5108 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5109 face = cache->faces_by_id[i]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5110 if (face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5111 && face != face->ascii_face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5112 && face->fontset == fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5113 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5114 uncache_face (cache, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5115 free_realized_face (f, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5116 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5117 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5118 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5119 /* 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
|
5120 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
|
5121 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
|
5122 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
|
5123 if (WINDOWP (f->root_window)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5124 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5125 clear_current_matrices (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5126 ++windows_or_buffers_changed; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5127 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5128 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
5129 UNBLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5130 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5131 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5132 |
24995 | 5133 /* Free all realized faces on FRAME or on all frames if FRAME is nil. |
5134 This is done after attributes of a named face have been changed, | |
5135 because we can't tell which realized faces depend on that face. */ | |
5136 | |
5137 void | |
5138 free_all_realized_faces (frame) | |
5139 Lisp_Object frame; | |
5140 { | |
5141 if (NILP (frame)) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5142 { |
24995 | 5143 Lisp_Object rest; |
5144 FOR_EACH_FRAME (rest, frame) | |
5145 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
5146 } | |
5147 else | |
5148 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
5149 } | |
5150 | |
5151 | |
5152 /* Free face cache C and faces in it, including their X resources. */ | |
5153 | |
5154 static void | |
5155 free_face_cache (c) | |
5156 struct face_cache *c; | |
5157 { | |
5158 if (c) | |
5159 { | |
5160 free_realized_faces (c); | |
5161 xfree (c->buckets); | |
5162 xfree (c->faces_by_id); | |
5163 xfree (c); | |
5164 } | |
5165 } | |
5166 | |
5167 | |
5168 /* Cache realized face FACE in face cache C. HASH is the hash value | |
5169 of FACE. If FACE->fontset >= 0, add the new face to the end of the | |
5170 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
|
5171 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
|
5172 faces with the same attributes but for specific characters exist. */ |
24995 | 5173 |
5174 static void | |
5175 cache_face (c, face, hash) | |
5176 struct face_cache *c; | |
5177 struct face *face; | |
5178 unsigned hash; | |
5179 { | |
5180 int i = hash % FACE_CACHE_BUCKETS_SIZE; | |
5181 | |
5182 face->hash = hash; | |
5183 | |
5184 if (face->fontset >= 0) | |
5185 { | |
5186 struct face *last = c->buckets[i]; | |
5187 if (last) | |
5188 { | |
5189 while (last->next) | |
5190 last = last->next; | |
5191 last->next = face; | |
5192 face->prev = last; | |
5193 face->next = NULL; | |
5194 } | |
5195 else | |
5196 { | |
5197 c->buckets[i] = face; | |
5198 face->prev = face->next = NULL; | |
5199 } | |
5200 } | |
5201 else | |
5202 { | |
5203 face->prev = NULL; | |
5204 face->next = c->buckets[i]; | |
5205 if (face->next) | |
5206 face->next->prev = face; | |
5207 c->buckets[i] = face; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5208 } |
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5209 |
24995 | 5210 /* Find a free slot in C->faces_by_id and use the index of the free |
5211 slot as FACE->id. */ | |
5212 for (i = 0; i < c->used; ++i) | |
5213 if (c->faces_by_id[i] == NULL) | |
5214 break; | |
5215 face->id = i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5216 |
24995 | 5217 /* Maybe enlarge C->faces_by_id. */ |
5218 if (i == c->used && c->used == c->size) | |
5219 { | |
5220 int new_size = 2 * c->size; | |
5221 int sz = new_size * sizeof *c->faces_by_id; | |
5222 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz); | |
5223 c->size = new_size; | |
5224 } | |
5225 | |
5226 #if GLYPH_DEBUG | |
5227 /* Check that FACE got a unique id. */ | |
5228 { | |
5229 int j, n; | |
5230 struct face *face; | |
5231 | |
5232 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j) | |
5233 for (face = c->buckets[j]; face; face = face->next) | |
5234 if (face->id == i) | |
5235 ++n; | |
5236 | |
5237 xassert (n == 1); | |
5238 } | |
5239 #endif /* GLYPH_DEBUG */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5240 |
24995 | 5241 c->faces_by_id[i] = face; |
5242 if (i == c->used) | |
5243 ++c->used; | |
5244 } | |
5245 | |
5246 | |
5247 /* Remove face FACE from cache C. */ | |
5248 | |
5249 static void | |
5250 uncache_face (c, face) | |
5251 struct face_cache *c; | |
5252 struct face *face; | |
5253 { | |
5254 int i = face->hash % FACE_CACHE_BUCKETS_SIZE; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5255 |
24995 | 5256 if (face->prev) |
5257 face->prev->next = face->next; | |
5258 else | |
5259 c->buckets[i] = face->next; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5260 |
24995 | 5261 if (face->next) |
5262 face->next->prev = face->prev; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5263 |
24995 | 5264 c->faces_by_id[face->id] = NULL; |
5265 if (face->id == c->used) | |
5266 --c->used; | |
5267 } | |
5268 | |
5269 | |
5270 /* 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
|
5271 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
|
5272 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
|
5273 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
|
5274 is a face that has the same attributes. */ |
24995 | 5275 |
5276 INLINE int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5277 lookup_face (f, attr, c, base_face) |
24995 | 5278 struct frame *f; |
5279 Lisp_Object *attr; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5280 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5281 struct face *base_face; |
24995 | 5282 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5283 struct face_cache *cache = FRAME_FACE_CACHE (f); |
24995 | 5284 unsigned hash; |
5285 int i; | |
5286 struct face *face; | |
5287 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5288 xassert (cache != NULL); |
24995 | 5289 check_lface_attrs (attr); |
5290 | |
5291 /* Look up ATTR in the face cache. */ | |
5292 hash = lface_hash (attr); | |
5293 i = hash % FACE_CACHE_BUCKETS_SIZE; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5294 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5295 for (face = cache->buckets[i]; face; face = face->next) |
24995 | 5296 if (face->hash == hash |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5297 && (!FRAME_WINDOW_P (f) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5298 || FACE_SUITABLE_FOR_CHAR_P (face, c)) |
24995 | 5299 && lface_equal_p (face->lface, attr)) |
5300 break; | |
5301 | |
5302 /* If not found, realize a new face. */ | |
5303 if (face == NULL) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5304 face = realize_face (cache, attr, c, base_face, -1); |
24995 | 5305 |
5306 #if GLYPH_DEBUG | |
5307 xassert (face == FACE_FROM_ID (f, face->id)); | |
28409 | 5308 |
5309 /* When this function is called from face_for_char (in this case, C is | |
5310 a multibyte character), a fontset of a face returned by | |
5311 realize_face is not yet set, i.e. FACE_SUITABLE_FOR_CHAR_P (FACE, | |
5312 C) is not sutisfied. The fontset is set for this face by | |
5313 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
|
5314 #if 0 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5315 if (FRAME_WINDOW_P (f)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5316 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
|
5317 #endif |
24995 | 5318 #endif /* GLYPH_DEBUG */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5319 |
24995 | 5320 return face->id; |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
5321 } |
24995 | 5322 |
5323 | |
5324 /* Return the face id of the realized face for named face SYMBOL on | |
33275
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5325 frame F suitable for displaying character C. Value is -1 if the |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5326 face couldn't be determined, which might happen if the default face |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5327 isn't realized and cannot be realized. */ |
24995 | 5328 |
5329 int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5330 lookup_named_face (f, symbol, c) |
24995 | 5331 struct frame *f; |
5332 Lisp_Object symbol; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5333 int c; |
24995 | 5334 { |
5335 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5336 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
5337 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5338 | |
33275
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5339 if (default_face == NULL) |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5340 { |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5341 if (!realize_basic_faces (f)) |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5342 return -1; |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5343 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5344 } |
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5345 |
24995 | 5346 get_lface_attributes (f, symbol, symbol_attrs, 1); |
5347 bcopy (default_face->lface, attrs, sizeof attrs); | |
31178 | 5348 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
|
5349 return lookup_face (f, attrs, c, NULL); |
24995 | 5350 } |
5351 | |
5352 | |
5353 /* Return the ID of the realized ASCII face of Lisp face with ID | |
5354 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */ | |
5355 | |
5356 int | |
5357 ascii_face_of_lisp_face (f, lface_id) | |
5358 struct frame *f; | |
5359 int lface_id; | |
5360 { | |
5361 int face_id; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5362 |
24995 | 5363 if (lface_id >= 0 && lface_id < lface_id_to_name_size) |
5364 { | |
5365 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
|
5366 face_id = lookup_named_face (f, face_name, 0); |
24995 | 5367 } |
5368 else | |
5369 face_id = -1; | |
5370 | |
5371 return face_id; | |
5372 } | |
5373 | |
5374 | |
5375 /* Return a face for charset ASCII that is like the face with id | |
5376 FACE_ID on frame F, but has a font that is STEPS steps smaller. | |
5377 STEPS < 0 means larger. Value is the id of the face. */ | |
5378 | |
5379 int | |
5380 smaller_face (f, face_id, steps) | |
5381 struct frame *f; | |
5382 int face_id, steps; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5383 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5384 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5385 struct face *face; |
5386 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5387 int pt, last_pt, last_height; | |
5388 int delta; | |
5389 int new_face_id; | |
5390 struct face *new_face; | |
5391 | |
5392 /* If not called for an X frame, just return the original face. */ | |
5393 if (FRAME_TERMCAP_P (f)) | |
5394 return face_id; | |
5395 | |
5396 /* Try in increments of 1/2 pt. */ | |
5397 delta = steps < 0 ? 5 : -5; | |
5398 steps = abs (steps); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5399 |
24995 | 5400 face = FACE_FROM_ID (f, face_id); |
5401 bcopy (face->lface, attrs, sizeof attrs); | |
5402 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5403 new_face_id = face_id; | |
5404 last_height = FONT_HEIGHT (face->font); | |
5405 | |
5406 while (steps | |
5407 && pt + delta > 0 | |
5408 /* Give up if we cannot find a font within 10pt. */ | |
5409 && abs (last_pt - pt) < 100) | |
5410 { | |
5411 /* Look up a face for a slightly smaller/larger font. */ | |
5412 pt += delta; | |
5413 attrs[LFACE_HEIGHT_INDEX] = make_number (pt); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5414 new_face_id = lookup_face (f, attrs, 0, NULL); |
24995 | 5415 new_face = FACE_FROM_ID (f, new_face_id); |
5416 | |
5417 /* 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
|
5418 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
|
5419 || (delta > 0 && FONT_HEIGHT (new_face->font) > last_height)) |
24995 | 5420 { |
5421 --steps; | |
5422 last_height = FONT_HEIGHT (new_face->font); | |
5423 last_pt = pt; | |
5424 } | |
5425 } | |
5426 | |
5427 return new_face_id; | |
5428 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5429 #else /* not HAVE_WINDOW_SYSTEM */ |
24995 | 5430 |
5431 return face_id; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5432 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5433 #endif /* not HAVE_WINDOW_SYSTEM */ |
24995 | 5434 } |
5435 | |
5436 | |
5437 /* Return a face for charset ASCII that is like the face with id | |
5438 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
|
5439 |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
5440 int |
24995 | 5441 face_with_height (f, face_id, height) |
5442 struct frame *f; | |
5443 int face_id; | |
5444 int height; | |
5445 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5446 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5447 struct face *face; |
5448 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5449 | |
5450 if (FRAME_TERMCAP_P (f) | |
5451 || height <= 0) | |
5452 return face_id; | |
5453 | |
5454 face = FACE_FROM_ID (f, face_id); | |
5455 bcopy (face->lface, attrs, sizeof attrs); | |
5456 attrs[LFACE_HEIGHT_INDEX] = make_number (height); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5457 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
|
5458 #endif /* HAVE_WINDOW_SYSTEM */ |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5459 |
24995 | 5460 return face_id; |
5461 } | |
5462 | |
33275
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
5463 |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5464 /* 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
|
5465 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
|
5466 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
|
5467 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
|
5468 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
|
5469 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
|
5470 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5471 int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5472 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
|
5473 struct frame *f; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5474 Lisp_Object symbol; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5475 int c; |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5476 int face_id; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5477 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5478 Lisp_Object attrs[LFACE_VECTOR_SIZE]; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5479 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
|
5480 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
|
5481 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5482 if (!default_face) |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5483 abort (); |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5484 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5485 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
|
5486 bcopy (default_face->lface, attrs, sizeof attrs); |
31178 | 5487 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
|
5488 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
|
5489 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5490 |
24995 | 5491 |
5492 | |
5493 /*********************************************************************** | |
5494 Font selection | |
5495 ***********************************************************************/ | |
5496 | |
5497 DEFUN ("internal-set-font-selection-order", | |
5498 Finternal_set_font_selection_order, | |
5499 Sinternal_set_font_selection_order, 1, 1, 0, | |
5500 "Set font selection order for face font selection to ORDER.\n\ | |
5501 ORDER must be a list of length 4 containing the symbols `:width',\n\ | |
5502 `:height', `:weight', and `:slant'. Face attributes appearing\n\ | |
5503 first in ORDER are matched first, e.g. if `:height' appears before\n\ | |
5504 `:weight' in ORDER, font selection first tries to find a font with\n\ | |
5505 a suitable height, and then tries to match the font weight.\n\ | |
5506 Value is ORDER.") | |
5507 (order) | |
5508 Lisp_Object order; | |
5509 { | |
5510 Lisp_Object list; | |
5511 int i; | |
5512 int indices[4]; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5513 |
24995 | 5514 CHECK_LIST (order, 0); |
5515 bzero (indices, sizeof indices); | |
5516 i = 0; | |
5517 | |
5518 for (list = order; | |
5519 CONSP (list) && i < DIM (indices); | |
5520 list = XCDR (list), ++i) | |
5521 { | |
5522 Lisp_Object attr = XCAR (list); | |
5523 int xlfd; | |
5524 | |
5525 if (EQ (attr, QCwidth)) | |
5526 xlfd = XLFD_SWIDTH; | |
5527 else if (EQ (attr, QCheight)) | |
5528 xlfd = XLFD_POINT_SIZE; | |
5529 else if (EQ (attr, QCweight)) | |
5530 xlfd = XLFD_WEIGHT; | |
5531 else if (EQ (attr, QCslant)) | |
5532 xlfd = XLFD_SLANT; | |
5533 else | |
5534 break; | |
5535 | |
5536 if (indices[i] != 0) | |
5537 break; | |
5538 indices[i] = xlfd; | |
5539 } | |
5540 | |
5541 if (!NILP (list) | |
5542 || i != DIM (indices) | |
5543 || indices[0] == 0 | |
5544 || indices[1] == 0 | |
5545 || indices[2] == 0 | |
5546 || indices[3] == 0) | |
5547 signal_error ("Invalid font sort order", order); | |
5548 | |
5549 if (bcmp (indices, font_sort_order, sizeof indices) != 0) | |
5550 { | |
5551 bcopy (indices, font_sort_order, sizeof font_sort_order); | |
5552 free_all_realized_faces (Qnil); | |
5553 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5554 |
24995 | 5555 return Qnil; |
5556 } | |
5557 | |
5558 | |
5559 DEFUN ("internal-set-alternative-font-family-alist", | |
5560 Finternal_set_alternative_font_family_alist, | |
5561 Sinternal_set_alternative_font_family_alist, 1, 1, 0, | |
5562 "Define alternative font families to try in face font selection.\n\ | |
5563 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.\n\ | |
5564 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can\n\ | |
5565 be found. Value is ALIST.") | |
5566 (alist) | |
5567 Lisp_Object alist; | |
5568 { | |
5569 CHECK_LIST (alist, 0); | |
5570 Vface_alternative_font_family_alist = alist; | |
5571 free_all_realized_faces (Qnil); | |
5572 return alist; | |
5573 } | |
5574 | |
5575 | |
33372
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5576 DEFUN ("internal-set-alternative-font-registry-alist", |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5577 Finternal_set_alternative_font_registry_alist, |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5578 Sinternal_set_alternative_font_registry_alist, 1, 1, 0, |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5579 "Define alternative font registries to try in face font selection.\n\ |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5580 ALIST is an alist of (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...) entries.\n\ |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5581 Each ALTERNATIVE is tried in order if no fonts of font registry REGISTRY can\n\ |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5582 be found. Value is ALIST.") |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5583 (alist) |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5584 Lisp_Object alist; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5585 { |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5586 CHECK_LIST (alist, 0); |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5587 Vface_alternative_font_registry_alist = alist; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5588 free_all_realized_faces (Qnil); |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5589 return alist; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5590 } |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5591 |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5592 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5593 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5594 |
5595 /* Value is non-zero if FONT is the name of a scalable font. The | |
5596 X11R6 XLFD spec says that point size, pixel size, and average width | |
5597 are zero for scalable fonts. Intlfonts contain at least one | |
5598 scalable font ("*-muleindian-1") for which this isn't true, so we | |
5599 just test average width. */ | |
5600 | |
5601 static int | |
5602 font_scalable_p (font) | |
5603 struct font_name *font; | |
5604 { | |
5605 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
|
5606 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
|
5607 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5608 /* 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
|
5609 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
|
5610 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
|
5611 || *s == '*' |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5612 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5613 ; |
24995 | 5614 } |
5615 | |
5616 | |
5617 /* Value is non-zero if FONT1 is a better match for font attributes | |
5618 VALUES than FONT2. VALUES is an array of face attribute values in | |
5619 font sort order. COMPARE_PT_P zero means don't compare point | |
5620 sizes. */ | |
5621 | |
5622 static int | |
5623 better_font_p (values, font1, font2, compare_pt_p) | |
5624 int *values; | |
5625 struct font_name *font1, *font2; | |
5626 int compare_pt_p; | |
5627 { | |
5628 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5629 |
24995 | 5630 for (i = 0; i < 4; ++i) |
5631 { | |
5632 int xlfd_idx = font_sort_order[i]; | |
5633 | |
5634 if (compare_pt_p || xlfd_idx != XLFD_POINT_SIZE) | |
5635 { | |
5636 int delta1 = abs (values[i] - font1->numeric[xlfd_idx]); | |
5637 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
|
5638 |
24995 | 5639 if (delta1 > delta2) |
5640 return 0; | |
5641 else if (delta1 < delta2) | |
5642 return 1; | |
5643 else | |
5644 { | |
5645 /* The difference may be equal because, e.g., the face | |
5646 specifies `italic' but we have only `regular' and | |
5647 `oblique'. Prefer `oblique' in this case. */ | |
5648 if ((xlfd_idx == XLFD_WEIGHT || xlfd_idx == XLFD_SLANT) | |
5649 && font1->numeric[xlfd_idx] > values[i] | |
5650 && font2->numeric[xlfd_idx] < values[i]) | |
5651 return 1; | |
5652 } | |
5653 } | |
5654 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5655 |
24995 | 5656 return 0; |
5657 } | |
5658 | |
5659 | |
5660 /* Value is non-zero if FONT is an exact match for face attributes in | |
5661 SPECIFIED. SPECIFIED is an array of face attribute values in font | |
5662 sort order. */ | |
5663 | |
5664 static int | |
5665 exact_face_match_p (specified, font) | |
5666 int *specified; | |
5667 struct font_name *font; | |
5668 { | |
5669 int i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5670 |
24995 | 5671 for (i = 0; i < 4; ++i) |
5672 if (specified[i] != font->numeric[font_sort_order[i]]) | |
5673 break; | |
5674 | |
5675 return i == 4; | |
5676 } | |
5677 | |
5678 | |
5679 /* Value is the name of a scaled font, generated from scalable font | |
5680 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to. | |
5681 Value is allocated from heap. */ | |
5682 | |
5683 static char * | |
5684 build_scalable_font_name (f, font, specified_pt) | |
5685 struct frame *f; | |
5686 struct font_name *font; | |
5687 int specified_pt; | |
5688 { | |
5689 char point_size[20], pixel_size[20]; | |
5690 int pixel_value; | |
5691 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
5692 double pt; | |
5693 | |
5694 /* If scalable font is for a specific resolution, compute | |
5695 the point size we must specify from the resolution of | |
5696 the display and the specified resolution of the font. */ | |
5697 if (font->numeric[XLFD_RESY] != 0) | |
5698 { | |
5699 pt = resy / font->numeric[XLFD_RESY] * specified_pt + 0.5; | |
5700 pixel_value = font->numeric[XLFD_RESY] / 720.0 * pt; | |
5701 } | |
5702 else | |
5703 { | |
5704 pt = specified_pt; | |
5705 pixel_value = resy / 720.0 * pt; | |
5706 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5707 |
24995 | 5708 /* Set point size of the font. */ |
5709 sprintf (point_size, "%d", (int) pt); | |
5710 font->fields[XLFD_POINT_SIZE] = point_size; | |
5711 font->numeric[XLFD_POINT_SIZE] = pt; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5712 |
24995 | 5713 /* Set pixel size. */ |
5714 sprintf (pixel_size, "%d", pixel_value); | |
5715 font->fields[XLFD_PIXEL_SIZE] = pixel_size; | |
5716 font->numeric[XLFD_PIXEL_SIZE] = pixel_value; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5717 |
24995 | 5718 /* If font doesn't specify its resolution, use the |
5719 resolution of the display. */ | |
5720 if (font->numeric[XLFD_RESY] == 0) | |
5721 { | |
5722 char buffer[20]; | |
5723 sprintf (buffer, "%d", (int) resy); | |
5724 font->fields[XLFD_RESY] = buffer; | |
5725 font->numeric[XLFD_RESY] = resy; | |
5726 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5727 |
24995 | 5728 if (strcmp (font->fields[XLFD_RESX], "0") == 0) |
5729 { | |
5730 char buffer[20]; | |
5731 int resx = FRAME_X_DISPLAY_INFO (f)->resx; | |
5732 sprintf (buffer, "%d", resx); | |
5733 font->fields[XLFD_RESX] = buffer; | |
5734 font->numeric[XLFD_RESX] = resx; | |
5735 } | |
5736 | |
5737 return build_font_name (font); | |
5738 } | |
5739 | |
5740 | |
5741 /* Value is non-zero if we are allowed to use scalable font FONT. We | |
5742 can't run a Lisp function here since this function may be called | |
5743 with input blocked. */ | |
5744 | |
5745 static int | |
5746 may_use_scalable_font_p (font, name) | |
5747 struct font_name *font; | |
5748 char *name; | |
5749 { | |
5750 if (EQ (Vscalable_fonts_allowed, Qt)) | |
5751 return 1; | |
5752 else if (CONSP (Vscalable_fonts_allowed)) | |
5753 { | |
5754 Lisp_Object tail, regexp; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5755 |
24995 | 5756 for (tail = Vscalable_fonts_allowed; CONSP (tail); tail = XCDR (tail)) |
5757 { | |
5758 regexp = XCAR (tail); | |
5759 if (STRINGP (regexp) | |
5760 && fast_c_string_match_ignore_case (regexp, name) >= 0) | |
5761 return 1; | |
5762 } | |
5763 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5764 |
24995 | 5765 return 0; |
5766 } | |
5767 | |
5768 | |
5769 | |
5770 /* Return the name of the best matching font for face attributes | |
5771 ATTRS in the array of font_name structures FONTS which contains | |
5772 NFONTS elements. Value is a font name which is allocated from | |
5773 the heap. FONTS is freed by this function. */ | |
5774 | |
5775 static char * | |
5776 best_matching_font (f, attrs, fonts, nfonts) | |
5777 struct frame *f; | |
5778 Lisp_Object *attrs; | |
5779 struct font_name *fonts; | |
5780 int nfonts; | |
5781 { | |
5782 char *font_name; | |
5783 struct font_name *best; | |
31507
ac6d049932e9
(Finternal_merge_in_global_face): Return a Lisp object.
Gerd Moellmann <gerd@gnu.org>
parents:
31483
diff
changeset
|
5784 int i, pt = 0; |
24995 | 5785 int specified[4]; |
5786 int exact_p; | |
5787 | |
5788 if (nfonts == 0) | |
5789 return NULL; | |
5790 | |
5791 /* Make specified font attributes available in `specified', | |
5792 indexed by sort order. */ | |
5793 for (i = 0; i < DIM (font_sort_order); ++i) | |
5794 { | |
5795 int xlfd_idx = font_sort_order[i]; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5796 |
24995 | 5797 if (xlfd_idx == XLFD_SWIDTH) |
5798 specified[i] = face_numeric_swidth (attrs[LFACE_SWIDTH_INDEX]); | |
5799 else if (xlfd_idx == XLFD_POINT_SIZE) | |
5800 specified[i] = pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5801 else if (xlfd_idx == XLFD_WEIGHT) | |
5802 specified[i] = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
5803 else if (xlfd_idx == XLFD_SLANT) | |
5804 specified[i] = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
5805 else | |
5806 abort (); | |
5807 } | |
5808 | |
5809 exact_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5810 |
24995 | 5811 /* Start with the first non-scalable font in the list. */ |
5812 for (i = 0; i < nfonts; ++i) | |
5813 if (!font_scalable_p (fonts + i)) | |
5814 break; | |
5815 | |
5816 /* Find the best match among the non-scalable fonts. */ | |
5817 if (i < nfonts) | |
5818 { | |
5819 best = fonts + i; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5820 |
24995 | 5821 for (i = 1; i < nfonts; ++i) |
5822 if (!font_scalable_p (fonts + i) | |
5823 && better_font_p (specified, fonts + i, best, 1)) | |
5824 { | |
5825 best = fonts + i; | |
5826 | |
5827 exact_p = exact_face_match_p (specified, best); | |
5828 if (exact_p) | |
5829 break; | |
5830 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5831 |
24995 | 5832 } |
5833 else | |
5834 best = NULL; | |
5835 | |
5836 /* Unless we found an exact match among non-scalable fonts, see if | |
5837 we can find a better match among scalable fonts. */ | |
5838 if (!exact_p) | |
5839 { | |
5840 /* A scalable font is better if | |
5841 | |
5842 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
|
5843 |
24995 | 5844 2. the best non-scalable font doesn't have the required |
5845 point size, and the scalable fonts weight, slant, swidth | |
5846 isn't worse. */ | |
5847 | |
5848 int non_scalable_has_exact_height_p; | |
5849 | |
5850 if (best && best->numeric[XLFD_POINT_SIZE] == pt) | |
5851 non_scalable_has_exact_height_p = 1; | |
5852 else | |
5853 non_scalable_has_exact_height_p = 0; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5854 |
24995 | 5855 for (i = 0; i < nfonts; ++i) |
5856 if (font_scalable_p (fonts + i)) | |
5857 { | |
5858 if (best == NULL | |
5859 || better_font_p (specified, fonts + i, best, 0) | |
5860 || (!non_scalable_has_exact_height_p | |
5861 && !better_font_p (specified, best, fonts + i, 0))) | |
5862 best = fonts + i; | |
5863 } | |
5864 } | |
5865 | |
5866 if (font_scalable_p (best)) | |
5867 font_name = build_scalable_font_name (f, best, pt); | |
5868 else | |
5869 font_name = build_font_name (best); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5870 |
24995 | 5871 /* Free font_name structures. */ |
5872 free_font_names (fonts, nfonts); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5873 |
24995 | 5874 return font_name; |
5875 } | |
5876 | |
5877 | |
5878 /* Try to get a list of fonts on frame F with font family FAMILY and | |
5879 registry/encoding REGISTRY. Return in *FONTS a pointer to a vector | |
5880 of font_name structures for the fonts matched. Value is the number | |
5881 of fonts found. */ | |
5882 | |
5883 static int | |
5884 try_font_list (f, attrs, pattern, family, registry, fonts) | |
5885 struct frame *f; | |
5886 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5887 Lisp_Object pattern, family, registry; |
24995 | 5888 struct font_name **fonts; |
5889 { | |
5890 int nfonts; | |
5891 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5892 if (NILP (family) && STRINGP (attrs[LFACE_FAMILY_INDEX])) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5893 family = attrs[LFACE_FAMILY_INDEX]; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5894 |
24995 | 5895 nfonts = font_list (f, pattern, family, registry, fonts); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5896 if (nfonts == 0 && !NILP (family)) |
24995 | 5897 { |
5898 Lisp_Object alter; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5899 |
33372
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
5900 /* Try alternative font families. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5901 alter = Fassoc (family, Vface_alternative_font_family_alist); |
24995 | 5902 if (CONSP (alter)) |
5903 for (alter = XCDR (alter); | |
5904 CONSP (alter) && nfonts == 0; | |
5905 alter = XCDR (alter)) | |
5906 { | |
5907 if (STRINGP (XCAR (alter))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5908 nfonts = font_list (f, Qnil, XCAR (alter), registry, fonts); |
24995 | 5909 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5910 |
24995 | 5911 /* Try font family of the default face or "fixed". */ |
5912 if (nfonts == 0) | |
5913 { | |
5914 struct face *dflt = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5915 if (dflt) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5916 family = dflt->lface[LFACE_FAMILY_INDEX]; |
24995 | 5917 else |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5918 family = build_string ("fixed"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5919 nfonts = font_list (f, Qnil, family, registry, fonts); |
24995 | 5920 } |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5921 |
24995 | 5922 /* Try any family with the given registry. */ |
5923 if (nfonts == 0) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5924 nfonts = font_list (f, Qnil, Qnil, registry, fonts); |
24995 | 5925 } |
5926 | |
5927 return nfonts; | |
5928 } | |
5929 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5930 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5931 /* 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
|
5932 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
|
5933 attribute of ATTRS doesn't name a fontset. */ |
24995 | 5934 |
5935 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5936 face_fontset (attrs) |
24995 | 5937 Lisp_Object *attrs; |
5938 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5939 Lisp_Object name; |
24995 | 5940 int fontset; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5941 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5942 name = attrs[LFACE_FONT_INDEX]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5943 if (!STRINGP (name)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5944 return -1; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5945 return fs_query_fontset (name, 0); |
24995 | 5946 } |
5947 | |
5948 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5949 /* 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
|
5950 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
|
5951 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
|
5952 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
|
5953 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
|
5954 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
|
5955 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
|
5956 character. */ |
24995 | 5957 |
5958 static char * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5959 choose_face_font (f, attrs, fontset, c) |
24995 | 5960 struct frame *f; |
5961 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5962 int fontset, c; |
24995 | 5963 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5964 Lisp_Object pattern; |
24995 | 5965 char *font_name = NULL; |
5966 struct font_name *fonts; | |
5967 int nfonts; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5968 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5969 /* 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
|
5970 a font for C. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5971 pattern = fontset_font_pattern (f, fontset, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5972 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5973 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5974 xassert (!SINGLE_BYTE_CHAR_P (c)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5975 return NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5976 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5977 /* 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
|
5978 if (STRINGP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5979 return xstrdup (XSTRING (pattern)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5980 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5981 /* 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
|
5982 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
|
5983 character. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5984 if (STRINGP (attrs[LFACE_FAMILY_INDEX]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5985 && SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5986 XCAR (pattern) = Qnil; |
24995 | 5987 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
5988 /* Get a list of fonts matching that pattern and choose the |
24995 | 5989 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
|
5990 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
|
5991 &fonts); |
24995 | 5992 font_name = best_matching_font (f, attrs, fonts, nfonts); |
5993 return font_name; | |
5994 } | |
5995 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5996 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5997 |
5998 | |
5999 | |
6000 /*********************************************************************** | |
6001 Face Realization | |
6002 ***********************************************************************/ | |
6003 | |
6004 /* Realize basic faces on frame F. Value is zero if frame parameters | |
6005 of F don't contain enough information needed to realize the default | |
6006 face. */ | |
6007 | |
6008 static int | |
6009 realize_basic_faces (f) | |
2342 | 6010 struct frame *f; |
24995 | 6011 { |
6012 int success_p = 0; | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
6013 |
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
6014 /* 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
|
6015 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
|
6016 BLOCK_INPUT; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6017 |
24995 | 6018 if (realize_default_face (f)) |
6019 { | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6020 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
|
6021 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
|
6022 realize_named_face (f, Qfringe, BITMAP_AREA_FACE_ID); |
25546 | 6023 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
|
6024 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
|
6025 realize_named_face (f, Qborder, BORDER_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6026 realize_named_face (f, Qcursor, CURSOR_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6027 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
|
6028 realize_named_face (f, Qmenu, MENU_FACE_ID); |
33082
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6029 |
33275
8c453c73a11b
(lookup_named_face): If default face isn't realized,
Gerd Moellmann <gerd@gnu.org>
parents:
33082
diff
changeset
|
6030 /* Reflect changes in the `menu' face in menu bars. */ |
33082
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6031 if (menu_face_change_count) |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6032 { |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6033 menu_face_change_count = 0; |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6034 |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6035 #ifdef USE_X_TOOLKIT |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6036 if (FRAME_X_P (f)) |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6037 { |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6038 Widget menu = f->output_data.x->menubar_widget; |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6039 if (menu) |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6040 x_set_menu_resources_from_menu_face (f, menu); |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6041 } |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6042 #endif /* USE_X_TOOLKIT */ |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6043 } |
5ab6f3e1f5c8
(menu_face_change_count): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33070
diff
changeset
|
6044 |
24995 | 6045 success_p = 1; |
6046 } | |
6047 | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
6048 UNBLOCK_INPUT; |
24995 | 6049 return success_p; |
6050 } | |
6051 | |
6052 | |
6053 /* Realize the default face on frame F. If the face is not fully | |
6054 specified, make it fully-specified. Attributes of the default face | |
6055 that are not explicitly specified are taken from frame parameters. */ | |
6056 | |
6057 static int | |
6058 realize_default_face (f) | |
6059 struct frame *f; | |
6060 { | |
6061 struct face_cache *c = FRAME_FACE_CACHE (f); | |
6062 Lisp_Object lface; | |
6063 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6064 Lisp_Object frame_font; | |
6065 struct face *face; | |
6066 int fontset; | |
6067 | |
6068 /* If the `default' face is not yet known, create it. */ | |
6069 lface = lface_from_face_name (f, Qdefault, 0); | |
6070 if (NILP (lface)) | |
6071 { | |
6072 Lisp_Object frame; | |
6073 XSETFRAME (frame, f); | |
6074 lface = Finternal_make_lisp_face (Qdefault, frame); | |
6075 } | |
6076 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6077 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6078 if (FRAME_WINDOW_P (f)) |
24995 | 6079 { |
6080 /* Set frame_font to the value of the `font' frame parameter. */ | |
6081 frame_font = Fassq (Qfont, f->param_alist); | |
6082 xassert (CONSP (frame_font) && STRINGP (XCDR (frame_font))); | |
6083 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
|
6084 set_lface_from_font_name (f, lface, frame_font, 1, 1); |
24995 | 6085 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6086 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6087 |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6088 if (!FRAME_WINDOW_P (f)) |
24995 | 6089 { |
6090 LFACE_FAMILY (lface) = build_string ("default"); | |
6091 LFACE_SWIDTH (lface) = Qnormal; | |
6092 LFACE_HEIGHT (lface) = make_number (1); | |
6093 LFACE_WEIGHT (lface) = Qnormal; | |
6094 LFACE_SLANT (lface) = Qnormal; | |
6095 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6096 |
24995 | 6097 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface))) |
6098 LFACE_UNDERLINE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6099 |
24995 | 6100 if (UNSPECIFIEDP (LFACE_OVERLINE (lface))) |
6101 LFACE_OVERLINE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6102 |
24995 | 6103 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface))) |
6104 LFACE_STRIKE_THROUGH (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6105 |
24995 | 6106 if (UNSPECIFIEDP (LFACE_BOX (lface))) |
6107 LFACE_BOX (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6108 |
24995 | 6109 if (UNSPECIFIEDP (LFACE_INVERSE (lface))) |
6110 LFACE_INVERSE (lface) = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6111 |
24995 | 6112 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
6113 { | |
6114 /* This function is called so early that colors are not yet | |
6115 set in the frame parameter list. */ | |
6116 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
|
6117 |
24995 | 6118 if (CONSP (color) && STRINGP (XCDR (color))) |
6119 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
|
6120 else if (FRAME_WINDOW_P (f)) |
24995 | 6121 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6122 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
|
6123 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
|
6124 else |
24995 | 6125 abort (); |
6126 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6127 |
24995 | 6128 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
6129 { | |
6130 /* This function is called so early that colors are not yet | |
6131 set in the frame parameter list. */ | |
6132 Lisp_Object color = Fassq (Qbackground_color, f->param_alist); | |
6133 if (CONSP (color) && STRINGP (XCDR (color))) | |
6134 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
|
6135 else if (FRAME_WINDOW_P (f)) |
24995 | 6136 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6137 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
|
6138 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
|
6139 else |
24995 | 6140 abort (); |
6141 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6142 |
24995 | 6143 if (UNSPECIFIEDP (LFACE_STIPPLE (lface))) |
6144 LFACE_STIPPLE (lface) = Qnil; | |
6145 | |
6146 /* Realize the face; it must be fully-specified now. */ | |
6147 xassert (lface_fully_specified_p (XVECTOR (lface)->contents)); | |
6148 check_lface (lface); | |
6149 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6150 face = realize_face (c, attrs, 0, NULL, DEFAULT_FACE_ID); |
24995 | 6151 return 1; |
6152 } | |
6153 | |
6154 | |
6155 /* Realize basic faces other than the default face in face cache C. | |
6156 SYMBOL is the face name, ID is the face id the realized face must | |
6157 have. The default face must have been realized already. */ | |
6158 | |
6159 static void | |
6160 realize_named_face (f, symbol, id) | |
6161 struct frame *f; | |
6162 Lisp_Object symbol; | |
6163 int id; | |
6164 { | |
6165 struct face_cache *c = FRAME_FACE_CACHE (f); | |
6166 Lisp_Object lface = lface_from_face_name (f, symbol, 0); | |
6167 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6168 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
6169 struct face *new_face; | |
6170 | |
6171 /* The default face must exist and be fully specified. */ | |
6172 get_lface_attributes (f, Qdefault, attrs, 1); | |
6173 check_lface_attrs (attrs); | |
6174 xassert (lface_fully_specified_p (attrs)); | |
6175 | |
6176 /* If SYMBOL isn't know as a face, create it. */ | |
6177 if (NILP (lface)) | |
6178 { | |
6179 Lisp_Object frame; | |
6180 XSETFRAME (frame, f); | |
6181 lface = Finternal_make_lisp_face (symbol, frame); | |
6182 } | |
6183 | |
6184 /* Merge SYMBOL's face with the default face. */ | |
6185 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
31178 | 6186 merge_face_vectors (f, symbol_attrs, attrs, Qnil); |
24995 | 6187 |
6188 /* Realize the face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6189 new_face = realize_face (c, attrs, 0, NULL, id); |
24995 | 6190 } |
6191 | |
6192 | |
6193 /* 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
|
6194 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
|
6195 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
|
6196 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
|
6197 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
|
6198 pointer to the newly created realized face. */ |
24995 | 6199 |
6200 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6201 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
|
6202 struct face_cache *cache; |
24995 | 6203 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6204 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6205 struct face *base_face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6206 int former_face_id; |
24995 | 6207 { |
6208 struct face *face; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6209 |
24995 | 6210 /* LFACE must be fully specified. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6211 xassert (cache != NULL); |
24995 | 6212 check_lface_attrs (attrs); |
6213 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6214 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
|
6215 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6216 /* Remove the former face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6217 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
|
6218 uncache_face (cache, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6219 free_realized_face (cache->f, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6220 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6221 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6222 if (FRAME_WINDOW_P (cache->f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6223 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
|
6224 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
|
6225 face = realize_tty_face (cache, attrs, c); |
24995 | 6226 else |
6227 abort (); | |
6228 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6229 /* Insert the new face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6230 cache_face (cache, face, lface_hash (attrs)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6231 #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
|
6232 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
|
6233 load_face_font (cache->f, face, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6234 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6235 return face; |
6236 } | |
6237 | |
6238 | |
6239 /* 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
|
6240 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
|
6241 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
|
6242 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
|
6243 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
|
6244 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
|
6245 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
|
6246 face. */ |
24995 | 6247 |
6248 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6249 realize_x_face (cache, attrs, c, base_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6250 struct face_cache *cache; |
24995 | 6251 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6252 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6253 struct face *base_face; |
24995 | 6254 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6255 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 6256 struct face *face, *default_face; |
26875
d6aa11f2a4af
(choose_face_fontset_font): Delete codes for a
Kenichi Handa <handa@m17n.org>
parents:
26759
diff
changeset
|
6257 struct frame *f; |
24995 | 6258 Lisp_Object stipple, overline, strike_through, box; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6259 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6260 xassert (FRAME_WINDOW_P (cache->f)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6261 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
|
6262 || base_face); |
24995 | 6263 |
6264 /* Allocate a new realized face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6265 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6266 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6267 f = cache->f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6268 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6269 /* 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
|
6270 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
|
6271 different font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6272 if (!SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6273 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6274 bcopy (base_face, face, sizeof *face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6275 face->gc = 0; |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6276 |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6277 /* 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
|
6278 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
|
6279 face->background_defaulted_p = 1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6280 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
|
6281 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
|
6282 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
|
6283 face->box_color_defaulted_p = 1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6284 |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
6285 /* 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
|
6286 face->font = NULL; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6287 return face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6288 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6289 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6290 /* 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
|
6291 |
24995 | 6292 /* Determine the font to use. Most of the time, the font will be |
6293 the same as the font of the default face, so try that first. */ | |
6294 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6295 if (default_face | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6296 && FACE_SUITABLE_FOR_CHAR_P (default_face, c) |
24995 | 6297 && lface_same_font_attributes_p (default_face->lface, attrs)) |
6298 { | |
6299 face->font = default_face->font; | |
6300 face->fontset = default_face->fontset; | |
6301 face->font_info_id = default_face->font_info_id; | |
6302 face->font_name = default_face->font_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6303 face->ascii_face = face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6304 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6305 /* 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
|
6306 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
|
6307 face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6308 face->fontset |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6309 = make_fontset_for_ascii_face (f, default_face->fontset); |
24995 | 6310 } |
6311 else | |
6312 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6313 /* 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
|
6314 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
|
6315 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
|
6316 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
|
6317 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
|
6318 are constructed from ATTRS. */ |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
6319 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
|
6320 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6321 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
|
6322 fontset = default_face->fontset; |
8d8aa26c6884
(realize_x_face): Make fontset using the base of the
Kenichi Handa <handa@m17n.org>
parents:
30174
diff
changeset
|
6323 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
|
6324 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
|
6325 |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6326 #ifdef macintosh |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6327 /* 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
|
6328 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
|
6329 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
|
6330 { |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6331 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
|
6332 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
|
6333 if (font_info) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6334 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
|
6335 } |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32176
diff
changeset
|
6336 #endif |
24995 | 6337 } |
6338 | |
6339 /* Load colors, and set remaining attributes. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6340 |
24995 | 6341 load_face_colors (f, face, attrs); |
6342 | |
6343 /* Set up box. */ | |
6344 box = attrs[LFACE_BOX_INDEX]; | |
6345 if (STRINGP (box)) | |
6346 { | |
6347 /* A simple box of line width 1 drawn in color given by | |
6348 the string. */ | |
6349 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX], | |
6350 LFACE_BOX_INDEX); | |
6351 face->box = FACE_SIMPLE_BOX; | |
6352 face->box_line_width = 1; | |
6353 } | |
6354 else if (INTEGERP (box)) | |
6355 { | |
6356 /* Simple box of specified line width in foreground color of the | |
6357 face. */ | |
6358 xassert (XINT (box) > 0); | |
6359 face->box = FACE_SIMPLE_BOX; | |
6360 face->box_line_width = XFASTINT (box); | |
6361 face->box_color = face->foreground; | |
6362 face->box_color_defaulted_p = 1; | |
6363 } | |
6364 else if (CONSP (box)) | |
6365 { | |
6366 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW | |
6367 being one of `raised' or `sunken'. */ | |
6368 face->box = FACE_SIMPLE_BOX; | |
6369 face->box_color = face->foreground; | |
6370 face->box_color_defaulted_p = 1; | |
6371 face->box_line_width = 1; | |
6372 | |
6373 while (CONSP (box)) | |
6374 { | |
6375 Lisp_Object keyword, value; | |
6376 | |
6377 keyword = XCAR (box); | |
6378 box = XCDR (box); | |
6379 | |
6380 if (!CONSP (box)) | |
6381 break; | |
6382 value = XCAR (box); | |
6383 box = XCDR (box); | |
6384 | |
6385 if (EQ (keyword, QCline_width)) | |
6386 { | |
6387 if (INTEGERP (value) && XINT (value) > 0) | |
6388 face->box_line_width = XFASTINT (value); | |
6389 } | |
6390 else if (EQ (keyword, QCcolor)) | |
6391 { | |
6392 if (STRINGP (value)) | |
6393 { | |
6394 face->box_color = load_color (f, face, value, | |
6395 LFACE_BOX_INDEX); | |
6396 face->use_box_color_for_shadows_p = 1; | |
6397 } | |
6398 } | |
6399 else if (EQ (keyword, QCstyle)) | |
6400 { | |
6401 if (EQ (value, Qreleased_button)) | |
6402 face->box = FACE_RAISED_BOX; | |
6403 else if (EQ (value, Qpressed_button)) | |
6404 face->box = FACE_SUNKEN_BOX; | |
6405 } | |
6406 } | |
6407 } | |
6408 | |
6409 /* Text underline, overline, strike-through. */ | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6410 |
24995 | 6411 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt)) |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6412 { |
24995 | 6413 /* Use default color (same as foreground color). */ |
6414 face->underline_p = 1; | |
6415 face->underline_defaulted_p = 1; | |
6416 face->underline_color = 0; | |
6417 } | |
6418 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX])) | |
6419 { | |
6420 /* Use specified color. */ | |
6421 face->underline_p = 1; | |
6422 face->underline_defaulted_p = 0; | |
6423 face->underline_color | |
6424 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX], | |
6425 LFACE_UNDERLINE_INDEX); | |
6426 } | |
6427 else if (NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6428 { | |
6429 face->underline_p = 0; | |
6430 face->underline_defaulted_p = 0; | |
6431 face->underline_color = 0; | |
6432 } | |
6433 | |
6434 overline = attrs[LFACE_OVERLINE_INDEX]; | |
6435 if (STRINGP (overline)) | |
6436 { | |
6437 face->overline_color | |
6438 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX], | |
6439 LFACE_OVERLINE_INDEX); | |
6440 face->overline_p = 1; | |
6441 } | |
6442 else if (EQ (overline, Qt)) | |
6443 { | |
6444 face->overline_color = face->foreground; | |
6445 face->overline_color_defaulted_p = 1; | |
6446 face->overline_p = 1; | |
6447 } | |
6448 | |
6449 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX]; | |
6450 if (STRINGP (strike_through)) | |
6451 { | |
6452 face->strike_through_color | |
6453 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX], | |
6454 LFACE_STRIKE_THROUGH_INDEX); | |
6455 face->strike_through_p = 1; | |
6456 } | |
6457 else if (EQ (strike_through, Qt)) | |
6458 { | |
6459 face->strike_through_color = face->foreground; | |
6460 face->strike_through_color_defaulted_p = 1; | |
6461 face->strike_through_p = 1; | |
6462 } | |
6463 | |
6464 stipple = attrs[LFACE_STIPPLE_INDEX]; | |
6465 if (!NILP (stipple)) | |
6466 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h); | |
6467 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6468 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c)); |
24995 | 6469 return face; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6470 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6471 } |
6472 | |
6473 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6474 /* 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
|
6475 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
|
6476 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
|
6477 default foreground/background colors. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6478 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6479 static void |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6480 map_tty_color (f, face, idx, defaulted) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6481 struct frame *f; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6482 struct face *face; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6483 enum lface_attribute_index idx; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6484 int *defaulted; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6485 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6486 Lisp_Object frame, color, def; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6487 int foreground_p = idx == LFACE_FOREGROUND_INDEX; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6488 unsigned long default_pixel, default_other_pixel, pixel; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6489 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6490 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
|
6491 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6492 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6493 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6494 pixel = default_pixel = FACE_TTY_DEFAULT_FG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6495 default_other_pixel = FACE_TTY_DEFAULT_BG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6496 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6497 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6498 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6499 pixel = default_pixel = FACE_TTY_DEFAULT_BG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6500 default_other_pixel = FACE_TTY_DEFAULT_FG_COLOR; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6501 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6502 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6503 XSETFRAME (frame, f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6504 color = face->lface[idx]; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6505 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6506 if (STRINGP (color) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6507 && XSTRING (color)->size |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6508 && CONSP (Vtty_defined_color_alist) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6509 && (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
|
6510 CONSP (def))) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6511 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6512 /* 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
|
6513 (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
|
6514 pixel = XINT (XCAR (XCDR (def))); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6515 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6516 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6517 if (pixel == default_pixel && STRINGP (color)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6518 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6519 pixel = load_color (f, face, color, idx); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6520 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6521 #if defined (MSDOS) || defined (WINDOWSNT) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6522 /* 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
|
6523 use the foreground color defined by the frame. */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6524 #ifdef MSDOS |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6525 if (FRAME_MSDOS_P (f)) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6526 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6527 #endif /* MSDOS */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6528 if (pixel == default_pixel |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6529 || pixel == FACE_TTY_DEFAULT_COLOR) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6530 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6531 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6532 pixel = FRAME_FOREGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6533 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6534 pixel = FRAME_BACKGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6535 face->lface[idx] = tty_color_name (f, pixel); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6536 *defaulted = 1; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6537 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6538 else if (pixel == default_other_pixel) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6539 { |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6540 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6541 pixel = FRAME_BACKGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6542 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6543 pixel = FRAME_FOREGROUND_PIXEL (f); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6544 face->lface[idx] = tty_color_name (f, pixel); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6545 *defaulted = 1; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6546 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6547 #ifdef MSDOS |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6548 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6549 #endif |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6550 #endif /* MSDOS or WINDOWSNT */ |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6551 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6552 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6553 if (foreground_p) |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6554 face->foreground = pixel; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6555 else |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6556 face->background = pixel; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6557 } |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6558 |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6559 |
24995 | 6560 /* 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
|
6561 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
|
6562 pointer to the newly created realized face. */ |
24995 | 6563 |
6564 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6565 realize_tty_face (cache, attrs, c) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6566 struct face_cache *cache; |
24995 | 6567 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6568 int c; |
24995 | 6569 { |
6570 struct face *face; | |
6571 int weight, slant; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6572 int face_colors_defaulted = 0; |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6573 struct frame *f = cache->f; |
24995 | 6574 |
6575 /* Frame must be a termcap frame. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6576 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
|
6577 |
24995 | 6578 /* Allocate a new realized face. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6579 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6580 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty"; |
24995 | 6581 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6582 /* Map face attributes to TTY appearances. We map slant to |
24995 | 6583 dimmed text because we want italic text to appear differently |
6584 and because dimmed text is probably used infrequently. */ | |
6585 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
6586 slant = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
6587 | |
6588 if (weight > XLFD_WEIGHT_MEDIUM) | |
6589 face->tty_bold_p = 1; | |
6590 if (weight < XLFD_WEIGHT_MEDIUM || slant != XLFD_SLANT_ROMAN) | |
6591 face->tty_dim_p = 1; | |
6592 if (!NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6593 face->tty_underline_p = 1; | |
6594 if (!NILP (attrs[LFACE_INVERSE_INDEX])) | |
6595 face->tty_reverse_p = 1; | |
6596 | |
6597 /* Map color names to color indices. */ | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
6598 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
|
6599 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
|
6600 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6601 /* 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
|
6602 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
|
6603 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
|
6604 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
|
6605 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6606 unsigned long tem = face->foreground; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6607 face->foreground = face->background; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6608 face->background = tem; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6609 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6610 |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6611 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
|
6612 && face->tty_bold_p |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6613 && 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
|
6614 && 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
|
6615 face->tty_bold_p = 0; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6616 |
24995 | 6617 return face; |
6618 } | |
6619 | |
6620 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6621 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
|
6622 Ftty_suppress_bold_inverse_default_colors, |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6623 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
|
6624 "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
|
6625 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
|
6626 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
|
6627 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
|
6628 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
|
6629 is non-nil.") |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6630 (suppress) |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6631 Lisp_Object suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6632 { |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6633 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
|
6634 ++face_change_count; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6635 return suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6636 } |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6637 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6638 |
24995 | 6639 |
6640 /*********************************************************************** | |
6641 Computing Faces | |
6642 ***********************************************************************/ | |
6643 | |
6644 /* Return the ID of the face to use to display character CH with face | |
6645 property PROP on frame F in current_buffer. */ | |
6646 | |
6647 int | |
6648 compute_char_face (f, ch, prop) | |
6649 struct frame *f; | |
6650 int ch; | |
6651 Lisp_Object prop; | |
6652 { | |
6653 int face_id; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6654 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6655 if (NILP (current_buffer->enable_multibyte_characters)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6656 ch = -1; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6657 |
24995 | 6658 if (NILP (prop)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6659 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6660 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
|
6661 face_id = FACE_FOR_CHAR (f, face, ch); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6662 } |
24995 | 6663 else |
6664 { | |
6665 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6666 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6667 bcopy (default_face->lface, attrs, sizeof attrs); | |
6668 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
|
6669 face_id = lookup_face (f, attrs, ch, NULL); |
24995 | 6670 } |
6671 | |
6672 return face_id; | |
6673 } | |
6674 | |
6675 | |
6676 /* Return the face ID associated with buffer position POS for | |
6677 displaying ASCII characters. Return in *ENDPTR the position at | |
6678 which a different face is needed, as far as text properties and | |
6679 overlays are concerned. W is a window displaying current_buffer. | |
6680 | |
6681 REGION_BEG, REGION_END delimit the region, so it can be | |
6682 highlighted. | |
6683 | |
6684 LIMIT is a position not to scan beyond. That is to limit the time | |
6685 this function can take. | |
6686 | |
6687 If MOUSE is non-zero, use the character's mouse-face, not its face. | |
6688 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6689 The face returned is suitable for displaying ASCII characters. */ |
24995 | 6690 |
6691 int | |
6692 face_at_buffer_position (w, pos, region_beg, region_end, | |
6693 endptr, limit, mouse) | |
2391 | 6694 struct window *w; |
2342 | 6695 int pos; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6696 int region_beg, region_end; |
2342 | 6697 int *endptr; |
5084
863e092a5891
(compute_char_face): Accept new arg LIMIT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6698 int limit; |
6615
96ddf85642d1
(compute_char_face): New arg MOUSE.
Richard M. Stallman <rms@gnu.org>
parents:
5858
diff
changeset
|
6699 int mouse; |
2342 | 6700 { |
24995 | 6701 struct frame *f = XFRAME (w->frame); |
6702 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
|
6703 Lisp_Object prop, position; |
24995 | 6704 int i, noverlays; |
2342 | 6705 Lisp_Object *overlay_vec; |
2391 | 6706 Lisp_Object frame; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6707 int endpos; |
24995 | 6708 Lisp_Object propname = mouse ? Qmouse_face : Qface; |
6709 Lisp_Object limit1, end; | |
6710 struct face *default_face; | |
6711 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
|
6712 |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6713 /* 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
|
6714 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
|
6715 /* xassert (XBUFFER (w->buffer) == current_buffer); */ |
2391 | 6716 |
9284
a969e0eefaf5
(compute_char_face): Use new accessor macros instead of calling XSET directly.
Karl Heuer <kwzh@gnu.org>
parents:
9186
diff
changeset
|
6717 XSETFRAME (frame, f); |
24995 | 6718 XSETFASTINT (position, pos); |
2342 | 6719 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6720 endpos = ZV; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6721 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
|
6722 endpos = region_beg; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6723 |
24995 | 6724 /* Get the `face' or `mouse_face' text property at POS, and |
6725 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
|
6726 prop = Fget_text_property (position, propname, w->buffer); |
24995 | 6727 XSETFASTINT (limit1, (limit < endpos ? limit : endpos)); |
6728 end = Fnext_single_property_change (position, propname, w->buffer, limit1); | |
6729 if (INTEGERP (end)) | |
6730 endpos = XINT (end); | |
6731 | |
6732 /* 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
|
6733 { |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6734 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
|
6735 int len; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6736 |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6737 /* 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
|
6738 len = 40; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6739 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
|
6740 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
|
6741 &next_overlay, NULL, 0); |
24995 | 6742 |
6743 /* If there are more than 40, make enough space for all, and try | |
6744 again. */ | |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6745 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
|
6746 { |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6747 len = noverlays; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6748 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
|
6749 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
|
6750 &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
|
6751 } |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6752 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6753 if (next_overlay < endpos) |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6754 endpos = next_overlay; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6755 } |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6756 |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6757 *endptr = endpos; |
2342 | 6758 |
24995 | 6759 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
|
6760 |
24995 | 6761 /* Optimize common cases where we can use the default face. */ |
6762 if (noverlays == 0 | |
6763 && NILP (prop) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6764 && !(pos >= region_beg && pos < region_end)) |
24995 | 6765 return DEFAULT_FACE_ID; |
6766 | |
6767 /* Begin with attributes from the default face. */ | |
6768 bcopy (default_face->lface, attrs, sizeof attrs); | |
6769 | |
6770 /* Merge in attributes specified via text properties. */ | |
6771 if (!NILP (prop)) | |
6772 merge_face_vector_with_property (f, attrs, prop); | |
6773 | |
6774 /* 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
|
6775 noverlays = sort_overlays (overlay_vec, noverlays, w); |
2342 | 6776 for (i = 0; i < noverlays; i++) |
6777 { | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6778 Lisp_Object oend; |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6779 int oendpos; |
9186
45bac5feb065
(compute_char_face): Handle list as overlay face property.
Richard M. Stallman <rms@gnu.org>
parents:
9184
diff
changeset
|
6780 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6781 prop = Foverlay_get (overlay_vec[i], propname); |
24995 | 6782 if (!NILP (prop)) |
6783 merge_face_vector_with_property (f, attrs, prop); | |
2342 | 6784 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6785 oend = OVERLAY_END (overlay_vec[i]); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6786 oendpos = OVERLAY_POSITION (oend); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6787 if (oendpos < endpos) |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6788 endpos = oendpos; |
2342 | 6789 } |
6790 | |
24995 | 6791 /* 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
|
6792 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
|
6793 { |
24995 | 6794 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
31178 | 6795 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
|
6796 |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6797 if (region_end < endpos) |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6798 endpos = region_end; |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6799 } |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6800 |
2342 | 6801 *endptr = endpos; |
6802 | |
24995 | 6803 /* 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
|
6804 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6805 return lookup_face (f, attrs, 0, NULL); |
2342 | 6806 } |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6807 |
24995 | 6808 |
6809 /* 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
|
6810 window W, for ASCII characters. |
24995 | 6811 |
6812 If STRING is an overlay string, it comes from position BUFPOS in | |
6813 current_buffer, otherwise BUFPOS is zero to indicate that STRING is | |
6814 not an overlay string. W must display the current buffer. | |
6815 REGION_BEG and REGION_END give the start and end positions of the | |
6816 region; both are -1 if no region is visible. BASE_FACE_ID is the | |
6817 id of the basic face to merge with. It is usually equal to | |
25546 | 6818 DEFAULT_FACE_ID but can be MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID |
24995 | 6819 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
|
6820 |
24995 | 6821 Set *ENDPTR to the next position where to check for faces in |
6822 STRING; -1 if the face is constant from POS to the end of the | |
6823 string. | |
6824 | |
6825 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
|
6826 for displaying ASCII characters. */ |
24995 | 6827 |
6828 int | |
6829 face_at_string_position (w, string, pos, bufpos, region_beg, | |
6830 region_end, endptr, base_face_id) | |
6831 struct window *w; | |
6832 Lisp_Object string; | |
6833 int pos, bufpos; | |
6834 int region_beg, region_end; | |
6835 int *endptr; | |
6836 enum face_id base_face_id; | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6837 { |
24995 | 6838 Lisp_Object prop, position, end, limit; |
6839 struct frame *f = XFRAME (WINDOW_FRAME (w)); | |
6840 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6841 struct face *base_face; | |
6842 int multibyte_p = STRING_MULTIBYTE (string); | |
6843 | |
6844 /* Get the value of the face property at the current position within | |
6845 STRING. Value is nil if there is no face property. */ | |
6846 XSETFASTINT (position, pos); | |
6847 prop = Fget_text_property (position, Qface, string); | |
6848 | |
6849 /* Get the next position at which to check for faces. Value of end | |
6850 is nil if face is constant all the way to the end of the string. | |
6851 Otherwise it is a string position where to check faces next. | |
6852 Limit is the maximum position up to which to check for property | |
6853 changes in Fnext_single_property_change. Strings are usually | |
6854 short, so set the limit to the end of the string. */ | |
6855 XSETFASTINT (limit, XSTRING (string)->size); | |
6856 end = Fnext_single_property_change (position, Qface, string, limit); | |
6857 if (INTEGERP (end)) | |
6858 *endptr = XFASTINT (end); | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6859 else |
24995 | 6860 *endptr = -1; |
6861 | |
6862 base_face = FACE_FROM_ID (f, base_face_id); | |
6863 xassert (base_face); | |
6864 | |
6865 /* Optimize the default case that there is no face property and we | |
6866 are not in the region. */ | |
6867 if (NILP (prop) | |
6868 && (base_face_id != DEFAULT_FACE_ID | |
6869 /* BUFPOS <= 0 means STRING is not an overlay string, so | |
6870 that the region doesn't have to be taken into account. */ | |
6871 || bufpos <= 0 | |
6872 || bufpos < region_beg | |
6873 || bufpos >= region_end) | |
6874 && (multibyte_p | |
6875 /* We can't realize faces for different charsets differently | |
6876 if we don't have fonts, so we can stop here if not working | |
6877 on a window-system frame. */ | |
6878 || !FRAME_WINDOW_P (f) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6879 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0))) |
24995 | 6880 return base_face->id; |
6881 | |
6882 /* Begin with attributes from the base face. */ | |
6883 bcopy (base_face->lface, attrs, sizeof attrs); | |
6884 | |
6885 /* Merge in attributes specified via text properties. */ | |
6886 if (!NILP (prop)) | |
6887 merge_face_vector_with_property (f, attrs, prop); | |
6888 | |
6889 /* If in the region, merge in the region face. */ | |
6890 if (bufpos | |
6891 && bufpos >= region_beg | |
6892 && bufpos < region_end) | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6893 { |
24995 | 6894 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
31178 | 6895 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
|
6896 } |
24995 | 6897 |
6898 /* 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
|
6899 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6900 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
|
6901 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6902 |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6903 |
2336 | 6904 |
24995 | 6905 /*********************************************************************** |
6906 Tests | |
6907 ***********************************************************************/ | |
6908 | |
6909 #if GLYPH_DEBUG | |
6910 | |
6911 /* Print the contents of the realized face FACE to stderr. */ | |
6912 | |
6913 static void | |
6914 dump_realized_face (face) | |
6915 struct face *face; | |
2336 | 6916 { |
24995 | 6917 fprintf (stderr, "ID: %d\n", face->id); |
6918 #ifdef HAVE_X_WINDOWS | |
6919 fprintf (stderr, "gc: %d\n", (int) face->gc); | |
6920 #endif | |
6921 fprintf (stderr, "foreground: 0x%lx (%s)\n", | |
6922 face->foreground, | |
6923 XSTRING (face->lface[LFACE_FOREGROUND_INDEX])->data); | |
6924 fprintf (stderr, "background: 0x%lx (%s)\n", | |
6925 face->background, | |
6926 XSTRING (face->lface[LFACE_BACKGROUND_INDEX])->data); | |
6927 fprintf (stderr, "font_name: %s (%s)\n", | |
6928 face->font_name, | |
6929 XSTRING (face->lface[LFACE_FAMILY_INDEX])->data); | |
6930 #ifdef HAVE_X_WINDOWS | |
6931 fprintf (stderr, "font = %p\n", face->font); | |
6932 #endif | |
6933 fprintf (stderr, "font_info_id = %d\n", face->font_info_id); | |
6934 fprintf (stderr, "fontset: %d\n", face->fontset); | |
6935 fprintf (stderr, "underline: %d (%s)\n", | |
6936 face->underline_p, | |
6937 XSTRING (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))->data); | |
6938 fprintf (stderr, "hash: %d\n", face->hash); | |
6939 fprintf (stderr, "charset: %d\n", face->charset); | |
6940 } | |
6941 | |
6942 | |
6943 DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, "") | |
6944 (n) | |
6945 Lisp_Object n; | |
6946 { | |
6947 if (NILP (n)) | |
2336 | 6948 { |
24995 | 6949 int i; |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6950 |
24995 | 6951 fprintf (stderr, "font selection order: "); |
6952 for (i = 0; i < DIM (font_sort_order); ++i) | |
6953 fprintf (stderr, "%d ", font_sort_order[i]); | |
6954 fprintf (stderr, "\n"); | |
6955 | |
6956 fprintf (stderr, "alternative fonts: "); | |
6957 debug_print (Vface_alternative_font_family_alist); | |
6958 fprintf (stderr, "\n"); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6959 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6960 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i) |
24995 | 6961 Fdump_face (make_number (i)); |
2336 | 6962 } |
24995 | 6963 else |
6964 { | |
6965 struct face *face; | |
6966 CHECK_NUMBER (n, 0); | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6967 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n)); |
24995 | 6968 if (face == NULL) |
6969 error ("Not a valid face"); | |
6970 dump_realized_face (face); | |
6971 } | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
6972 |
2336 | 6973 return Qnil; |
6974 } | |
6975 | |
6976 | |
24995 | 6977 DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources, |
6978 0, 0, 0, "") | |
6979 () | |
2336 | 6980 { |
24995 | 6981 fprintf (stderr, "number of colors = %d\n", ncolors_allocated); |
6982 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated); | |
6983 fprintf (stderr, "number of GCs = %d\n", ngcs); | |
2336 | 6984 return Qnil; |
6985 } | |
24995 | 6986 |
6987 #endif /* GLYPH_DEBUG != 0 */ | |
6988 | |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6989 |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6990 |
24995 | 6991 /*********************************************************************** |
6992 Initialization | |
6993 ***********************************************************************/ | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
6994 |
2336 | 6995 void |
2391 | 6996 syms_of_xfaces () |
2336 | 6997 { |
2391 | 6998 Qface = intern ("face"); |
6999 staticpro (&Qface); | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
7000 Qbitmap_spec_p = intern ("bitmap-spec-p"); |
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
7001 staticpro (&Qbitmap_spec_p); |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
7002 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
|
7003 staticpro (&Qframe_update_face_colors); |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
7004 |
24995 | 7005 /* Lisp face attribute keywords. */ |
7006 QCfamily = intern (":family"); | |
7007 staticpro (&QCfamily); | |
7008 QCheight = intern (":height"); | |
7009 staticpro (&QCheight); | |
7010 QCweight = intern (":weight"); | |
7011 staticpro (&QCweight); | |
7012 QCslant = intern (":slant"); | |
7013 staticpro (&QCslant); | |
7014 QCunderline = intern (":underline"); | |
7015 staticpro (&QCunderline); | |
7016 QCinverse_video = intern (":inverse-video"); | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
7017 staticpro (&QCinverse_video); |
24995 | 7018 QCreverse_video = intern (":reverse-video"); |
7019 staticpro (&QCreverse_video); | |
7020 QCforeground = intern (":foreground"); | |
7021 staticpro (&QCforeground); | |
7022 QCbackground = intern (":background"); | |
7023 staticpro (&QCbackground); | |
7024 QCstipple = intern (":stipple");; | |
7025 staticpro (&QCstipple); | |
7026 QCwidth = intern (":width"); | |
7027 staticpro (&QCwidth); | |
7028 QCfont = intern (":font"); | |
7029 staticpro (&QCfont); | |
7030 QCbold = intern (":bold"); | |
7031 staticpro (&QCbold); | |
7032 QCitalic = intern (":italic"); | |
7033 staticpro (&QCitalic); | |
7034 QCoverline = intern (":overline"); | |
7035 staticpro (&QCoverline); | |
7036 QCstrike_through = intern (":strike-through"); | |
7037 staticpro (&QCstrike_through); | |
7038 QCbox = intern (":box"); | |
7039 staticpro (&QCbox); | |
31178 | 7040 QCinherit = intern (":inherit"); |
7041 staticpro (&QCinherit); | |
24995 | 7042 |
7043 /* Symbols used for Lisp face attribute values. */ | |
7044 QCcolor = intern (":color"); | |
7045 staticpro (&QCcolor); | |
7046 QCline_width = intern (":line-width"); | |
7047 staticpro (&QCline_width); | |
7048 QCstyle = intern (":style"); | |
7049 staticpro (&QCstyle); | |
7050 Qreleased_button = intern ("released-button"); | |
7051 staticpro (&Qreleased_button); | |
7052 Qpressed_button = intern ("pressed-button"); | |
7053 staticpro (&Qpressed_button); | |
7054 Qnormal = intern ("normal"); | |
7055 staticpro (&Qnormal); | |
7056 Qultra_light = intern ("ultra-light"); | |
7057 staticpro (&Qultra_light); | |
7058 Qextra_light = intern ("extra-light"); | |
7059 staticpro (&Qextra_light); | |
7060 Qlight = intern ("light"); | |
7061 staticpro (&Qlight); | |
7062 Qsemi_light = intern ("semi-light"); | |
7063 staticpro (&Qsemi_light); | |
7064 Qsemi_bold = intern ("semi-bold"); | |
7065 staticpro (&Qsemi_bold); | |
7066 Qbold = intern ("bold"); | |
7067 staticpro (&Qbold); | |
7068 Qextra_bold = intern ("extra-bold"); | |
7069 staticpro (&Qextra_bold); | |
7070 Qultra_bold = intern ("ultra-bold"); | |
7071 staticpro (&Qultra_bold); | |
7072 Qoblique = intern ("oblique"); | |
7073 staticpro (&Qoblique); | |
7074 Qitalic = intern ("italic"); | |
7075 staticpro (&Qitalic); | |
7076 Qreverse_oblique = intern ("reverse-oblique"); | |
7077 staticpro (&Qreverse_oblique); | |
7078 Qreverse_italic = intern ("reverse-italic"); | |
7079 staticpro (&Qreverse_italic); | |
7080 Qultra_condensed = intern ("ultra-condensed"); | |
7081 staticpro (&Qultra_condensed); | |
7082 Qextra_condensed = intern ("extra-condensed"); | |
7083 staticpro (&Qextra_condensed); | |
7084 Qcondensed = intern ("condensed"); | |
7085 staticpro (&Qcondensed); | |
7086 Qsemi_condensed = intern ("semi-condensed"); | |
7087 staticpro (&Qsemi_condensed); | |
7088 Qsemi_expanded = intern ("semi-expanded"); | |
7089 staticpro (&Qsemi_expanded); | |
7090 Qexpanded = intern ("expanded"); | |
7091 staticpro (&Qexpanded); | |
7092 Qextra_expanded = intern ("extra-expanded"); | |
7093 staticpro (&Qextra_expanded); | |
7094 Qultra_expanded = intern ("ultra-expanded"); | |
7095 staticpro (&Qultra_expanded); | |
7096 Qbackground_color = intern ("background-color"); | |
7097 staticpro (&Qbackground_color); | |
7098 Qforeground_color = intern ("foreground-color"); | |
7099 staticpro (&Qforeground_color); | |
7100 Qunspecified = intern ("unspecified"); | |
7101 staticpro (&Qunspecified); | |
7102 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
7103 Qface_alias = intern ("face-alias"); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
7104 staticpro (&Qface_alias); |
24995 | 7105 Qdefault = intern ("default"); |
7106 staticpro (&Qdefault); | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25389
diff
changeset
|
7107 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
|
7108 staticpro (&Qtool_bar); |
24995 | 7109 Qregion = intern ("region"); |
7110 staticpro (&Qregion); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7111 Qfringe = intern ("fringe"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7112 staticpro (&Qfringe); |
25546 | 7113 Qheader_line = intern ("header-line"); |
7114 staticpro (&Qheader_line); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7115 Qscroll_bar = intern ("scroll-bar"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7116 staticpro (&Qscroll_bar); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
7117 Qmenu = intern ("menu"); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
7118 staticpro (&Qmenu); |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7119 Qcursor = intern ("cursor"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7120 staticpro (&Qcursor); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7121 Qborder = intern ("border"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7122 staticpro (&Qborder); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7123 Qmouse = intern ("mouse"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
7124 staticpro (&Qmouse); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
7125 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
|
7126 staticpro (&Qtty_color_desc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
7127 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
|
7128 staticpro (&Qtty_color_by_index); |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7129 Qtty_color_alist = intern ("tty-color-alist"); |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7130 staticpro (&Qtty_color_alist); |
24995 | 7131 |
31449
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
7132 Vparam_value_alist = Fcons (Fcons (Qnil, Qnil), Qnil); |
8797df6a9fa2
(Vparam_value_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31440
diff
changeset
|
7133 staticpro (&Vparam_value_alist); |
30304
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
7134 Vface_alternative_font_family_alist = Qnil; |
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
7135 staticpro (&Vface_alternative_font_family_alist); |
33372
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
7136 Vface_alternative_font_registry_alist = Qnil; |
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
7137 staticpro (&Vface_alternative_font_registry_alist); |
30304
626d55ea66ef
(face-alternative-font-family-alist): Remove
Gerd Moellmann <gerd@gnu.org>
parents:
30235
diff
changeset
|
7138 |
24995 | 7139 defsubr (&Sinternal_make_lisp_face); |
7140 defsubr (&Sinternal_lisp_face_p); | |
7141 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
|
7142 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 7143 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
|
7144 #endif |
27120
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
7145 defsubr (&Scolor_gray_p); |
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
7146 defsubr (&Scolor_supported_p); |
24995 | 7147 defsubr (&Sinternal_get_lisp_face_attribute); |
7148 defsubr (&Sinternal_lisp_face_attribute_values); | |
7149 defsubr (&Sinternal_lisp_face_equal_p); | |
7150 defsubr (&Sinternal_lisp_face_empty_p); | |
7151 defsubr (&Sinternal_copy_lisp_face); | |
7152 defsubr (&Sinternal_merge_in_global_face); | |
7153 defsubr (&Sface_font); | |
7154 defsubr (&Sframe_face_alist); | |
7155 defsubr (&Sinternal_set_font_selection_order); | |
7156 defsubr (&Sinternal_set_alternative_font_family_alist); | |
33372
2a665186a9e9
(Vface_alternative_font_registry_alist): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
33275
diff
changeset
|
7157 defsubr (&Sinternal_set_alternative_font_registry_alist); |
24995 | 7158 #if GLYPH_DEBUG |
7159 defsubr (&Sdump_face); | |
7160 defsubr (&Sshow_face_resources); | |
7161 #endif /* GLYPH_DEBUG */ | |
7162 defsubr (&Sclear_face_cache); | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
7163 defsubr (&Stty_suppress_bold_inverse_default_colors); |
24995 | 7164 |
29711
913fab478495
(syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
Gerd Moellmann <gerd@gnu.org>
parents:
29599
diff
changeset
|
7165 #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
|
7166 defsubr (&Sdump_colors); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
7167 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
7168 |
25270 | 7169 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit, |
7170 "*Limit for font matching.\n\ | |
7171 If an integer > 0, font matching functions won't load more than\n\ | |
7172 that number of fonts when searching for a matching font."); | |
7173 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT); | |
7174 | |
24995 | 7175 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults, |
7176 "List of global face definitions (for internal use only.)"); | |
7177 Vface_new_frame_defaults = Qnil; | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30211
diff
changeset
|
7178 |
24995 | 7179 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple, |
7180 "*Default stipple pattern used on monochrome displays.\n\ | |
7181 This stipple pattern is used on monochrome displays\n\ | |
7182 instead of shades of gray for a face background color.\n\ | |
7183 See `set-face-stipple' for possible values for this variable."); | |
7184 Vface_default_stipple = build_string ("gray3"); | |
7185 | |
30973
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7186 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
|
7187 "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
|
7188 Vtty_defined_color_alist = Qnil; |
2f3dc355bcaf
(lface_equal_p): Compare strings differently.
Gerd Moellmann <gerd@gnu.org>
parents:
30707
diff
changeset
|
7189 |
24995 | 7190 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed, |
7191 "Allowed scalable fonts.\n\ | |
7192 A value of nil means don't allow any scalable fonts.\n\ | |
7193 A value of t means allow any scalable font.\n\ | |
7194 Otherwise, value must be a list of regular expressions. A font may be\n\ | |
7195 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
|
7196 #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
|
7197 /* 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
|
7198 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
|
7199 Vscalable_fonts_allowed = Qt; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7200 #else |
24995 | 7201 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
|
7202 #endif |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
7203 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
7204 #ifdef HAVE_WINDOW_SYSTEM |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
7205 defsubr (&Sbitmap_spec_p); |
24995 | 7206 defsubr (&Sx_list_fonts); |
7207 defsubr (&Sinternal_face_x_get_resource); | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
7208 defsubr (&Sx_family_fonts); |
24995 | 7209 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
|
7210 #endif /* HAVE_WINDOW_SYSTEM */ |
2336 | 7211 } |