Mercurial > emacs
annotate src/xfaces.c @ 28341:f89c8f185c0d
*** empty log message ***
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 26 Mar 2000 23:05:27 +0000 |
parents | 73181b84ea57 |
children | 26f2a2e9a2b5 |
rev | line source |
---|---|
24995 | 1 /* xfaces.c -- "Face" primitives. |
2 Copyright (C) 1993, 1994, 1998, 1999 Free Software Foundation. | |
2342 | 3 |
2336 | 4 This file is part of GNU Emacs. |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
2342 | 8 the Free Software Foundation; either version 2, or (at your option) |
2336 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14090
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14090
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
2336 | 20 |
24995 | 21 /* New face implementation by Gerd Moellmann <gerd@gnu.org>. */ |
22 | |
23 /* Faces. | |
24 | |
25 When using Emacs with X, the display style of characters can be | |
26 changed by defining `faces'. Each face can specify the following | |
27 display attributes: | |
28 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
29 1. Font family name. |
24995 | 30 |
31 2. Relative proportionate width, aka character set width or set | |
32 width (swidth), e.g. `semi-compressed'. | |
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. |
24995 | 35 |
36 4. Font weight, e.g. `bold'. | |
37 | |
38 5. Font slant, e.g. `italic'. | |
39 | |
40 6. Foreground color. | |
41 | |
42 7. Background color. | |
43 | |
44 8. Whether or not characters should be underlined, and in what color. | |
45 | |
46 9. Whether or not characters should be displayed in inverse video. | |
47 | |
48 10. A background stipple, a bitmap. | |
49 | |
50 11. Whether or not characters should be overlined, and in what color. | |
51 | |
52 12. Whether or not characters should be strike-through, and in what | |
53 color. | |
54 | |
55 13. Whether or not a box should be drawn around characters, the box | |
56 type, and, for simple boxes, in what color. | |
57 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
58 14. Font or fontset pattern, or nil. This is a special attribute. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
59 When this attribyte is specified, the face uses a font opened by |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
60 that pattern as is. In addition, all the other font-related |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
61 attributes (1st thru 5th) are generated from the opened font name. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
62 On the other hand, if one of the other font-related attributes are |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
63 specified, this attribute is set to nil. In that case, the face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
64 doesn't inherit this attribute from the `default' face, and uses a |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
65 font determined by the other attributes (those may be inherited |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
66 from the `default' face). |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
67 |
24995 | 68 Faces are frame-local by nature because Emacs allows to define the |
69 same named face (face names are symbols) differently for different | |
70 frames. Each frame has an alist of face definitions for all named | |
71 faces. The value of a named face in such an alist is a Lisp vector | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
72 with the symbol `face' in slot 0, and a slot for each of the face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
73 attributes mentioned above. |
24995 | 74 |
75 There is also a global face alist `Vface_new_frame_defaults'. Face | |
76 definitions from this list are used to initialize faces of newly | |
77 created frames. | |
78 | |
79 A face doesn't have to specify all attributes. Those not specified | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
80 have a value of `unspecified'. Faces specifying all attributes but |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
81 the 14th are called `fully-specified'. |
24995 | 82 |
83 | |
84 Face merging. | |
85 | |
86 The display style of a given character in the text is determined by | |
87 combining several faces. This process is called `face merging'. | |
88 Any aspect of the display style that isn't specified by overlays or | |
89 text properties is taken from the `default' face. Since it is made | |
90 sure that the default face is always fully-specified, face merging | |
91 always results in a fully-specified face. | |
92 | |
93 | |
94 Face realization. | |
95 | |
96 After all face attributes for a character have been determined by | |
97 merging faces of that character, that face is `realized'. The | |
98 realization process maps face attributes to what is physically | |
99 available on the system where Emacs runs. The result is a | |
100 `realized face' in form of a struct face which is stored in the | |
101 face cache of the frame on which it was realized. | |
102 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
103 Face realization is done in the context of the character to display |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
104 because different fonts may be used for different characters. In |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
105 other words, for characters that have different font |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
106 specifications, different realized faces are needed to display |
24995 | 107 them. |
108 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
109 Font specification is done by fontsets. See the comment in |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
110 fontset.c for the details. In the current implementation, all ASCII |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
111 characters share the same font in a fontset. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
112 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
113 Faces are at first realized for ASCII characters, and, at that |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
114 time, assigned a specific realized fontset. Hereafter, we call |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
115 such a face as `ASCII face'. When a face for a multibyte character |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
116 is realized, it inherits (thus shares) a fontset of an ASCII face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
117 that has the same attributes other than font-related ones. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
118 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
119 Thus, all realzied face have a realized fontset. |
24995 | 120 |
121 | |
122 Unibyte text. | |
123 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
124 Unibyte text (i.e. raw 8-bit characters) is displayed with the same |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
125 font as ASCII characters. That is because it is expected that |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
126 unibyte text users specify a font that is suitable both for ASCII |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
127 and raw 8-bit characters. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
128 |
24995 | 129 |
130 Font selection. | |
131 | |
132 Font selection tries to find the best available matching font for a | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
133 given (character, face) combination. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
134 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
135 If the face specifies a fontset name, that fontset determines a |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
136 pattern for fonts of the given character. If the face specifies a |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
137 font name or the other font-related attributes, a fontset is |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
138 realized from the default fontset. In that case, that |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
139 specification determines a pattern for ASCII characters and the |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
140 default fontset determines a pattern for multibyte characters. |
24995 | 141 |
142 Available fonts on the system on which Emacs runs are then matched | |
143 against the font pattern. The result of font selection is the best | |
144 match for the given face attributes in this font list. | |
145 | |
146 Font selection can be influenced by the user. | |
147 | |
148 1. The user can specify the relative importance he gives the face | |
149 attributes width, height, weight, and slant by setting | |
150 face-font-selection-order (faces.el) to a list of face attribute | |
151 names. The default is '(:width :height :weight :slant), and means | |
152 that font selection first tries to find a good match for the font | |
153 width specified by a face, then---within fonts with that | |
154 width---tries to find a best match for the specified font height, | |
155 etc. | |
156 | |
157 2. Setting face-alternative-font-family-alist allows the user to | |
158 specify alternative font families to try if a family specified by a | |
159 face doesn't exist. | |
160 | |
161 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
162 Character compositition. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
163 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
164 Usually, the realization process is already finished when Emacs |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
165 actually reflects the desired glyph matrix on the screen. However, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
166 on displaying a composition (sequence of characters to be composed |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
167 on the screen), a suitable font for the components of the |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
168 composition is selected and realized while drawing them on the |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
169 screen, i.e. the realization process is delayed but in principle |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
170 the same. |
24995 | 171 |
172 | |
173 Initialization of basic faces. | |
174 | |
175 The faces `default', `modeline' are considered `basic faces'. | |
176 When redisplay happens the first time for a newly created frame, | |
177 basic faces are realized for CHARSET_ASCII. Frame parameters are | |
178 used to fill in unspecified attributes of the default face. */ | |
179 | |
180 /* Define SCALABLE_FONTS to a non-zero value to enable scalable | |
181 font use. Define it to zero to disable scalable font use. | |
182 | |
183 Use of too many or too large scalable fonts can crash XFree86 | |
184 servers. That's why I've put the code dealing with scalable fonts | |
185 in #if's. */ | |
186 | |
187 #define SCALABLE_FONTS 1 | |
2342 | 188 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25890
diff
changeset
|
189 #include <config.h> |
2336 | 190 #include <sys/types.h> |
191 #include <sys/stat.h> | |
192 #include "lisp.h" | |
17047 | 193 #include "charset.h" |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
194 #include "frame.h" |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
195 |
9572 | 196 #ifdef HAVE_X_WINDOWS |
2336 | 197 #include "xterm.h" |
17047 | 198 #include "fontset.h" |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
199 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
200 #include <Xm/Xm.h> |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
201 #include <Xm/XmStrDefs.h> |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
202 #endif /* USE_MOTIF */ |
9572 | 203 #endif |
24995 | 204 |
9572 | 205 #ifdef MSDOS |
206 #include "dosfns.h" | |
207 #endif | |
24995 | 208 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
209 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
210 #include "w32term.h" |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
211 #include "fontset.h" |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
212 /* 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
|
213 code with #ifdef blocks. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
214 #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
|
215 #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
|
216 #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
|
217 #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
|
218 #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
|
219 #define GCGraphicsExposures 0 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
220 /* 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
|
221 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
|
222 #define FONT_WIDTH FONT_MAX_WIDTH |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
223 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
224 |
2336 | 225 #include "buffer.h" |
2391 | 226 #include "dispextern.h" |
2438 | 227 #include "blockinput.h" |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
228 #include "window.h" |
8848 | 229 #include "intervals.h" |
2336 | 230 |
9572 | 231 #ifdef HAVE_X_WINDOWS |
24995 | 232 |
233 /* 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
|
234 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
|
235 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
|
236 #included. */ |
24995 | 237 |
3436
291f28da7ea1
Test XOS_NEEDS_TIME_H, not HPUX, for including time.hj.
Richard M. Stallman <rms@gnu.org>
parents:
3401
diff
changeset
|
238 #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
|
239 #include <time.h> |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
240 #undef USG |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
241 #include <X11/Xos.h> |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
242 #define USG |
d968bcba16af
* xfaces.c [XOS_NEEDS_TIME_H]: #undef USG while #including
Jim Blandy <jimb@redhat.com>
parents:
3882
diff
changeset
|
243 #define __TIMEVAL__ |
24995 | 244 #else /* not XOS_NEEDS_TIME_H */ |
2336 | 245 #include <X11/Xos.h> |
24995 | 246 #endif /* not XOS_NEEDS_TIME_H */ |
247 | |
9572 | 248 #endif /* HAVE_X_WINDOWS */ |
24995 | 249 |
250 #include <stdio.h> | |
251 #include <ctype.h> | |
252 #include "keyboard.h" | |
253 | |
254 #ifndef max | |
255 #define max(A, B) ((A) > (B) ? (A) : (B)) | |
256 #define min(A, B) ((A) < (B) ? (A) : (B)) | |
257 #define abs(X) ((X) < 0 ? -(X) : (X)) | |
258 #endif | |
259 | |
260 /* Non-zero if face attribute ATTR is unspecified. */ | |
261 | |
262 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified) | |
263 | |
264 /* Value is the number of elements of VECTOR. */ | |
265 | |
266 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR)) | |
267 | |
268 /* Make a copy of string S on the stack using alloca. Value is a pointer | |
269 to the copy. */ | |
270 | |
271 #define STRDUPA(S) strcpy ((char *) alloca (strlen ((S)) + 1), (S)) | |
272 | |
273 /* Make a copy of the contents of Lisp string S on the stack using | |
274 alloca. Value is a pointer to the copy. */ | |
275 | |
276 #define LSTRDUPA(S) STRDUPA (XSTRING ((S))->data) | |
277 | |
278 /* Size of hash table of realized faces in face caches (should be a | |
279 prime number). */ | |
280 | |
281 #define FACE_CACHE_BUCKETS_SIZE 1001 | |
282 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
283 /* A definition of XColor for non-X frames. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
284 #ifndef HAVE_X_WINDOWS |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
285 typedef struct { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
286 unsigned long pixel; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
287 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
|
288 char flags; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
289 char pad; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
290 } XColor; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
291 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
292 |
24995 | 293 /* Keyword symbols used for face attribute names. */ |
294 | |
295 Lisp_Object QCfamily, QCheight, QCweight, QCslant, QCunderline; | |
296 Lisp_Object QCinverse_video, QCforeground, QCbackground, QCstipple; | |
297 Lisp_Object QCwidth, QCfont, QCbold, QCitalic; | |
298 Lisp_Object QCreverse_video; | |
299 Lisp_Object QCoverline, QCstrike_through, QCbox; | |
300 | |
301 /* Symbols used for attribute values. */ | |
302 | |
303 Lisp_Object Qnormal, Qbold, Qultra_light, Qextra_light, Qlight; | |
304 Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold; | |
305 Lisp_Object Qoblique, Qitalic, Qreverse_oblique, Qreverse_italic; | |
306 Lisp_Object Qultra_condensed, Qextra_condensed, Qcondensed; | |
307 Lisp_Object Qsemi_condensed, Qsemi_expanded, Qexpanded, Qextra_expanded; | |
308 Lisp_Object Qultra_expanded; | |
309 Lisp_Object Qreleased_button, Qpressed_button; | |
310 Lisp_Object QCstyle, QCcolor, QCline_width; | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
311 Lisp_Object Qunspecified; |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
312 |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
313 char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg"; |
24995 | 314 |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
315 /* 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
|
316 has changed, frame_update_face_colors. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
317 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
318 Lisp_Object Qframe_update_face_colors; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
319 |
24995 | 320 /* Names of basic faces. */ |
321 | |
26574
5510d0cc07c3
Don't duplicate Qmode_line definition done elsewhere.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
322 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
|
323 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
|
324 extern Lisp_Object Qmode_line; |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
325 |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
326 /* 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
|
327 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
|
328 the aliased face. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
329 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
330 Lisp_Object Qface_alias; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
331 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
332 /* Names of frame parameters related to faces. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
333 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
334 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
|
335 extern Lisp_Object Qborder_color, Qcursor_color, Qmouse_color; |
24995 | 336 |
337 /* Default stipple pattern used on monochrome displays. This stipple | |
338 pattern is used on monochrome displays instead of shades of gray | |
339 for a face background color. See `set-face-stipple' for possible | |
340 values for this variable. */ | |
341 | |
342 Lisp_Object Vface_default_stipple; | |
343 | |
344 /* Alist of alternative font families. Each element is of the form | |
345 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded, | |
346 try FAMILY1, then FAMILY2, ... */ | |
347 | |
348 Lisp_Object Vface_alternative_font_family_alist; | |
349 | |
350 /* Allowed scalable fonts. A value of nil means don't allow any | |
351 scalable fonts. A value of t means allow the use of any scalable | |
352 font. Otherwise, value must be a list of regular expressions. A | |
353 font may be scaled if its name matches a regular expression in the | |
354 list. */ | |
355 | |
356 #if SCALABLE_FONTS | |
357 Lisp_Object Vscalable_fonts_allowed; | |
358 #endif | |
359 | |
25270 | 360 /* Maximum number of fonts to consider in font_list. If not an |
361 integer > 0, DEFAULT_FONT_LIST_LIMIT is used instead. */ | |
362 | |
363 Lisp_Object Vfont_list_limit; | |
364 #define DEFAULT_FONT_LIST_LIMIT 100 | |
365 | |
24995 | 366 /* The symbols `foreground-color' and `background-color' which can be |
367 used as part of a `face' property. This is for compatibility with | |
368 Emacs 20.2. */ | |
369 | |
370 Lisp_Object Qforeground_color, Qbackground_color; | |
371 | |
372 /* The symbols `face' and `mouse-face' used as text properties. */ | |
2342 | 373 |
23730
c71c3ac4b80a
(Qmouse_face): Replace definition with extern decl.
Richard M. Stallman <rms@gnu.org>
parents:
21766
diff
changeset
|
374 Lisp_Object Qface; |
24995 | 375 extern Lisp_Object Qmouse_face; |
376 | |
377 /* Error symbol for wrong_type_argument in load_pixmap. */ | |
378 | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
379 Lisp_Object Qbitmap_spec_p; |
2391 | 380 |
24995 | 381 /* Alist of global face definitions. Each element is of the form |
382 (FACE . LFACE) where FACE is a symbol naming a face and LFACE | |
383 is a Lisp vector of face attributes. These faces are used | |
384 to initialize faces for new frames. */ | |
385 | |
386 Lisp_Object Vface_new_frame_defaults; | |
387 | |
388 /* The next ID to assign to Lisp faces. */ | |
389 | |
390 static int next_lface_id; | |
391 | |
392 /* A vector mapping Lisp face Id's to face names. */ | |
393 | |
394 static Lisp_Object *lface_id_to_name; | |
395 static int lface_id_to_name_size; | |
396 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
397 /* tty color-related functions (defined on lisp/term/tty-colors.el). */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
398 Lisp_Object Qtty_color_desc, Qtty_color_by_index; |
24995 | 399 |
400 /* Counter for calls to clear_face_cache. If this counter reaches | |
401 CLEAR_FONT_TABLE_COUNT, and a frame has more than | |
402 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */ | |
403 | |
404 static int clear_font_table_count; | |
405 #define CLEAR_FONT_TABLE_COUNT 100 | |
406 #define CLEAR_FONT_TABLE_NFONTS 10 | |
407 | |
408 /* Non-zero means face attributes have been changed since the last | |
409 redisplay. Used in redisplay_internal. */ | |
410 | |
411 int face_change_count; | |
412 | |
413 /* The total number of colors currently allocated. */ | |
414 | |
415 #if GLYPH_DEBUG | |
416 static int ncolors_allocated; | |
417 static int npixmaps_allocated; | |
418 static int ngcs; | |
419 #endif | |
420 | |
421 | |
2336 | 422 |
24995 | 423 /* Function prototypes. */ |
424 | |
425 struct font_name; | |
426 struct table_entry; | |
427 | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
428 static Lisp_Object resolve_face_name P_ ((Lisp_Object)); |
24995 | 429 static int may_use_scalable_font_p P_ ((struct font_name *, char *)); |
430 static void set_font_frame_param P_ ((Lisp_Object, Lisp_Object)); | |
431 static int better_font_p P_ ((int *, struct font_name *, struct font_name *, | |
432 int)); | |
433 static int first_font_matching P_ ((struct frame *f, char *, | |
434 struct font_name *)); | |
435 static int x_face_list_fonts P_ ((struct frame *, char *, | |
436 struct font_name *, int, int, int)); | |
437 static int font_scalable_p P_ ((struct font_name *)); | |
438 static int get_lface_attributes P_ ((struct frame *, Lisp_Object, Lisp_Object *, int)); | |
439 static int load_pixmap P_ ((struct frame *, Lisp_Object, unsigned *, unsigned *)); | |
440 static char *xstrdup P_ ((char *)); | |
441 static unsigned char *xstrlwr P_ ((unsigned char *)); | |
442 static void signal_error P_ ((char *, Lisp_Object)); | |
443 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
|
444 static void load_face_font P_ ((struct frame *, struct face *, int)); |
24995 | 445 static void load_face_colors P_ ((struct frame *, struct face *, Lisp_Object *)); |
446 static void free_face_colors P_ ((struct frame *, struct face *)); | |
447 static int face_color_gray_p P_ ((struct frame *, char *)); | |
448 static char *build_font_name P_ ((struct font_name *)); | |
449 static void free_font_names P_ ((struct font_name *, int)); | |
450 static int sorted_font_list P_ ((struct frame *, char *, | |
451 int (*cmpfn) P_ ((const void *, const void *)), | |
452 struct font_name **)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
453 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
|
454 Lisp_Object, struct font_name **)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
455 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
|
456 Lisp_Object, Lisp_Object, struct font_name **)); |
24995 | 457 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
|
458 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
|
459 struct face *, int)); |
24995 | 460 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
|
461 Lisp_Object *, int, struct face *)); |
24995 | 462 static struct face *realize_tty_face P_ ((struct face_cache *, |
463 Lisp_Object *, int)); | |
464 static int realize_basic_faces P_ ((struct frame *)); | |
465 static int realize_default_face P_ ((struct frame *)); | |
466 static void realize_named_face P_ ((struct frame *, Lisp_Object, int)); | |
467 static int lface_fully_specified_p P_ ((Lisp_Object *)); | |
468 static int lface_equal_p P_ ((Lisp_Object *, Lisp_Object *)); | |
469 static unsigned hash_string_case_insensitive P_ ((Lisp_Object)); | |
470 static unsigned lface_hash P_ ((Lisp_Object *)); | |
471 static int lface_same_font_attributes_p P_ ((Lisp_Object *, Lisp_Object *)); | |
472 static struct face_cache *make_face_cache P_ ((struct frame *)); | |
473 static void free_realized_face P_ ((struct frame *, struct face *)); | |
474 static void clear_face_gcs P_ ((struct face_cache *)); | |
475 static void free_face_cache P_ ((struct face_cache *)); | |
476 static int face_numeric_weight P_ ((Lisp_Object)); | |
477 static int face_numeric_slant P_ ((Lisp_Object)); | |
478 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
|
479 static int face_fontset P_ ((Lisp_Object *)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
480 static char *choose_face_font P_ ((struct frame *, Lisp_Object *, int, int)); |
24995 | 481 static void merge_face_vectors P_ ((Lisp_Object *from, Lisp_Object *)); |
482 static void merge_face_vector_with_property P_ ((struct frame *, Lisp_Object *, | |
483 Lisp_Object)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
484 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
|
485 Lisp_Object, int, int)); |
24995 | 486 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
|
487 static struct face *make_realized_face P_ ((Lisp_Object *)); |
24995 | 488 static void free_realized_faces P_ ((struct face_cache *)); |
489 static char *best_matching_font P_ ((struct frame *, Lisp_Object *, | |
490 struct font_name *, int)); | |
491 static void cache_face P_ ((struct face_cache *, struct face *, unsigned)); | |
492 static void uncache_face P_ ((struct face_cache *, struct face *)); | |
493 static int xlfd_numeric_slant P_ ((struct font_name *)); | |
494 static int xlfd_numeric_weight P_ ((struct font_name *)); | |
495 static int xlfd_numeric_swidth P_ ((struct font_name *)); | |
496 static Lisp_Object xlfd_symbolic_slant P_ ((struct font_name *)); | |
497 static Lisp_Object xlfd_symbolic_weight P_ ((struct font_name *)); | |
498 static Lisp_Object xlfd_symbolic_swidth P_ ((struct font_name *)); | |
499 static int xlfd_fixed_p P_ ((struct font_name *)); | |
500 static int xlfd_numeric_value P_ ((struct table_entry *, int, struct font_name *, | |
501 int, int)); | |
502 static Lisp_Object xlfd_symbolic_value P_ ((struct table_entry *, int, | |
503 struct font_name *, int, int)); | |
504 static struct table_entry *xlfd_lookup_field_contents P_ ((struct table_entry *, int, | |
505 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
|
506 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
507 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 508 |
509 static int split_font_name P_ ((struct frame *, struct font_name *, int)); | |
510 static int xlfd_point_size P_ ((struct frame *, struct font_name *)); | |
511 static void sort_fonts P_ ((struct frame *, struct font_name *, int, | |
512 int (*cmpfn) P_ ((const void *, const void *)))); | |
513 static GC x_create_gc P_ ((struct frame *, unsigned long, XGCValues *)); | |
514 static void x_free_gc P_ ((struct frame *, GC)); | |
515 static void clear_font_table P_ ((struct frame *)); | |
516 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
517 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
518 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
|
519 #endif /* WINDOWSNT */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
520 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
521 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 522 |
523 | |
524 /*********************************************************************** | |
525 Utilities | |
526 ***********************************************************************/ | |
527 | |
528 #ifdef HAVE_X_WINDOWS | |
529 | |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
530 /* 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
|
531 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
|
532 is called. */ |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
533 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
534 void |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
535 x_free_colors (f, pixels, npixels) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
536 struct frame *f; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
537 unsigned long *pixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
538 int npixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
539 { |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
540 int class = FRAME_X_DISPLAY_INFO (f)->visual->class; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
541 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
542 /* 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
|
543 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
|
544 if (class != StaticColor && class != StaticGray && class != TrueColor) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
545 { |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
546 Display *dpy = FRAME_X_DISPLAY (f); |
27984
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
547 Colormap cmap = FRAME_X_COLORMAP (f); |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
548 Screen *screen = FRAME_X_SCREEN (f); |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
549 int default_cmap_p = cmap == DefaultColormapOfScreen (screen); |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
550 |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
551 if (default_cmap_p) |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
552 { |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
553 /* Be paranoid. If using the default color map, don't ever |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
554 try to free the default black and white colors. */ |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
555 int screen_no = XScreenNumberOfScreen (screen); |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
556 unsigned long black = BlackPixel (dpy, screen_no); |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
557 unsigned long white = WhitePixel (dpy, screen_no); |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
558 unsigned long *px; |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
559 int i, j; |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
560 |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
561 px = (unsigned long *) alloca (npixels * sizeof *px); |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
562 for (i = j = 0; i < npixels; ++i) |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
563 if (pixels[i] != black && pixels[i] != white) |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
564 px[j++] = pixels[i]; |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
565 |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
566 if (j) |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
567 XFreeColors (dpy, cmap, px, j, 0); |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
568 } |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
569 else |
574e0b398168
(x_free_colors): Access colormap of frame using
Gerd Moellmann <gerd@gnu.org>
parents:
27982
diff
changeset
|
570 XFreeColors (dpy, cmap, pixels, npixels, 0); |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
571 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
572 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
573 |
24995 | 574 /* Create and return a GC for use on frame F. GC values and mask |
575 are given by XGCV and MASK. */ | |
576 | |
577 static INLINE GC | |
578 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
|
579 struct frame *f; |
24995 | 580 unsigned long mask; |
581 XGCValues *xgcv; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
582 { |
2336 | 583 GC gc; |
24995 | 584 BLOCK_INPUT; |
585 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv); | |
586 UNBLOCK_INPUT; | |
587 IF_DEBUG (++ngcs); | |
588 return gc; | |
589 } | |
590 | |
591 | |
592 /* Free GC which was used on frame F. */ | |
593 | |
594 static INLINE void | |
595 x_free_gc (f, gc) | |
596 struct frame *f; | |
597 GC gc; | |
598 { | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
599 BLOCK_INPUT; |
24995 | 600 xassert (--ngcs >= 0); |
601 XFreeGC (FRAME_X_DISPLAY (f), gc); | |
602 UNBLOCK_INPUT; | |
603 } | |
604 | |
605 #endif /* HAVE_X_WINDOWS */ | |
606 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
607 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
608 /* W32 emulation of GCs */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
609 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
610 static INLINE GC |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
611 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
|
612 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
613 unsigned long mask; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
614 XGCValues *xgcv; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
615 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
616 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
617 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
618 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
|
619 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
620 IF_DEBUG (++ngcs); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
621 return gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
622 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
623 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
624 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
625 /* 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
|
626 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
627 static INLINE void |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
628 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
|
629 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
630 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
631 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
632 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
633 xassert (--ngcs >= 0); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
634 xfree (gc); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
635 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
636 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
637 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
638 #endif /* WINDOWSNT */ |
24995 | 639 |
640 /* Like strdup, but uses xmalloc. */ | |
641 | |
642 static char * | |
643 xstrdup (s) | |
644 char *s; | |
645 { | |
646 int len = strlen (s) + 1; | |
647 char *p = (char *) xmalloc (len); | |
648 bcopy (s, p, len); | |
649 return p; | |
650 } | |
651 | |
652 | |
653 /* Like stricmp. Used to compare parts of font names which are in | |
654 ISO8859-1. */ | |
655 | |
656 int | |
657 xstricmp (s1, s2) | |
658 unsigned char *s1, *s2; | |
659 { | |
660 while (*s1 && *s2) | |
661 { | |
662 unsigned char c1 = tolower (*s1); | |
663 unsigned char c2 = tolower (*s2); | |
664 if (c1 != c2) | |
665 return c1 < c2 ? -1 : 1; | |
666 ++s1, ++s2; | |
667 } | |
668 | |
669 if (*s1 == 0) | |
670 return *s2 == 0 ? 0 : -1; | |
671 return 1; | |
672 } | |
673 | |
674 | |
675 /* Like strlwr, which might not always be available. */ | |
676 | |
677 static unsigned char * | |
678 xstrlwr (s) | |
679 unsigned char *s; | |
680 { | |
681 unsigned char *p = s; | |
682 | |
683 for (p = s; *p; ++p) | |
684 *p = tolower (*p); | |
685 | |
686 return s; | |
687 } | |
688 | |
689 | |
690 /* Signal `error' with message S, and additional argument ARG. */ | |
691 | |
692 static void | |
693 signal_error (s, arg) | |
694 char *s; | |
695 Lisp_Object arg; | |
696 { | |
697 Fsignal (Qerror, Fcons (build_string (s), Fcons (arg, Qnil))); | |
698 } | |
699 | |
700 | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
701 /* 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
|
702 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
|
703 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
|
704 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
|
705 Lisp function definitions. */ |
24995 | 706 |
707 static INLINE struct frame * | |
708 frame_or_selected_frame (frame, nparam) | |
709 Lisp_Object frame; | |
710 int nparam; | |
711 { | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
712 if (NILP (frame)) |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
713 frame = selected_frame; |
24995 | 714 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
715 CHECK_LIVE_FRAME (frame, nparam); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
716 return XFRAME (frame); |
24995 | 717 } |
718 | |
719 | |
720 /*********************************************************************** | |
721 Frames and faces | |
722 ***********************************************************************/ | |
723 | |
724 /* 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
|
725 |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
726 void |
24995 | 727 init_frame_faces (f) |
728 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
|
729 { |
24995 | 730 /* Make a face cache, if F doesn't have one. */ |
731 if (FRAME_FACE_CACHE (f) == NULL) | |
732 FRAME_FACE_CACHE (f) = make_face_cache (f); | |
733 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
734 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 735 /* 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
|
736 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
|
737 { |
24995 | 738 if (FRAME_X_IMAGE_CACHE (f) == NULL) |
739 FRAME_X_IMAGE_CACHE (f) = make_image_cache (); | |
740 ++FRAME_X_IMAGE_CACHE (f)->refcount; | |
741 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
742 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 743 |
744 /* Realize basic faces. Must have enough information in frame | |
745 parameters to realize basic faces at this point. */ | |
746 #ifdef HAVE_X_WINDOWS | |
747 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f)) | |
748 #endif | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
749 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
750 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
|
751 #endif |
24995 | 752 if (!realize_basic_faces (f)) |
753 abort (); | |
754 } | |
755 | |
756 | |
757 /* Free face cache of frame F. Called from Fdelete_frame. */ | |
758 | |
759 void | |
760 free_frame_faces (f) | |
761 struct frame *f; | |
762 { | |
763 struct face_cache *face_cache = FRAME_FACE_CACHE (f); | |
764 | |
765 if (face_cache) | |
766 { | |
767 free_face_cache (face_cache); | |
768 FRAME_FACE_CACHE (f) = NULL; | |
769 } | |
770 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
771 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
772 if (FRAME_WINDOW_P (f)) |
24995 | 773 { |
774 struct image_cache *image_cache = FRAME_X_IMAGE_CACHE (f); | |
775 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
|
776 { |
24995 | 777 --image_cache->refcount; |
778 if (image_cache->refcount == 0) | |
779 free_image_cache (f); | |
780 } | |
781 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
782 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 783 } |
784 | |
785 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
786 /* 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
|
787 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
|
788 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
|
789 of named faces. */ |
24995 | 790 |
791 void | |
792 recompute_basic_faces (f) | |
793 struct frame *f; | |
794 { | |
795 if (FRAME_FACE_CACHE (f)) | |
796 { | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
797 clear_face_cache (0); |
26601
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
798 if (!realize_basic_faces (f)) |
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
799 abort (); |
24995 | 800 } |
801 } | |
802 | |
803 | |
804 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means | |
805 try to free unused fonts, too. */ | |
806 | |
807 void | |
808 clear_face_cache (clear_fonts_p) | |
809 int clear_fonts_p; | |
810 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
811 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 812 Lisp_Object tail, frame; |
813 struct frame *f; | |
814 | |
815 if (clear_fonts_p | |
816 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT) | |
817 { | |
818 /* From time to time see if we can unload some fonts. This also | |
819 frees all realized faces on all frames. Fonts needed by | |
820 faces will be loaded again when faces are realized again. */ | |
821 clear_font_table_count = 0; | |
822 | |
823 FOR_EACH_FRAME (tail, frame) | |
824 { | |
825 f = XFRAME (frame); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
826 if (FRAME_WINDOW_P (f) |
24995 | 827 && 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
|
828 { |
24995 | 829 free_all_realized_faces (frame); |
830 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
|
831 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
832 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
833 } |
24995 | 834 else |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
835 { |
24995 | 836 /* Clear GCs of realized faces. */ |
837 FOR_EACH_FRAME (tail, frame) | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
838 { |
24995 | 839 f = XFRAME (frame); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
840 if (FRAME_WINDOW_P (f)) |
24995 | 841 { |
842 clear_face_gcs (FRAME_FACE_CACHE (f)); | |
843 clear_image_cache (f, 0); | |
844 } | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
845 } |
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
846 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
847 #endif /* HAVE_WINDOW_SYSTEM */ |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
848 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
849 |
24995 | 850 |
851 DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0, | |
852 "Clear face caches on all frames.\n\ | |
853 Optional THOROUGHLY non-nil means try to free unused fonts, too.") | |
854 (thorougly) | |
855 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
|
856 { |
24995 | 857 clear_face_cache (!NILP (thorougly)); |
858 return Qnil; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
859 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
860 |
24995 | 861 |
862 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
863 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 864 |
865 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
866 /* 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
|
867 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
|
868 from time to time. */ |
24995 | 869 |
870 static void | |
871 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
|
872 struct frame *f; |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
873 { |
24995 | 874 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); |
875 Lisp_Object rest, frame; | |
876 int i; | |
877 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
878 xassert (FRAME_WINDOW_P (f)); |
24995 | 879 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
880 /* Free those fonts that are not used by the frame F as the default. */ |
24995 | 881 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
|
882 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
883 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
|
884 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
885 if (!font_info->name |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
886 || font_info->font == FRAME_FONT (f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
887 continue; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
888 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
889 /* Free names. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
890 if (font_info->full_name != font_info->name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
891 xfree (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
892 xfree (font_info->name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
893 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
894 /* Free the font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
895 BLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
896 #ifdef HAVE_X_WINDOWS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
897 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
|
898 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
899 #ifdef WINDOWSNT |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
900 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
|
901 #endif |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
902 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
903 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
904 /* Mark font table slot free. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
905 font_info->font = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
906 font_info->name = font_info->full_name = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
907 } |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
908 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
909 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
910 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 911 |
912 | |
913 | |
914 /*********************************************************************** | |
915 X Pixmaps | |
916 ***********************************************************************/ | |
917 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
918 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 919 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
920 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
|
921 "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
|
922 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
|
923 (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
|
924 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
|
925 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
|
926 (WIDTH + 7)/8 bytes.") |
14090
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
927 (object) |
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
928 Lisp_Object object; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
929 { |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
930 int pixmap_p = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
931 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
932 if (STRINGP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
933 /* 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
|
934 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
935 else if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
936 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
937 /* 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
|
938 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
|
939 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
|
940 Lisp_Object width, height, data; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
941 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
942 height = width = data = Qnil; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
943 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
944 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
945 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
946 width = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
947 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
948 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
949 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
950 height = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
951 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
952 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
953 data = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
954 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
955 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
956 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
957 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
958 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
959 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
|
960 / BITS_PER_CHAR); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
961 if (STRING_BYTES (XSTRING (data)) >= bytes_per_row * height) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
962 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
963 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
964 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
965 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
966 return pixmap_p ? Qt : Qnil; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
967 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
968 |
24995 | 969 |
970 /* Load a bitmap according to NAME (which is either a file name or a | |
971 pixmap spec) for use on frame F. Value is the bitmap_id (see | |
972 xfns.c). If NAME is nil, return with a bitmap id of zero. If | |
973 bitmap cannot be loaded, display a message saying so, and return | |
974 zero. Store the bitmap width in *W_PTR and its height in *H_PTR, | |
975 if these pointers are not null. */ | |
976 | |
977 static int | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
978 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
|
979 FRAME_PTR f; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
980 Lisp_Object name; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
981 unsigned int *w_ptr, *h_ptr; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
982 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
983 int bitmap_id; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
984 Lisp_Object tem; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
985 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
986 if (NILP (name)) |
24995 | 987 return 0; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
988 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
989 tem = Fbitmap_spec_p (name); |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
990 if (NILP (tem)) |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
991 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
|
992 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
993 BLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
994 if (CONSP (name)) |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
995 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
996 /* Decode a bitmap spec into a bitmap. */ |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
997 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
998 int h, w; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
999 Lisp_Object bits; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1000 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1001 w = XINT (Fcar (name)); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1002 h = XINT (Fcar (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1003 bits = Fcar (Fcdr (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1004 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1005 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
|
1006 w, h); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1007 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1008 else |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1009 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1010 /* 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
|
1011 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
|
1012 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1013 UNBLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1014 |
9902
32ed712a45a3
(load_pixmap): Handle bitmap_id < 0. F is a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9671
diff
changeset
|
1015 if (bitmap_id < 0) |
24995 | 1016 { |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1017 add_to_log ("Invalid or undefined bitmap %s", name, Qnil); |
24995 | 1018 bitmap_id = 0; |
1019 | |
1020 if (w_ptr) | |
1021 *w_ptr = 0; | |
1022 if (h_ptr) | |
1023 *h_ptr = 0; | |
1024 } | |
1025 else | |
1026 { | |
1027 #if GLYPH_DEBUG | |
1028 ++npixmaps_allocated; | |
1029 #endif | |
1030 if (w_ptr) | |
1031 *w_ptr = x_bitmap_width (f, bitmap_id); | |
1032 | |
1033 if (h_ptr) | |
1034 *h_ptr = x_bitmap_height (f, bitmap_id); | |
1035 } | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1036 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1037 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
|
1038 } |
9572 | 1039 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1040 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1041 |
9572 | 1042 |
2336 | 1043 |
24995 | 1044 /*********************************************************************** |
1045 Minimum font bounds | |
1046 ***********************************************************************/ | |
1047 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1048 #ifdef HAVE_WINDOW_SYSTEM |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1049 |
25062
050561b336aa
(load_face_colors): Load background color if setting
Gerd Moellmann <gerd@gnu.org>
parents:
24995
diff
changeset
|
1050 /* 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
|
1051 changes. */ |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1052 |
6879
471aebc1b151
(frame_update_line_height): Don't call x_set_window_size.
Richard M. Stallman <rms@gnu.org>
parents:
6784
diff
changeset
|
1053 int |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1054 frame_update_line_height (f) |
24995 | 1055 struct frame *f; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1056 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1057 int line_height, changed_p; |
25062
050561b336aa
(load_face_colors): Load background color if setting
Gerd Moellmann <gerd@gnu.org>
parents:
24995
diff
changeset
|
1058 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1059 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
|
1060 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
|
1061 FRAME_LINE_HEIGHT (f) = line_height; |
24995 | 1062 return changed_p; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1063 } |
24995 | 1064 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1065 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1066 |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
1067 |
24995 | 1068 /*********************************************************************** |
1069 Fonts | |
1070 ***********************************************************************/ | |
1071 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1072 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1073 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1074 /* 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
|
1075 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
|
1076 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
|
1077 |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1078 static void |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1079 load_face_font (f, face, c) |
24995 | 1080 struct frame *f; |
1081 struct face *face; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1082 int c; |
24995 | 1083 { |
1084 struct font_info *font_info = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1085 char *font_name; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1086 |
24995 | 1087 face->font_info_id = -1; |
1088 face->font = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1089 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1090 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
|
1091 if (!font_name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1092 return; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1093 |
24995 | 1094 BLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1095 font_info = FS_LOAD_FACE_FONT (f, c, font_name, face); |
24995 | 1096 UNBLOCK_INPUT; |
1097 | |
1098 if (font_info) | |
1099 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1100 face->font_info_id = font_info->font_idx; |
24995 | 1101 face->font = font_info->font; |
1102 face->font_name = font_info->full_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1103 if (face->gc) |
24995 | 1104 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1105 x_free_gc (f, face->gc); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1106 face->gc = 0; |
24995 | 1107 } |
1108 } | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1109 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1110 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
|
1111 build_string (font_name), Qnil); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1112 xfree (font_name); |
24995 | 1113 } |
1114 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1115 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1116 |
1117 | |
1118 | |
1119 /*********************************************************************** | |
1120 X Colors | |
1121 ***********************************************************************/ | |
1122 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1123 /* A version of defined_color for non-X frames. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1124 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1125 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
|
1126 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1127 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1128 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1129 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1130 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1131 Lisp_Object color_desc; |
27695
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1132 unsigned long color_idx = FACE_TTY_DEFAULT_COLOR, |
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1133 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
|
1134 int status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1135 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1136 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
|
1137 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1138 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1139 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1140 XSETFRAME (frame, f); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1141 status = 0; |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1142 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
|
1143 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
|
1144 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1145 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
|
1146 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
|
1147 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1148 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
|
1149 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
|
1150 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
|
1151 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1152 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1153 } |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1154 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
|
1155 /* 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
|
1156 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
|
1157 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
|
1158 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
|
1159 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1160 } |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1161 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
|
1162 { |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1163 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
|
1164 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
|
1165 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
|
1166 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
|
1167 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1168 |
27743
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1169 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
|
1170 status = 1; |
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1171 |
27695
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1172 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
|
1173 color_def->red = red; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1174 color_def->green = green; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1175 color_def->blue = blue; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1176 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1177 return status; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1178 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1179 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1180 /* Decide if color named COLOR is valid for the display associated |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1181 with the frame F; if so, return the rgb values in COLOR_DEF. If |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1182 ALLOC is nonzero, allocate a new colormap cell. |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1183 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1184 This does the right thing for any type of frame. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1185 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1186 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
|
1187 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1188 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1189 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1190 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1191 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1192 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
|
1193 return tty_defined_color (f, color_name, color_def, alloc); |
24995 | 1194 #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
|
1195 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
|
1196 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
|
1197 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1198 #ifdef WINDOWSNT |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1199 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
|
1200 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
|
1201 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1202 #ifdef macintosh |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1203 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
|
1204 /* FIXME: mac_defined_color doesn't exist! */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1205 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
|
1206 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1207 else |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1208 abort (); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1209 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1210 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1211 /* Given the index of the tty color, return its name, a Lisp string. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1212 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1213 Lisp_Object |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1214 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
|
1215 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1216 int idx; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1217 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1218 char *color; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1219 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1220 if (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
|
1221 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1222 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1223 Lisp_Object coldesc; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1224 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1225 XSETFRAME (frame, f); |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1226 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
|
1227 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1228 if (!NILP (coldesc)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1229 return XCAR (coldesc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1230 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1231 #ifdef MSDOS |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1232 /* 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
|
1233 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
|
1234 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
|
1235 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
|
1236 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1237 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1238 if (idx == FACE_TTY_DEFAULT_FG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1239 return build_string (unspecified_fg); |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1240 if (idx == FACE_TTY_DEFAULT_BG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1241 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
|
1242 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1243 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1244 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
|
1245 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1246 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1247 return Qunspecified; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1248 } |
24995 | 1249 |
1250 /* Return non-zero if COLOR_NAME is a shade of gray (or white or | |
1251 black) on frame F. The algorithm is taken from 20.2 faces.el. */ | |
1252 | |
1253 static int | |
1254 face_color_gray_p (f, color_name) | |
1255 struct frame *f; | |
1256 char *color_name; | |
1257 { | |
1258 XColor color; | |
1259 int gray_p; | |
1260 | |
1261 if (defined_color (f, color_name, &color, 0)) | |
1262 gray_p = ((abs (color.red - color.green) | |
1263 < max (color.red, color.green) / 20) | |
1264 && (abs (color.green - color.blue) | |
1265 < max (color.green, color.blue) / 20) | |
1266 && (abs (color.blue - color.red) | |
1267 < max (color.blue, color.red) / 20)); | |
1268 else | |
1269 gray_p = 0; | |
1270 | |
1271 return gray_p; | |
1272 } | |
1273 | |
1274 | |
1275 /* Return non-zero if color COLOR_NAME can be displayed on frame F. | |
1276 BACKGROUND_P non-zero means the color will be used as background | |
1277 color. */ | |
1278 | |
1279 static int | |
1280 face_color_supported_p (f, color_name, background_p) | |
1281 struct frame *f; | |
1282 char *color_name; | |
1283 int background_p; | |
1284 { | |
1285 Lisp_Object frame; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1286 XColor not_used; |
24995 | 1287 |
1288 XSETFRAME (frame, f); | |
26972
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1289 return (FRAME_WINDOW_P (f) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1290 ? (!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
|
1291 || xstricmp (color_name, "black") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1292 || xstricmp (color_name, "white") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1293 || (background_p |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1294 && 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
|
1295 || (!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
|
1296 && 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
|
1297 : 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
|
1298 } |
24995 | 1299 |
1300 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1301 DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0, |
24995 | 1302 "Return non-nil if COLOR is a shade of gray (or white or black).\n\ |
1303 FRAME specifies the frame and thus the display for interpreting COLOR.\n\ | |
1304 If FRAME is nil or omitted, use the selected frame.") | |
1305 (color, frame) | |
1306 Lisp_Object color, frame; | |
1307 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1308 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1309 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1310 CHECK_FRAME (frame, 0); |
24995 | 1311 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
|
1312 f = XFRAME (frame); |
24995 | 1313 return face_color_gray_p (f, XSTRING (color)->data) ? Qt : Qnil; |
1314 } | |
1315 | |
1316 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1317 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
|
1318 Scolor_supported_p, 2, 3, 0, |
24995 | 1319 "Return non-nil if COLOR can be displayed on FRAME.\n\ |
1320 BACKGROUND-P non-nil means COLOR is used as a background.\n\ | |
1321 If FRAME is nil or omitted, use the selected frame.\n\ | |
1322 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
|
1323 (color, frame, background_p) |
24995 | 1324 Lisp_Object frame, color, background_p; |
1325 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1326 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1327 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1328 CHECK_FRAME (frame, 0); |
24995 | 1329 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
|
1330 f = XFRAME (frame); |
24995 | 1331 if (face_color_supported_p (f, XSTRING (color)->data, !NILP (background_p))) |
1332 return Qt; | |
1333 return Qnil; | |
1334 } | |
1335 | |
1336 /* Load color with name NAME for use by face FACE on frame F. | |
1337 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX, | |
1338 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX, | |
1339 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the | |
1340 pixel color. If color cannot be loaded, display a message, and | |
1341 return the foreground, background or underline color of F, but | |
1342 record that fact in flags of the face so that we don't try to free | |
1343 these colors. */ | |
1344 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
1345 unsigned long |
24995 | 1346 load_color (f, face, name, target_index) |
1347 struct frame *f; | |
1348 struct face *face; | |
1349 Lisp_Object name; | |
1350 enum lface_attribute_index target_index; | |
1351 { | |
1352 XColor color; | |
1353 | |
1354 xassert (STRINGP (name)); | |
1355 xassert (target_index == LFACE_FOREGROUND_INDEX | |
1356 || target_index == LFACE_BACKGROUND_INDEX | |
1357 || target_index == LFACE_UNDERLINE_INDEX | |
1358 || target_index == LFACE_OVERLINE_INDEX | |
1359 || target_index == LFACE_STRIKE_THROUGH_INDEX | |
1360 || target_index == LFACE_BOX_INDEX); | |
1361 | |
1362 /* if the color map is full, defined_color will return a best match | |
1363 to the values in an existing cell. */ | |
1364 if (!defined_color (f, XSTRING (name)->data, &color, 1)) | |
1365 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1366 add_to_log ("Unable to load color \"%s\"", name, Qnil); |
24995 | 1367 |
1368 switch (target_index) | |
1369 { | |
1370 case LFACE_FOREGROUND_INDEX: | |
1371 face->foreground_defaulted_p = 1; | |
1372 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1373 break; | |
1374 | |
1375 case LFACE_BACKGROUND_INDEX: | |
1376 face->background_defaulted_p = 1; | |
1377 color.pixel = FRAME_BACKGROUND_PIXEL (f); | |
1378 break; | |
1379 | |
1380 case LFACE_UNDERLINE_INDEX: | |
1381 face->underline_defaulted_p = 1; | |
1382 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1383 break; | |
1384 | |
1385 case LFACE_OVERLINE_INDEX: | |
1386 face->overline_color_defaulted_p = 1; | |
1387 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1388 break; | |
1389 | |
1390 case LFACE_STRIKE_THROUGH_INDEX: | |
1391 face->strike_through_color_defaulted_p = 1; | |
1392 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1393 break; | |
1394 | |
1395 case LFACE_BOX_INDEX: | |
1396 face->box_color_defaulted_p = 1; | |
1397 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1398 break; | |
1399 | |
1400 default: | |
1401 abort (); | |
1402 } | |
1403 } | |
1404 #if GLYPH_DEBUG | |
1405 else | |
1406 ++ncolors_allocated; | |
1407 #endif | |
1408 | |
1409 return color.pixel; | |
1410 } | |
1411 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1412 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1413 |
1414 /* Load colors for face FACE which is used on frame F. Colors are | |
1415 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX | |
1416 of ATTRS. If the background color specified is not supported on F, | |
1417 try to emulate gray colors with a stipple from Vface_default_stipple. */ | |
1418 | |
1419 static void | |
1420 load_face_colors (f, face, attrs) | |
1421 struct frame *f; | |
1422 struct face *face; | |
1423 Lisp_Object *attrs; | |
1424 { | |
1425 Lisp_Object fg, bg; | |
1426 | |
1427 bg = attrs[LFACE_BACKGROUND_INDEX]; | |
1428 fg = attrs[LFACE_FOREGROUND_INDEX]; | |
1429 | |
1430 /* Swap colors if face is inverse-video. */ | |
1431 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt)) | |
1432 { | |
1433 Lisp_Object tmp; | |
1434 tmp = fg; | |
1435 fg = bg; | |
1436 bg = tmp; | |
1437 } | |
1438 | |
1439 /* Check for support for foreground, not for background because | |
1440 face_color_supported_p is smart enough to know that grays are | |
1441 "supported" as background because we are supposed to use stipple | |
1442 for them. */ | |
1443 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
|
1444 && !NILP (Fbitmap_spec_p (Vface_default_stipple))) |
24995 | 1445 { |
1446 x_destroy_bitmap (f, face->stipple); | |
1447 face->stipple = load_pixmap (f, Vface_default_stipple, | |
1448 &face->pixmap_w, &face->pixmap_h); | |
1449 } | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1450 |
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1451 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX); |
24995 | 1452 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX); |
1453 } | |
1454 | |
1455 | |
1456 /* Free color PIXEL on frame F. */ | |
1457 | |
1458 void | |
1459 unload_color (f, pixel) | |
1460 struct frame *f; | |
1461 unsigned long pixel; | |
1462 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1463 #ifdef HAVE_X_WINDOWS |
24995 | 1464 BLOCK_INPUT; |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1465 x_free_colors (f, &pixel, 1); |
24995 | 1466 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1467 #endif |
24995 | 1468 } |
1469 | |
1470 | |
1471 /* Free colors allocated for FACE. */ | |
1472 | |
1473 static void | |
1474 free_face_colors (f, face) | |
1475 struct frame *f; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1476 struct face *face; |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1477 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1478 #ifdef HAVE_X_WINDOWS |
24995 | 1479 int class = FRAME_X_DISPLAY_INFO (f)->visual->class; |
1480 | |
1481 /* If display has an immutable color map, freeing colors is not | |
1482 necessary and some servers don't allow it. So don't do it. */ | |
1483 if (class != StaticColor | |
1484 && class != StaticGray | |
1485 && class != TrueColor) | |
1486 { | |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1487 BLOCK_INPUT; |
24995 | 1488 |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1489 if (!face->foreground_defaulted_p) |
24995 | 1490 { |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1491 x_free_colors (f, &face->foreground, 1); |
24995 | 1492 IF_DEBUG (--ncolors_allocated); |
1493 } | |
1494 | |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1495 if (!face->background_defaulted_p) |
24995 | 1496 { |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1497 x_free_colors (f, &face->background, 1); |
24995 | 1498 IF_DEBUG (--ncolors_allocated); |
1499 } | |
1500 | |
1501 if (face->underline_p | |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1502 && !face->underline_defaulted_p) |
24995 | 1503 { |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1504 x_free_colors (f, &face->underline_color, 1); |
24995 | 1505 IF_DEBUG (--ncolors_allocated); |
1506 } | |
1507 | |
1508 if (face->overline_p | |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1509 && !face->overline_color_defaulted_p) |
24995 | 1510 { |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1511 x_free_colors (f, &face->overline_color, 1); |
24995 | 1512 IF_DEBUG (--ncolors_allocated); |
1513 } | |
1514 | |
1515 if (face->strike_through_p | |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1516 && !face->strike_through_color_defaulted_p) |
24995 | 1517 { |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1518 x_free_colors (f, &face->strike_through_color, 1); |
24995 | 1519 IF_DEBUG (--ncolors_allocated); |
1520 } | |
1521 | |
1522 if (face->box != FACE_NO_BOX | |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1523 && !face->box_color_defaulted_p) |
24995 | 1524 { |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1525 x_free_colors (f, &face->box_color, 1); |
24995 | 1526 IF_DEBUG (--ncolors_allocated); |
1527 } | |
1528 | |
1529 UNBLOCK_INPUT; | |
1530 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1531 #endif /* HAVE_X_WINDOWS */ |
24995 | 1532 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1533 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1534 |
1535 | |
1536 | |
1537 /*********************************************************************** | |
1538 XLFD Font Names | |
1539 ***********************************************************************/ | |
1540 | |
1541 /* An enumerator for each field of an XLFD font name. */ | |
1542 | |
1543 enum xlfd_field | |
1544 { | |
1545 XLFD_FOUNDRY, | |
1546 XLFD_FAMILY, | |
1547 XLFD_WEIGHT, | |
1548 XLFD_SLANT, | |
1549 XLFD_SWIDTH, | |
1550 XLFD_ADSTYLE, | |
1551 XLFD_PIXEL_SIZE, | |
1552 XLFD_POINT_SIZE, | |
1553 XLFD_RESX, | |
1554 XLFD_RESY, | |
1555 XLFD_SPACING, | |
1556 XLFD_AVGWIDTH, | |
1557 XLFD_REGISTRY, | |
1558 XLFD_ENCODING, | |
1559 XLFD_LAST | |
1560 }; | |
1561 | |
1562 /* An enumerator for each possible slant value of a font. Taken from | |
1563 the XLFD specification. */ | |
1564 | |
1565 enum xlfd_slant | |
1566 { | |
1567 XLFD_SLANT_UNKNOWN, | |
1568 XLFD_SLANT_ROMAN, | |
1569 XLFD_SLANT_ITALIC, | |
1570 XLFD_SLANT_OBLIQUE, | |
1571 XLFD_SLANT_REVERSE_ITALIC, | |
1572 XLFD_SLANT_REVERSE_OBLIQUE, | |
1573 XLFD_SLANT_OTHER | |
1574 }; | |
1575 | |
1576 /* Relative font weight according to XLFD documentation. */ | |
1577 | |
1578 enum xlfd_weight | |
1579 { | |
1580 XLFD_WEIGHT_UNKNOWN, | |
1581 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */ | |
1582 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */ | |
1583 XLFD_WEIGHT_LIGHT, /* 30 */ | |
1584 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */ | |
1585 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1586 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */ | |
1587 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */ | |
1588 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */ | |
1589 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */ | |
1590 }; | |
1591 | |
1592 /* Relative proportionate width. */ | |
1593 | |
1594 enum xlfd_swidth | |
1595 { | |
1596 XLFD_SWIDTH_UNKNOWN, | |
1597 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */ | |
1598 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */ | |
1599 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */ | |
1600 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */ | |
1601 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1602 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */ | |
1603 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */ | |
1604 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */ | |
1605 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */ | |
1606 }; | |
1607 | |
1608 /* Structure used for tables mapping XLFD weight, slant, and width | |
1609 names to numeric and symbolic values. */ | |
1610 | |
1611 struct table_entry | |
1612 { | |
1613 char *name; | |
1614 int numeric; | |
1615 Lisp_Object *symbol; | |
1616 }; | |
1617 | |
1618 /* Table of XLFD slant names and their numeric and symbolic | |
1619 representations. This table must be sorted by slant names in | |
1620 ascending order. */ | |
1621 | |
1622 static struct table_entry slant_table[] = | |
1623 { | |
1624 {"i", XLFD_SLANT_ITALIC, &Qitalic}, | |
1625 {"o", XLFD_SLANT_OBLIQUE, &Qoblique}, | |
1626 {"ot", XLFD_SLANT_OTHER, &Qitalic}, | |
1627 {"r", XLFD_SLANT_ROMAN, &Qnormal}, | |
1628 {"ri", XLFD_SLANT_REVERSE_ITALIC, &Qreverse_italic}, | |
1629 {"ro", XLFD_SLANT_REVERSE_OBLIQUE, &Qreverse_oblique} | |
1630 }; | |
1631 | |
1632 /* Table of XLFD weight names. This table must be sorted by weight | |
1633 names in ascending order. */ | |
1634 | |
1635 static struct table_entry weight_table[] = | |
1636 { | |
1637 {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}, | |
1638 {"bold", XLFD_WEIGHT_BOLD, &Qbold}, | |
1639 {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1640 {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1641 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light}, | |
1642 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1643 {"heavy", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1644 {"light", XLFD_WEIGHT_LIGHT, &Qlight}, | |
1645 {"medium", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1646 {"normal", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1647 {"regular", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1648 {"semibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1649 {"semilight", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1650 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT, &Qultra_light}, | |
1651 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold} | |
1652 }; | |
1653 | |
1654 /* Table of XLFD width names. This table must be sorted by width | |
1655 names in ascending order. */ | |
1656 | |
1657 static struct table_entry swidth_table[] = | |
1658 { | |
1659 {"compressed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1660 {"condensed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1661 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1662 {"expanded", XLFD_SWIDTH_EXPANDED, &Qexpanded}, | |
1663 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED, &Qextra_condensed}, | |
1664 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded}, | |
1665 {"medium", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1666 {"narrow", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1667 {"normal", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1668 {"regular", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1669 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED, &Qsemi_condensed}, | |
1670 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1671 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED, &Qultra_condensed}, | |
1672 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED, &Qultra_expanded}, | |
1673 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded} | |
1674 }; | |
1675 | |
1676 /* Structure used to hold the result of splitting font names in XLFD | |
1677 format into their fields. */ | |
1678 | |
1679 struct font_name | |
1680 { | |
1681 /* The original name which is modified destructively by | |
1682 split_font_name. The pointer is kept here to be able to free it | |
1683 if it was allocated from the heap. */ | |
1684 char *name; | |
1685 | |
1686 /* Font name fields. Each vector element points into `name' above. | |
1687 Fields are NUL-terminated. */ | |
1688 char *fields[XLFD_LAST]; | |
1689 | |
1690 /* Numeric values for those fields that interest us. See | |
1691 split_font_name for which these are. */ | |
1692 int numeric[XLFD_LAST]; | |
1693 }; | |
1694 | |
1695 /* The frame in effect when sorting font names. Set temporarily in | |
1696 sort_fonts so that it is available in font comparison functions. */ | |
1697 | |
1698 static struct frame *font_frame; | |
1699 | |
1700 /* Order by which font selection chooses fonts. The default values | |
1701 mean `first, find a best match for the font width, then for the | |
1702 font height, then for weight, then for slant.' This variable can be | |
1703 set via set-face-font-sort-order. */ | |
1704 | |
1705 static int font_sort_order[4]; | |
1706 | |
1707 | |
1708 /* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries. | |
1709 TABLE must be sorted by TABLE[i]->name in ascending order. Value | |
1710 is a pointer to the matching table entry or null if no table entry | |
1711 matches. */ | |
1712 | |
1713 static struct table_entry * | |
1714 xlfd_lookup_field_contents (table, dim, font, field_index) | |
1715 struct table_entry *table; | |
1716 int dim; | |
1717 struct font_name *font; | |
1718 int field_index; | |
1719 { | |
1720 /* Function split_font_name converts fields to lower-case, so there | |
1721 is no need to use xstrlwr or xstricmp here. */ | |
1722 char *s = font->fields[field_index]; | |
1723 int low, mid, high, cmp; | |
1724 | |
1725 low = 0; | |
1726 high = dim - 1; | |
1727 | |
1728 while (low <= high) | |
1729 { | |
1730 mid = (low + high) / 2; | |
1731 cmp = strcmp (table[mid].name, s); | |
1732 | |
1733 if (cmp < 0) | |
1734 low = mid + 1; | |
1735 else if (cmp > 0) | |
1736 high = mid - 1; | |
1737 else | |
1738 return table + mid; | |
1739 } | |
1740 | |
1741 return NULL; | |
1742 } | |
1743 | |
1744 | |
1745 /* Return a numeric representation for font name field | |
1746 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1747 has DIM entries. Value is the numeric value found or DFLT if no | |
1748 table entry matches. This function is used to translate weight, | |
1749 slant, and swidth names of XLFD font names to numeric values. */ | |
1750 | |
1751 static INLINE int | |
1752 xlfd_numeric_value (table, dim, font, field_index, dflt) | |
1753 struct table_entry *table; | |
1754 int dim; | |
1755 struct font_name *font; | |
1756 int field_index; | |
1757 int dflt; | |
1758 { | |
1759 struct table_entry *p; | |
1760 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1761 return p ? p->numeric : dflt; | |
1762 } | |
1763 | |
1764 | |
1765 /* Return a symbolic representation for font name field | |
1766 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1767 has DIM entries. Value is the symbolic value found or DFLT if no | |
1768 table entry matches. This function is used to translate weight, | |
1769 slant, and swidth names of XLFD font names to symbols. */ | |
1770 | |
1771 static INLINE Lisp_Object | |
1772 xlfd_symbolic_value (table, dim, font, field_index, dflt) | |
1773 struct table_entry *table; | |
1774 int dim; | |
1775 struct font_name *font; | |
1776 int field_index; | |
1777 int dflt; | |
1778 { | |
1779 struct table_entry *p; | |
1780 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1781 return p ? *p->symbol : dflt; | |
1782 } | |
1783 | |
1784 | |
1785 /* Return a numeric value for the slant of the font given by FONT. */ | |
1786 | |
1787 static INLINE int | |
1788 xlfd_numeric_slant (font) | |
1789 struct font_name *font; | |
1790 { | |
1791 return xlfd_numeric_value (slant_table, DIM (slant_table), | |
1792 font, XLFD_SLANT, XLFD_SLANT_ROMAN); | |
1793 } | |
1794 | |
1795 | |
1796 /* Return a symbol representing the weight of the font given by FONT. */ | |
1797 | |
1798 static INLINE Lisp_Object | |
1799 xlfd_symbolic_slant (font) | |
1800 struct font_name *font; | |
1801 { | |
1802 return xlfd_symbolic_value (slant_table, DIM (slant_table), | |
1803 font, XLFD_SLANT, Qnormal); | |
1804 } | |
1805 | |
1806 | |
1807 /* Return a numeric value for the weight of the font given by FONT. */ | |
1808 | |
1809 static INLINE int | |
1810 xlfd_numeric_weight (font) | |
1811 struct font_name *font; | |
1812 { | |
1813 return xlfd_numeric_value (weight_table, DIM (weight_table), | |
1814 font, XLFD_WEIGHT, XLFD_WEIGHT_MEDIUM); | |
1815 } | |
1816 | |
1817 | |
1818 /* Return a symbol representing the slant of the font given by FONT. */ | |
1819 | |
1820 static INLINE Lisp_Object | |
1821 xlfd_symbolic_weight (font) | |
1822 struct font_name *font; | |
1823 { | |
1824 return xlfd_symbolic_value (weight_table, DIM (weight_table), | |
1825 font, XLFD_WEIGHT, Qnormal); | |
1826 } | |
1827 | |
1828 | |
1829 /* Return a numeric value for the swidth of the font whose XLFD font | |
1830 name fields are found in FONT. */ | |
1831 | |
1832 static INLINE int | |
1833 xlfd_numeric_swidth (font) | |
1834 struct font_name *font; | |
1835 { | |
1836 return xlfd_numeric_value (swidth_table, DIM (swidth_table), | |
1837 font, XLFD_SWIDTH, XLFD_SWIDTH_MEDIUM); | |
1838 } | |
1839 | |
1840 | |
1841 /* Return a symbolic value for the swidth of FONT. */ | |
1842 | |
1843 static INLINE Lisp_Object | |
1844 xlfd_symbolic_swidth (font) | |
1845 struct font_name *font; | |
1846 { | |
1847 return xlfd_symbolic_value (swidth_table, DIM (swidth_table), | |
1848 font, XLFD_SWIDTH, Qnormal); | |
1849 } | |
1850 | |
1851 | |
1852 /* Look up the entry of SYMBOL in the vector TABLE which has DIM | |
1853 entries. Value is a pointer to the matching table entry or null if | |
1854 no element of TABLE contains SYMBOL. */ | |
1855 | |
1856 static struct table_entry * | |
1857 face_value (table, dim, symbol) | |
1858 struct table_entry *table; | |
1859 int dim; | |
1860 Lisp_Object symbol; | |
1861 { | |
1862 int i; | |
1863 | |
1864 xassert (SYMBOLP (symbol)); | |
1865 | |
1866 for (i = 0; i < dim; ++i) | |
1867 if (EQ (*table[i].symbol, symbol)) | |
1868 break; | |
1869 | |
1870 return i < dim ? table + i : NULL; | |
1871 } | |
1872 | |
1873 | |
1874 /* Return a numeric value for SYMBOL in the vector TABLE which has DIM | |
1875 entries. Value is -1 if SYMBOL is not found in TABLE. */ | |
1876 | |
1877 static INLINE int | |
1878 face_numeric_value (table, dim, symbol) | |
1879 struct table_entry *table; | |
1880 int dim; | |
1881 Lisp_Object symbol; | |
1882 { | |
1883 struct table_entry *p = face_value (table, dim, symbol); | |
1884 return p ? p->numeric : -1; | |
1885 } | |
1886 | |
1887 | |
1888 /* Return a numeric value representing the weight specified by Lisp | |
1889 symbol WEIGHT. Value is one of the enumerators of enum | |
1890 xlfd_weight. */ | |
1891 | |
1892 static INLINE int | |
1893 face_numeric_weight (weight) | |
1894 Lisp_Object weight; | |
1895 { | |
1896 return face_numeric_value (weight_table, DIM (weight_table), weight); | |
1897 } | |
1898 | |
1899 | |
1900 /* Return a numeric value representing the slant specified by Lisp | |
1901 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */ | |
1902 | |
1903 static INLINE int | |
1904 face_numeric_slant (slant) | |
1905 Lisp_Object slant; | |
1906 { | |
1907 return face_numeric_value (slant_table, DIM (slant_table), slant); | |
1908 } | |
1909 | |
1910 | |
1911 /* Return a numeric value representing the swidth specified by Lisp | |
1912 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */ | |
1913 | |
1914 static int | |
1915 face_numeric_swidth (width) | |
1916 Lisp_Object width; | |
1917 { | |
1918 return face_numeric_value (swidth_table, DIM (swidth_table), width); | |
1919 } | |
1920 | |
1921 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1922 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1923 |
1924 /* Return non-zero if FONT is the name of a fixed-pitch font. */ | |
1925 | |
1926 static INLINE int | |
1927 xlfd_fixed_p (font) | |
1928 struct font_name *font; | |
1929 { | |
1930 /* Function split_font_name converts fields to lower-case, so there | |
1931 is no need to use tolower here. */ | |
1932 return *font->fields[XLFD_SPACING] != 'p'; | |
1933 } | |
1934 | |
1935 | |
1936 /* Return the point size of FONT on frame F, measured in 1/10 pt. | |
1937 | |
1938 The actual height of the font when displayed on F depends on the | |
1939 resolution of both the font and frame. For example, a 10pt font | |
1940 designed for a 100dpi display will display larger than 10pt on a | |
1941 75dpi display. (It's not unusual to use fonts not designed for the | |
1942 display one is using. For example, some intlfonts are available in | |
1943 72dpi versions, only.) | |
1944 | |
1945 Value is the real point size of FONT on frame F, or 0 if it cannot | |
1946 be determined. */ | |
1947 | |
1948 static INLINE int | |
1949 xlfd_point_size (f, font) | |
1950 struct frame *f; | |
1951 struct font_name *font; | |
1952 { | |
1953 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
1954 double font_resy = atoi (font->fields[XLFD_RESY]); | |
1955 double font_pt = atoi (font->fields[XLFD_POINT_SIZE]); | |
1956 int real_pt; | |
1957 | |
1958 if (font_resy == 0 || font_pt == 0) | |
1959 real_pt = 0; | |
1960 else | |
1961 real_pt = (font_resy / resy) * font_pt + 0.5; | |
1962 | |
1963 return real_pt; | |
1964 } | |
1965 | |
1966 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1967 /* 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
|
1968 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
|
1969 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
|
1970 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1971 static INLINE int |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1972 pixel_point_size (f, pixel) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1973 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1974 int pixel; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1975 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1976 double resy = FRAME_X_DISPLAY_INFO (f)->resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1977 double real_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1978 int int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1979 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1980 /* 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
|
1981 real_pt = pixel * 72 / resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1982 int_pt = real_pt + 0.5; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1983 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1984 return int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1985 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1986 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1987 |
24995 | 1988 /* Split XLFD font name FONT->name destructively into NUL-terminated, |
1989 lower-case fields in FONT->fields. NUMERIC_P non-zero means | |
1990 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH, | |
1991 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is | |
1992 zero if the font name doesn't have the format we expect. The | |
1993 expected format is a font name that starts with a `-' and has | |
1994 XLFD_LAST fields separated by `-'. (The XLFD specification allows | |
1995 forms of font names where certain field contents are enclosed in | |
1996 square brackets. We don't support that, for now. */ | |
1997 | |
1998 static int | |
1999 split_font_name (f, font, numeric_p) | |
2000 struct frame *f; | |
2001 struct font_name *font; | |
2002 int numeric_p; | |
2003 { | |
2004 int i = 0; | |
2005 int success_p; | |
2006 | |
2007 if (*font->name == '-') | |
2008 { | |
2009 char *p = xstrlwr (font->name) + 1; | |
2010 | |
2011 while (i < XLFD_LAST) | |
2012 { | |
2013 font->fields[i] = p; | |
2014 ++i; | |
2015 | |
2016 while (*p && *p != '-') | |
2017 ++p; | |
2018 | |
2019 if (*p != '-') | |
2020 break; | |
2021 | |
2022 *p++ = 0; | |
2023 } | |
2024 } | |
2025 | |
2026 success_p = i == XLFD_LAST; | |
2027 | |
2028 /* If requested, and font name was in the expected format, | |
2029 compute numeric values for some fields. */ | |
2030 if (numeric_p && success_p) | |
2031 { | |
2032 font->numeric[XLFD_POINT_SIZE] = xlfd_point_size (f, font); | |
2033 font->numeric[XLFD_RESY] = atoi (font->fields[XLFD_RESY]); | |
2034 font->numeric[XLFD_SLANT] = xlfd_numeric_slant (font); | |
2035 font->numeric[XLFD_WEIGHT] = xlfd_numeric_weight (font); | |
2036 font->numeric[XLFD_SWIDTH] = xlfd_numeric_swidth (font); | |
2037 } | |
2038 | |
2039 return success_p; | |
2040 } | |
2041 | |
2042 | |
2043 /* Build an XLFD font name from font name fields in FONT. Value is a | |
2044 pointer to the font name, which is allocated via xmalloc. */ | |
2045 | |
2046 static char * | |
2047 build_font_name (font) | |
2048 struct font_name *font; | |
2049 { | |
2050 int i; | |
2051 int size = 100; | |
2052 char *font_name = (char *) xmalloc (size); | |
2053 int total_length = 0; | |
2054 | |
2055 for (i = 0; i < XLFD_LAST; ++i) | |
2056 { | |
2057 /* Add 1 because of the leading `-'. */ | |
2058 int len = strlen (font->fields[i]) + 1; | |
2059 | |
2060 /* Reallocate font_name if necessary. Add 1 for the final | |
2061 NUL-byte. */ | |
2062 if (total_length + len + 1 >= size) | |
2063 { | |
2064 int new_size = max (2 * size, size + len + 1); | |
2065 int sz = new_size * sizeof *font_name; | |
2066 font_name = (char *) xrealloc (font_name, sz); | |
2067 size = new_size; | |
2068 } | |
2069 | |
2070 font_name[total_length] = '-'; | |
2071 bcopy (font->fields[i], font_name + total_length + 1, len - 1); | |
2072 total_length += len; | |
2073 } | |
2074 | |
2075 font_name[total_length] = 0; | |
2076 return font_name; | |
2077 } | |
2078 | |
2079 | |
2080 /* Free an array FONTS of N font_name structures. This frees FONTS | |
2081 itself and all `name' fields in its elements. */ | |
2082 | |
2083 static INLINE void | |
2084 free_font_names (fonts, n) | |
2085 struct font_name *fonts; | |
2086 int n; | |
2087 { | |
2088 while (n) | |
2089 xfree (fonts[--n].name); | |
2090 xfree (fonts); | |
2091 } | |
2092 | |
2093 | |
2094 /* Sort vector FONTS of font_name structures which contains NFONTS | |
2095 elements using qsort and comparison function CMPFN. F is the frame | |
2096 on which the fonts will be used. The global variable font_frame | |
2097 is temporarily set to F to make it available in CMPFN. */ | |
2098 | |
2099 static INLINE void | |
2100 sort_fonts (f, fonts, nfonts, cmpfn) | |
2101 struct frame *f; | |
2102 struct font_name *fonts; | |
2103 int nfonts; | |
2104 int (*cmpfn) P_ ((const void *, const void *)); | |
2105 { | |
2106 font_frame = f; | |
2107 qsort (fonts, nfonts, sizeof *fonts, cmpfn); | |
2108 font_frame = NULL; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2109 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2110 |
24995 | 2111 |
2112 /* Get fonts matching PATTERN on frame F. If F is null, use the first | |
2113 display in x_display_list. FONTS is a pointer to a vector of | |
2114 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try | |
2115 alternative patterns from Valternate_fontname_alist if no fonts are | |
2116 found matching PATTERN. SCALABLE_FONTS_P non-zero means include | |
2117 scalable fonts. | |
2118 | |
2119 For all fonts found, set FONTS[i].name to the name of the font, | |
2120 allocated via xmalloc, and split font names into fields. Ignore | |
2121 fonts that we can't parse. Value is the number of fonts found. | |
2122 | |
2123 This is similar to x_list_fonts. The differences are: | |
2124 | |
2125 1. It avoids consing. | |
2126 2. It never calls XLoadQueryFont. */ | |
2127 | |
2128 static int | |
2129 x_face_list_fonts (f, pattern, fonts, nfonts, try_alternatives_p, | |
2130 scalable_fonts_p) | |
2131 struct frame *f; | |
2132 char *pattern; | |
2133 struct font_name *fonts; | |
2134 int nfonts, try_alternatives_p; | |
2135 int scalable_fonts_p; | |
2136 { | |
2137 int n, i, j; | |
2138 char **names; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2139 #ifdef HAVE_X_WINDOWS |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2140 Display *dpy = f ? FRAME_X_DISPLAY (f) : x_display_list->display; |
24995 | 2141 |
2142 /* Get the list of fonts matching PATTERN from the X server. */ | |
2143 BLOCK_INPUT; | |
2144 names = XListFonts (dpy, pattern, nfonts, &n); | |
2145 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2146 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2147 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2148 /* 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
|
2149 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
|
2150 Lisp_Object lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2151 Lisp_Object lpattern, tem; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2152 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2153 n = 0; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2154 names = NULL; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2155 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2156 lpattern = build_string (pattern); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2157 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2158 /* 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
|
2159 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2160 lfonts = w32_list_fonts (f, lpattern, 0, nfonts); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2161 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2162 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2163 /* Count fonts returned */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2164 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
|
2165 n++; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2166 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2167 /* Allocate array. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2168 if (n) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2169 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
|
2170 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2171 /* 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
|
2172 tem = lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2173 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
|
2174 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2175 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
|
2176 tem = XCDR (tem); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2177 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2178 #endif |
24995 | 2179 |
2180 if (names) | |
2181 { | |
2182 /* Make a copy of the font names we got from X, and | |
2183 split them into fields. */ | |
2184 for (i = j = 0; i < n; ++i) | |
2185 { | |
2186 /* Make a copy of the font name. */ | |
2187 fonts[j].name = xstrdup (names[i]); | |
2188 | |
2189 /* Ignore fonts having a name that we can't parse. */ | |
2190 if (!split_font_name (f, fonts + j, 1)) | |
2191 xfree (fonts[j].name); | |
2192 else if (font_scalable_p (fonts + j)) | |
2193 { | |
2194 #if SCALABLE_FONTS | |
2195 if (!scalable_fonts_p | |
2196 || !may_use_scalable_font_p (fonts + j, names[i])) | |
2197 xfree (fonts[j].name); | |
2198 else | |
2199 ++j; | |
2200 #else /* !SCALABLE_FONTS */ | |
2201 /* Always ignore scalable fonts. */ | |
2202 xfree (fonts[j].name); | |
2203 #endif /* !SCALABLE_FONTS */ | |
2204 } | |
2205 else | |
2206 ++j; | |
2207 } | |
2208 | |
2209 n = j; | |
2210 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2211 #ifdef HAVE_X_WINDOWS |
24995 | 2212 /* Free font names. */ |
2213 BLOCK_INPUT; | |
2214 XFreeFontNames (names); | |
2215 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2216 #endif |
24995 | 2217 } |
2218 | |
2219 | |
2220 /* If no fonts found, try patterns from Valternate_fontname_alist. */ | |
2221 if (n == 0 && try_alternatives_p) | |
2222 { | |
2223 Lisp_Object list = Valternate_fontname_alist; | |
2224 | |
2225 while (CONSP (list)) | |
2226 { | |
2227 Lisp_Object entry = XCAR (list); | |
2228 if (CONSP (entry) | |
2229 && STRINGP (XCAR (entry)) | |
2230 && strcmp (XSTRING (XCAR (entry))->data, pattern) == 0) | |
2231 break; | |
2232 list = XCDR (list); | |
2233 } | |
2234 | |
2235 if (CONSP (list)) | |
2236 { | |
2237 Lisp_Object patterns = XCAR (list); | |
2238 Lisp_Object name; | |
2239 | |
2240 while (CONSP (patterns) | |
2241 /* If list is screwed up, give up. */ | |
2242 && (name = XCAR (patterns), | |
2243 STRINGP (name)) | |
2244 /* Ignore patterns equal to PATTERN because we tried that | |
2245 already with no success. */ | |
2246 && (strcmp (XSTRING (name)->data, pattern) == 0 | |
2247 || (n = x_face_list_fonts (f, XSTRING (name)->data, | |
2248 fonts, nfonts, 0, | |
2249 scalable_fonts_p), | |
2250 n == 0))) | |
2251 patterns = XCDR (patterns); | |
2252 } | |
2253 } | |
2254 | |
2255 return n; | |
2256 } | |
2257 | |
2258 | |
2259 /* Determine the first font matching PATTERN on frame F. Return in | |
2260 *FONT the matching font name, split into fields. Value is non-zero | |
2261 if a match was found. */ | |
2262 | |
2263 static int | |
2264 first_font_matching (f, pattern, font) | |
2265 struct frame *f; | |
2266 char *pattern; | |
2267 struct font_name *font; | |
2268 { | |
2269 int nfonts = 100; | |
2270 struct font_name *fonts; | |
2271 | |
2272 fonts = (struct font_name *) xmalloc (nfonts * sizeof *fonts); | |
2273 nfonts = x_face_list_fonts (f, pattern, fonts, nfonts, 1, 0); | |
2274 | |
2275 if (nfonts > 0) | |
2276 { | |
2277 bcopy (&fonts[0], font, sizeof *font); | |
2278 | |
2279 fonts[0].name = NULL; | |
2280 free_font_names (fonts, nfonts); | |
2281 } | |
2282 | |
2283 return nfonts > 0; | |
2284 } | |
2285 | |
2286 | |
2287 /* Determine fonts matching PATTERN on frame F. Sort resulting fonts | |
2288 using comparison function CMPFN. Value is the number of fonts | |
2289 found. If value is non-zero, *FONTS is set to a vector of | |
2290 font_name structures allocated from the heap containing matching | |
2291 fonts. Each element of *FONTS contains a name member that is also | |
2292 allocated from the heap. Font names in these structures are split | |
2293 into fields. Use free_font_names to free such an array. */ | |
2294 | |
2295 static int | |
2296 sorted_font_list (f, pattern, cmpfn, fonts) | |
2297 struct frame *f; | |
2298 char *pattern; | |
2299 int (*cmpfn) P_ ((const void *, const void *)); | |
2300 struct font_name **fonts; | |
2301 { | |
2302 int nfonts; | |
2303 | |
2304 /* Get the list of fonts matching pattern. 100 should suffice. */ | |
25270 | 2305 nfonts = DEFAULT_FONT_LIST_LIMIT; |
2306 if (INTEGERP (Vfont_list_limit) && XINT (Vfont_list_limit) > 0) | |
2307 nfonts = XFASTINT (Vfont_list_limit); | |
2308 | |
24995 | 2309 *fonts = (struct font_name *) xmalloc (nfonts * sizeof **fonts); |
2310 #if SCALABLE_FONTS | |
2311 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1, 1); | |
2312 #else | |
2313 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1, 0); | |
2314 #endif | |
2315 | |
2316 /* Sort the resulting array and return it in *FONTS. If no | |
2317 fonts were found, make sure to set *FONTS to null. */ | |
2318 if (nfonts) | |
2319 sort_fonts (f, *fonts, nfonts, cmpfn); | |
2320 else | |
2321 { | |
2322 xfree (*fonts); | |
2323 *fonts = NULL; | |
2324 } | |
2325 | |
2326 return nfonts; | |
2327 } | |
2328 | |
2329 | |
2330 /* Compare two font_name structures *A and *B. Value is analogous to | |
2331 strcmp. Sort order is given by the global variable | |
2332 font_sort_order. Font names are sorted so that, everything else | |
2333 being equal, fonts with a resolution closer to that of the frame on | |
2334 which they are used are listed first. The global variable | |
2335 font_frame is the frame on which we operate. */ | |
2336 | |
2337 static int | |
2338 cmp_font_names (a, b) | |
2339 const void *a, *b; | |
2340 { | |
2341 struct font_name *x = (struct font_name *) a; | |
2342 struct font_name *y = (struct font_name *) b; | |
2343 int cmp; | |
2344 | |
2345 /* All strings have been converted to lower-case by split_font_name, | |
2346 so we can use strcmp here. */ | |
2347 cmp = strcmp (x->fields[XLFD_FAMILY], y->fields[XLFD_FAMILY]); | |
2348 if (cmp == 0) | |
2349 { | |
2350 int i; | |
2351 | |
2352 for (i = 0; i < DIM (font_sort_order) && cmp == 0; ++i) | |
2353 { | |
2354 int j = font_sort_order[i]; | |
2355 cmp = x->numeric[j] - y->numeric[j]; | |
2356 } | |
2357 | |
2358 if (cmp == 0) | |
2359 { | |
2360 /* Everything else being equal, we prefer fonts with an | |
2361 y-resolution closer to that of the frame. */ | |
2362 int resy = FRAME_X_DISPLAY_INFO (font_frame)->resy; | |
2363 int x_resy = x->numeric[XLFD_RESY]; | |
2364 int y_resy = y->numeric[XLFD_RESY]; | |
2365 cmp = abs (resy - x_resy) - abs (resy - y_resy); | |
2366 } | |
2367 } | |
2368 | |
2369 return cmp; | |
2370 } | |
2371 | |
2372 | |
2373 /* 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
|
2374 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
|
2375 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
|
2376 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
|
2377 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
|
2378 Value is the number of fonts found. */ |
24995 | 2379 |
2380 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2381 font_list (f, pattern, family, registry, fonts) |
24995 | 2382 struct frame *f; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2383 Lisp_Object pattern, family, registry; |
24995 | 2384 struct font_name **fonts; |
2385 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2386 char *pattern_str, *family_str, *registry_str; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2387 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2388 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2389 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2390 family_str = (NILP (family) ? "*" : (char *) XSTRING (family)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2391 registry_str = (NILP (registry) ? "*" : (char *) XSTRING (registry)->data); |
24995 | 2392 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2393 pattern_str = (char *) alloca (strlen (family_str) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2394 + strlen (registry_str) |
24995 | 2395 + 10); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2396 if (index (family_str, '-')) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2397 sprintf (pattern_str, "-%s-*-%s", family_str, registry_str); |
24995 | 2398 else |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2399 sprintf (pattern_str, "-*-%s-*-%s", family_str, registry_str); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2400 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2401 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2402 pattern_str = (char *) XSTRING (pattern)->data; |
24995 | 2403 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2404 return sorted_font_list (f, pattern_str, cmp_font_names, fonts); |
24995 | 2405 } |
2406 | |
2407 | |
2408 /* 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
|
2409 x-family-fonts and x-font-family-list to remove duplicate font |
24995 | 2410 entries. */ |
2411 | |
2412 static void | |
2413 remove_duplicates (list) | |
2414 Lisp_Object list; | |
2415 { | |
2416 Lisp_Object tail = list; | |
2417 | |
2418 while (!NILP (tail) && !NILP (XCDR (tail))) | |
2419 { | |
2420 Lisp_Object next = XCDR (tail); | |
2421 if (!NILP (Fequal (XCAR (next), XCAR (tail)))) | |
2422 XCDR (tail) = XCDR (next); | |
2423 else | |
2424 tail = XCDR (tail); | |
2425 } | |
2426 } | |
2427 | |
2428 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2429 DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0, |
24995 | 2430 "Return a list of available fonts of family FAMILY on FRAME.\n\ |
2431 If FAMILY is omitted or nil, list all families.\n\ | |
2432 Otherwise, FAMILY must be a string, possibly containing wildcards\n\ | |
2433 `?' and `*'.\n\ | |
2434 If FRAME is omitted or nil, use the selected frame.\n\ | |
2435 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT\n\ | |
25270 | 2436 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].\n\ |
24995 | 2437 FAMILY is the font family name. POINT-SIZE is the size of the\n\ |
2438 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the\n\ | |
2439 width, weight and slant of the font. These symbols are the same as for\n\ | |
2440 face attributes. FIXED-P is non-nil if the font is fixed-pitch.\n\ | |
25270 | 2441 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string\n\ |
2442 giving the registry and encoding of the font.\n\ | |
24995 | 2443 The result list is sorted according to the current setting of\n\ |
2444 the face font sort order.") | |
2445 (family, frame) | |
2446 Lisp_Object family, frame; | |
2447 { | |
2448 struct frame *f = check_x_frame (frame); | |
2449 struct font_name *fonts; | |
2450 int i, nfonts; | |
2451 Lisp_Object result; | |
2452 struct gcpro gcpro1; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2453 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2454 if (!NILP (family)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2455 CHECK_STRING (family, 1); |
24995 | 2456 |
2457 result = Qnil; | |
2458 GCPRO1 (result); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2459 nfonts = font_list (f, Qnil, family, Qnil, &fonts); |
24995 | 2460 for (i = nfonts - 1; i >= 0; --i) |
2461 { | |
25270 | 2462 Lisp_Object v = Fmake_vector (make_number (8), Qnil); |
2463 char *tem; | |
24995 | 2464 |
2465 #define ASET(VECTOR, IDX, VAL) (XVECTOR (VECTOR)->contents[IDX] = (VAL)) | |
2466 | |
2467 ASET (v, 0, build_string (fonts[i].fields[XLFD_FAMILY])); | |
2468 ASET (v, 1, xlfd_symbolic_swidth (fonts + i)); | |
2469 ASET (v, 2, make_number (xlfd_point_size (f, fonts + i))); | |
2470 ASET (v, 3, xlfd_symbolic_weight (fonts + i)); | |
2471 ASET (v, 4, xlfd_symbolic_slant (fonts + i)); | |
2472 ASET (v, 5, xlfd_fixed_p (fonts + i) ? Qt : Qnil); | |
25270 | 2473 tem = build_font_name (fonts + i); |
2474 ASET (v, 6, build_string (tem)); | |
2475 sprintf (tem, "%s-%s", fonts[i].fields[XLFD_REGISTRY], | |
2476 fonts[i].fields[XLFD_ENCODING]); | |
2477 ASET (v, 7, build_string (tem)); | |
2478 xfree (tem); | |
2479 | |
24995 | 2480 result = Fcons (v, result); |
2481 | |
2482 #undef ASET | |
2483 } | |
2484 | |
2485 remove_duplicates (result); | |
2486 free_font_names (fonts, nfonts); | |
2487 UNGCPRO; | |
2488 return result; | |
2489 } | |
2490 | |
2491 | |
2492 DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list, | |
2493 0, 1, 0, | |
2494 "Return a list of available font families on FRAME.\n\ | |
2495 If FRAME is omitted or nil, use the selected frame.\n\ | |
2496 Value is a list of conses (FAMILY . FIXED-P) where FAMILY\n\ | |
2497 is a font family, and FIXED-P is non-nil if fonts of that family\n\ | |
2498 are fixed-pitch.") | |
2499 (frame) | |
2500 Lisp_Object frame; | |
2501 { | |
2502 struct frame *f = check_x_frame (frame); | |
2503 int nfonts, i; | |
2504 struct font_name *fonts; | |
2505 Lisp_Object result; | |
2506 struct gcpro gcpro1; | |
25270 | 2507 int count = specpdl_ptr - specpdl; |
2508 int limit; | |
2509 | |
2510 /* Let's consider all fonts. Increase the limit for matching | |
2511 fonts until we have them all. */ | |
2512 for (limit = 500;;) | |
2513 { | |
2514 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
|
2515 nfonts = font_list (f, Qnil, Qnil, Qnil, &fonts); |
25270 | 2516 |
2517 if (nfonts == limit) | |
2518 { | |
2519 free_font_names (fonts, nfonts); | |
2520 limit *= 2; | |
2521 } | |
2522 else | |
2523 break; | |
2524 } | |
24995 | 2525 |
2526 result = Qnil; | |
2527 GCPRO1 (result); | |
2528 for (i = nfonts - 1; i >= 0; --i) | |
2529 result = Fcons (Fcons (build_string (fonts[i].fields[XLFD_FAMILY]), | |
2530 xlfd_fixed_p (fonts + i) ? Qt : Qnil), | |
2531 result); | |
2532 | |
2533 remove_duplicates (result); | |
2534 free_font_names (fonts, nfonts); | |
2535 UNGCPRO; | |
25270 | 2536 return unbind_to (count, result); |
24995 | 2537 } |
2538 | |
2539 | |
2540 DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0, | |
2541 "Return a list of the names of available fonts matching PATTERN.\n\ | |
2542 If optional arguments FACE and FRAME are specified, return only fonts\n\ | |
2543 the same size as FACE on FRAME.\n\ | |
2544 PATTERN is a string, perhaps with wildcard characters;\n\ | |
2545 the * character matches any substring, and\n\ | |
2546 the ? character matches any single character.\n\ | |
2547 PATTERN is case-insensitive.\n\ | |
2548 FACE is a face name--a symbol.\n\ | |
2549 \n\ | |
2550 The return value is a list of strings, suitable as arguments to\n\ | |
2551 set-face-font.\n\ | |
2552 \n\ | |
2553 Fonts Emacs can't use may or may not be excluded\n\ | |
2554 even if they match PATTERN and FACE.\n\ | |
2555 The optional fourth argument MAXIMUM sets a limit on how many\n\ | |
2556 fonts to match. The first MAXIMUM fonts are reported.\n\ | |
2557 The optional fifth argument WIDTH, if specified, is a number of columns\n\ | |
2558 occupied by a character of a font. In that case, return only fonts\n\ | |
2559 the WIDTH times as wide as FACE on FRAME.") | |
2560 (pattern, face, frame, maximum, width) | |
2561 Lisp_Object pattern, face, frame, maximum, width; | |
2562 { | |
2563 struct frame *f; | |
2564 int size; | |
2565 int maxnames; | |
2566 | |
2567 check_x (); | |
2568 CHECK_STRING (pattern, 0); | |
2569 | |
2570 if (NILP (maximum)) | |
2571 maxnames = 2000; | |
2572 else | |
2573 { | |
2574 CHECK_NATNUM (maximum, 0); | |
2575 maxnames = XINT (maximum); | |
2576 } | |
2577 | |
2578 if (!NILP (width)) | |
2579 CHECK_NUMBER (width, 4); | |
2580 | |
2581 /* We can't simply call check_x_frame because this function may be | |
2582 called before any frame is created. */ | |
2583 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
|
2584 if (!FRAME_WINDOW_P (f)) |
24995 | 2585 { |
2586 /* Perhaps we have not yet created any frame. */ | |
2587 f = NULL; | |
2588 face = Qnil; | |
2589 } | |
2590 | |
2591 /* Determine the width standard for comparison with the fonts we find. */ | |
2592 | |
2593 if (NILP (face)) | |
2594 size = 0; | |
2595 else | |
2596 { | |
2597 /* This is of limited utility since it works with character | |
2598 widths. Keep it for compatibility. --gerd. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2599 int face_id = lookup_named_face (f, face, 0); |
24995 | 2600 struct face *face = FACE_FROM_ID (f, face_id); |
2601 | |
2602 if (face->font) | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2603 size = FONT_WIDTH (face->font); |
24995 | 2604 else |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2605 size = FONT_WIDTH (FRAME_FONT (f)); |
24995 | 2606 |
2607 if (!NILP (width)) | |
2608 size *= XINT (width); | |
2609 } | |
2610 | |
2611 { | |
2612 Lisp_Object args[2]; | |
2613 | |
2614 args[0] = x_list_fonts (f, pattern, size, maxnames); | |
2615 if (f == NULL) | |
2616 /* We don't have to check fontsets. */ | |
2617 return args[0]; | |
2618 args[1] = list_fontsets (f, pattern, size); | |
2619 return Fnconc (2, args); | |
2620 } | |
2621 } | |
2622 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2623 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 2624 |
2625 | |
2626 | |
2627 /*********************************************************************** | |
2628 Lisp Faces | |
2629 ***********************************************************************/ | |
2630 | |
2631 /* Access face attributes of face FACE, a Lisp vector. */ | |
2632 | |
2633 #define LFACE_FAMILY(LFACE) \ | |
2634 XVECTOR (LFACE)->contents[LFACE_FAMILY_INDEX] | |
2635 #define LFACE_HEIGHT(LFACE) \ | |
2636 XVECTOR (LFACE)->contents[LFACE_HEIGHT_INDEX] | |
2637 #define LFACE_WEIGHT(LFACE) \ | |
2638 XVECTOR (LFACE)->contents[LFACE_WEIGHT_INDEX] | |
2639 #define LFACE_SLANT(LFACE) \ | |
2640 XVECTOR (LFACE)->contents[LFACE_SLANT_INDEX] | |
2641 #define LFACE_UNDERLINE(LFACE) \ | |
2642 XVECTOR (LFACE)->contents[LFACE_UNDERLINE_INDEX] | |
2643 #define LFACE_INVERSE(LFACE) \ | |
2644 XVECTOR (LFACE)->contents[LFACE_INVERSE_INDEX] | |
2645 #define LFACE_FOREGROUND(LFACE) \ | |
2646 XVECTOR (LFACE)->contents[LFACE_FOREGROUND_INDEX] | |
2647 #define LFACE_BACKGROUND(LFACE) \ | |
2648 XVECTOR (LFACE)->contents[LFACE_BACKGROUND_INDEX] | |
2649 #define LFACE_STIPPLE(LFACE) \ | |
2650 XVECTOR (LFACE)->contents[LFACE_STIPPLE_INDEX] | |
2651 #define LFACE_SWIDTH(LFACE) \ | |
2652 XVECTOR (LFACE)->contents[LFACE_SWIDTH_INDEX] | |
2653 #define LFACE_OVERLINE(LFACE) \ | |
2654 XVECTOR (LFACE)->contents[LFACE_OVERLINE_INDEX] | |
2655 #define LFACE_STRIKE_THROUGH(LFACE) \ | |
2656 XVECTOR (LFACE)->contents[LFACE_STRIKE_THROUGH_INDEX] | |
2657 #define LFACE_BOX(LFACE) \ | |
2658 XVECTOR (LFACE)->contents[LFACE_BOX_INDEX] | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2659 #define LFACE_FONT(LFACE) \ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2660 XVECTOR (LFACE)->contents[LFACE_FONT_INDEX] |
24995 | 2661 |
2662 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size | |
2663 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */ | |
2664 | |
2665 #define LFACEP(LFACE) \ | |
2666 (VECTORP (LFACE) \ | |
2667 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \ | |
2668 && EQ (XVECTOR (LFACE)->contents[0], Qface)) | |
2669 | |
2670 | |
2671 #if GLYPH_DEBUG | |
2672 | |
2673 /* Check consistency of Lisp face attribute vector ATTRS. */ | |
2674 | |
2675 static void | |
2676 check_lface_attrs (attrs) | |
2677 Lisp_Object *attrs; | |
2678 { | |
2679 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX]) | |
2680 || STRINGP (attrs[LFACE_FAMILY_INDEX])); | |
2681 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX]) | |
2682 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX])); | |
2683 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX]) | |
2684 || INTEGERP (attrs[LFACE_HEIGHT_INDEX])); | |
2685 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX]) | |
2686 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX])); | |
2687 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX]) | |
2688 || SYMBOLP (attrs[LFACE_SLANT_INDEX])); | |
2689 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX]) | |
2690 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX]) | |
2691 || STRINGP (attrs[LFACE_UNDERLINE_INDEX])); | |
2692 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX]) | |
2693 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX]) | |
2694 || STRINGP (attrs[LFACE_OVERLINE_INDEX])); | |
2695 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2696 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2697 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX])); | |
2698 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX]) | |
2699 || SYMBOLP (attrs[LFACE_BOX_INDEX]) | |
2700 || STRINGP (attrs[LFACE_BOX_INDEX]) | |
2701 || INTEGERP (attrs[LFACE_BOX_INDEX]) | |
2702 || CONSP (attrs[LFACE_BOX_INDEX])); | |
2703 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX]) | |
2704 || SYMBOLP (attrs[LFACE_INVERSE_INDEX])); | |
2705 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX]) | |
2706 || STRINGP (attrs[LFACE_FOREGROUND_INDEX])); | |
2707 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX]) | |
2708 || STRINGP (attrs[LFACE_BACKGROUND_INDEX])); | |
2709 #ifdef HAVE_WINDOW_SYSTEM | |
2710 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX]) | |
2711 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX]) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
2712 || !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
|
2713 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
|
2714 || NILP (attrs[LFACE_FONT_INDEX]) |
2f636fd2f714
(check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
Gerd Moellmann <gerd@gnu.org>
parents:
28230
diff
changeset
|
2715 || STRINGP (attrs[LFACE_FONT_INDEX])); |
24995 | 2716 #endif |
2717 } | |
2718 | |
2719 | |
2720 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */ | |
2721 | |
2722 static void | |
2723 check_lface (lface) | |
2724 Lisp_Object lface; | |
2725 { | |
2726 if (!NILP (lface)) | |
2727 { | |
2728 xassert (LFACEP (lface)); | |
2729 check_lface_attrs (XVECTOR (lface)->contents); | |
2730 } | |
2731 } | |
2732 | |
2733 #else /* GLYPH_DEBUG == 0 */ | |
2734 | |
2735 #define check_lface_attrs(attrs) (void) 0 | |
2736 #define check_lface(lface) (void) 0 | |
2737 | |
2738 #endif /* GLYPH_DEBUG == 0 */ | |
2739 | |
2740 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2741 /* 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
|
2742 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
|
2743 return that face's name. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2744 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2745 static Lisp_Object |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2746 resolve_face_name (face_name) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2747 Lisp_Object face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2748 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2749 Lisp_Object aliased; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2750 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2751 if (STRINGP (face_name)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2752 face_name = intern (XSTRING (face_name)->data); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2753 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2754 for (;;) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2755 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2756 aliased = Fget (face_name, Qface_alias); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2757 if (NILP (aliased)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2758 break; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2759 else |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2760 face_name = aliased; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2761 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2762 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2763 return face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2764 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2765 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2766 |
24995 | 2767 /* Return the face definition of FACE_NAME on frame F. F null means |
2768 return the global definition. FACE_NAME may be a string or a | |
2769 symbol (apparently Emacs 20.2 allows strings as face names in face | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2770 text properties; ediff uses that). If FACE_NAME is an alias for |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2771 another face, return that face's definition. If SIGNAL_P is |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2772 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
|
2773 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
|
2774 name. */ |
24995 | 2775 |
2776 static INLINE Lisp_Object | |
2777 lface_from_face_name (f, face_name, signal_p) | |
2778 struct frame *f; | |
2779 Lisp_Object face_name; | |
2780 int signal_p; | |
2781 { | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2782 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2783 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2784 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
|
2785 |
24995 | 2786 if (f) |
2787 lface = assq_no_quit (face_name, f->face_alist); | |
2788 else | |
2789 lface = assq_no_quit (face_name, Vface_new_frame_defaults); | |
2790 | |
2791 if (CONSP (lface)) | |
2792 lface = XCDR (lface); | |
2793 else if (signal_p) | |
2794 signal_error ("Invalid face", face_name); | |
2795 | |
2796 check_lface (lface); | |
2797 return lface; | |
2798 } | |
2799 | |
2800 | |
2801 /* Get face attributes of face FACE_NAME from frame-local faces on | |
2802 frame F. Store the resulting attributes in ATTRS which must point | |
2803 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P | |
2804 is non-zero, signal an error if FACE_NAME does not name a face. | |
2805 Otherwise, value is zero if FACE_NAME is not a face. */ | |
2806 | |
2807 static INLINE int | |
2808 get_lface_attributes (f, face_name, attrs, signal_p) | |
2809 struct frame *f; | |
2810 Lisp_Object face_name; | |
2811 Lisp_Object *attrs; | |
2812 int signal_p; | |
2813 { | |
2814 Lisp_Object lface; | |
2815 int success_p; | |
2816 | |
2817 lface = lface_from_face_name (f, face_name, signal_p); | |
2818 if (!NILP (lface)) | |
2819 { | |
2820 bcopy (XVECTOR (lface)->contents, attrs, | |
2821 LFACE_VECTOR_SIZE * sizeof *attrs); | |
2822 success_p = 1; | |
2823 } | |
2824 else | |
2825 success_p = 0; | |
2826 | |
2827 return success_p; | |
2828 } | |
2829 | |
2830 | |
2831 /* Non-zero if all attributes in face attribute vector ATTRS are | |
2832 specified, i.e. are non-nil. */ | |
2833 | |
2834 static int | |
2835 lface_fully_specified_p (attrs) | |
2836 Lisp_Object *attrs; | |
2837 { | |
2838 int i; | |
2839 | |
2840 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
28237
2f636fd2f714
(check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
Gerd Moellmann <gerd@gnu.org>
parents:
28230
diff
changeset
|
2841 if (UNSPECIFIEDP (attrs[i]) && i != LFACE_FONT_INDEX) |
24995 | 2842 break; |
2843 | |
2844 return i == LFACE_VECTOR_SIZE; | |
2845 } | |
2846 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2847 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2848 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2849 /* 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
|
2850 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
|
2851 unspecified attributes of LFACE. The exception is `font' |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2852 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
|
2853 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2854 If FONTNAME is not available on frame F, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2855 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
|
2856 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
|
2857 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
|
2858 in LFACE and return 1. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2859 Otherwise, return 1. */ |
24995 | 2860 |
2861 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2862 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
|
2863 struct frame *f; |
24995 | 2864 Lisp_Object lface; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2865 Lisp_Object fontname; |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2866 int force_p, may_fail_p; |
24995 | 2867 { |
2868 struct font_name font; | |
2869 char *buffer; | |
2870 int pt; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2871 int have_xlfd_p; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2872 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2873 char *font_name = XSTRING (fontname)->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2874 struct font_info *font_info; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2875 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2876 /* 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
|
2877 fontset = fs_query_fontset (fontname, 0); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2878 if (fontset >= 0) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2879 font_name = XSTRING (fontset_ascii (fontset))->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2880 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2881 /* 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
|
2882 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
|
2883 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
|
2884 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
|
2885 later. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2886 BLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2887 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
|
2888 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2889 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2890 if (!font_info) |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2891 { |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2892 if (may_fail_p) |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2893 return 0; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2894 abort (); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2895 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2896 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2897 font.name = STRDUPA (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2898 have_xlfd_p = split_font_name (f, &font, 1); |
24995 | 2899 |
2900 /* 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
|
2901 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
|
2902 name conforming to XLFD, set normal values. */ |
24995 | 2903 |
2904 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface))) | |
2905 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2906 Lisp_Object val; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2907 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2908 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2909 buffer = (char *) alloca (strlen (font.fields[XLFD_FAMILY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2910 + strlen (font.fields[XLFD_FOUNDRY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2911 + 2); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2912 sprintf (buffer, "%s-%s", font.fields[XLFD_FOUNDRY], |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2913 font.fields[XLFD_FAMILY]); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2914 val = build_string (buffer); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2915 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2916 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2917 val = build_string ("*"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2918 LFACE_FAMILY (lface) = val; |
24995 | 2919 } |
2920 | |
2921 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface))) | |
2922 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2923 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2924 pt = xlfd_point_size (f, &font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2925 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2926 pt = pixel_point_size (f, font_info->height * 10); |
24995 | 2927 xassert (pt > 0); |
2928 LFACE_HEIGHT (lface) = make_number (pt); | |
2929 } | |
2930 | |
2931 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2932 LFACE_SWIDTH (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2933 = have_xlfd_p ? xlfd_symbolic_swidth (&font) : Qnormal; |
24995 | 2934 |
2935 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2936 LFACE_WEIGHT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2937 = have_xlfd_p ? xlfd_symbolic_weight (&font) : Qnormal; |
24995 | 2938 |
2939 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2940 LFACE_SLANT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2941 = have_xlfd_p ? xlfd_symbolic_slant (&font) : Qnormal; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2942 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2943 LFACE_FONT (lface) = fontname; |
24995 | 2944 |
2945 return 1; | |
2946 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2947 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 2948 |
2949 | |
2950 /* Merge two Lisp face attribute vectors FROM and TO and store the | |
2951 resulting attributes in TO. Every non-nil attribute of FROM | |
2952 overrides the corresponding attribute of TO. */ | |
2953 | |
2954 static INLINE void | |
2955 merge_face_vectors (from, to) | |
2956 Lisp_Object *from, *to; | |
2957 { | |
2958 int i; | |
2959 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
2960 if (!UNSPECIFIEDP (from[i])) | |
2961 to[i] = from[i]; | |
2962 } | |
2963 | |
2964 | |
2965 /* Given a Lisp face attribute vector TO and a Lisp object PROP that | |
2966 is a face property, determine the resulting face attributes on | |
2967 frame F, and store them in TO. PROP may be a single face | |
2968 specification or a list of such specifications. Each face | |
2969 specification can be | |
2970 | |
2971 1. A symbol or string naming a Lisp face. | |
2972 | |
2973 2. A property list of the form (KEYWORD VALUE ...) where each | |
2974 KEYWORD is a face attribute name, and value is an appropriate value | |
2975 for that attribute. | |
2976 | |
2977 3. Conses or the form (FOREGROUND-COLOR . COLOR) or | |
2978 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is | |
2979 for compatibility with 20.2. | |
2980 | |
2981 Face specifications earlier in lists take precedence over later | |
2982 specifications. */ | |
2983 | |
2984 static void | |
2985 merge_face_vector_with_property (f, to, prop) | |
2986 struct frame *f; | |
2987 Lisp_Object *to; | |
2988 Lisp_Object prop; | |
2989 { | |
2990 if (CONSP (prop)) | |
2991 { | |
2992 Lisp_Object first = XCAR (prop); | |
2993 | |
2994 if (EQ (first, Qforeground_color) | |
2995 || EQ (first, Qbackground_color)) | |
2996 { | |
2997 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR | |
2998 . COLOR). COLOR must be a string. */ | |
2999 Lisp_Object color_name = XCDR (prop); | |
3000 Lisp_Object color = first; | |
3001 | |
3002 if (STRINGP (color_name)) | |
3003 { | |
3004 if (EQ (color, Qforeground_color)) | |
3005 to[LFACE_FOREGROUND_INDEX] = color_name; | |
3006 else | |
3007 to[LFACE_BACKGROUND_INDEX] = color_name; | |
3008 } | |
3009 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3010 add_to_log ("Invalid face color", color_name, Qnil); |
24995 | 3011 } |
3012 else if (SYMBOLP (first) | |
3013 && *XSYMBOL (first)->name->data == ':') | |
3014 { | |
3015 /* Assume this is the property list form. */ | |
3016 while (CONSP (prop) && CONSP (XCDR (prop))) | |
3017 { | |
3018 Lisp_Object keyword = XCAR (prop); | |
3019 Lisp_Object value = XCAR (XCDR (prop)); | |
3020 | |
3021 if (EQ (keyword, QCfamily)) | |
3022 { | |
3023 if (STRINGP (value)) | |
3024 to[LFACE_FAMILY_INDEX] = value; | |
3025 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3026 add_to_log ("Illegal face font family", value, Qnil); |
24995 | 3027 } |
3028 else if (EQ (keyword, QCheight)) | |
3029 { | |
3030 if (INTEGERP (value)) | |
3031 to[LFACE_HEIGHT_INDEX] = value; | |
3032 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3033 add_to_log ("Illegal face font height", value, Qnil); |
24995 | 3034 } |
3035 else if (EQ (keyword, QCweight)) | |
3036 { | |
3037 if (SYMBOLP (value) | |
3038 && face_numeric_weight (value) >= 0) | |
3039 to[LFACE_WEIGHT_INDEX] = value; | |
3040 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3041 add_to_log ("Illegal face weight", value, Qnil); |
24995 | 3042 } |
3043 else if (EQ (keyword, QCslant)) | |
3044 { | |
3045 if (SYMBOLP (value) | |
3046 && face_numeric_slant (value) >= 0) | |
3047 to[LFACE_SLANT_INDEX] = value; | |
3048 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3049 add_to_log ("Illegal face slant", value, Qnil); |
24995 | 3050 } |
3051 else if (EQ (keyword, QCunderline)) | |
3052 { | |
3053 if (EQ (value, Qt) | |
3054 || NILP (value) | |
3055 || STRINGP (value)) | |
3056 to[LFACE_UNDERLINE_INDEX] = value; | |
3057 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3058 add_to_log ("Illegal face underline", value, Qnil); |
24995 | 3059 } |
3060 else if (EQ (keyword, QCoverline)) | |
3061 { | |
3062 if (EQ (value, Qt) | |
3063 || NILP (value) | |
3064 || STRINGP (value)) | |
3065 to[LFACE_OVERLINE_INDEX] = value; | |
3066 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3067 add_to_log ("Illegal face overline", value, Qnil); |
24995 | 3068 } |
3069 else if (EQ (keyword, QCstrike_through)) | |
3070 { | |
3071 if (EQ (value, Qt) | |
3072 || NILP (value) | |
3073 || STRINGP (value)) | |
3074 to[LFACE_STRIKE_THROUGH_INDEX] = value; | |
3075 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3076 add_to_log ("Illegal face strike-through", value, Qnil); |
24995 | 3077 } |
3078 else if (EQ (keyword, QCbox)) | |
3079 { | |
3080 if (EQ (value, Qt)) | |
3081 value = make_number (1); | |
3082 if (INTEGERP (value) | |
3083 || STRINGP (value) | |
3084 || CONSP (value) | |
3085 || NILP (value)) | |
3086 to[LFACE_BOX_INDEX] = value; | |
3087 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3088 add_to_log ("Illegal face box", value, Qnil); |
24995 | 3089 } |
3090 else if (EQ (keyword, QCinverse_video) | |
3091 || EQ (keyword, QCreverse_video)) | |
3092 { | |
3093 if (EQ (value, Qt) || NILP (value)) | |
3094 to[LFACE_INVERSE_INDEX] = value; | |
3095 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3096 add_to_log ("Illegal face inverse-video", value, Qnil); |
24995 | 3097 } |
3098 else if (EQ (keyword, QCforeground)) | |
3099 { | |
3100 if (STRINGP (value)) | |
3101 to[LFACE_FOREGROUND_INDEX] = value; | |
3102 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3103 add_to_log ("Illegal face foreground", value, Qnil); |
24995 | 3104 } |
3105 else if (EQ (keyword, QCbackground)) | |
3106 { | |
3107 if (STRINGP (value)) | |
3108 to[LFACE_BACKGROUND_INDEX] = value; | |
3109 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3110 add_to_log ("Illegal face background", value, Qnil); |
24995 | 3111 } |
3112 else if (EQ (keyword, QCstipple)) | |
3113 { | |
3114 #ifdef HAVE_X_WINDOWS | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3115 Lisp_Object pixmap_p = Fbitmap_spec_p (value); |
24995 | 3116 if (!NILP (pixmap_p)) |
3117 to[LFACE_STIPPLE_INDEX] = value; | |
3118 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3119 add_to_log ("Illegal face stipple", value, Qnil); |
24995 | 3120 #endif |
3121 } | |
3122 else if (EQ (keyword, QCwidth)) | |
3123 { | |
3124 if (SYMBOLP (value) | |
3125 && face_numeric_swidth (value) >= 0) | |
3126 to[LFACE_SWIDTH_INDEX] = value; | |
3127 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3128 add_to_log ("Illegal face width", value, Qnil); |
24995 | 3129 } |
3130 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3131 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
|
3132 keyword, Qnil); |
24995 | 3133 |
3134 prop = XCDR (XCDR (prop)); | |
3135 } | |
3136 } | |
3137 else | |
3138 { | |
3139 /* This is a list of face specs. Specifications at the | |
3140 beginning of the list take precedence over later | |
3141 specifications, so we have to merge starting with the | |
3142 last specification. */ | |
3143 Lisp_Object next = XCDR (prop); | |
3144 if (!NILP (next)) | |
3145 merge_face_vector_with_property (f, to, next); | |
3146 merge_face_vector_with_property (f, to, first); | |
3147 } | |
3148 } | |
3149 else | |
3150 { | |
3151 /* PROP ought to be a face name. */ | |
3152 Lisp_Object lface = lface_from_face_name (f, prop, 0); | |
3153 if (NILP (lface)) | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3154 add_to_log ("Invalid face text property value: %s", prop, Qnil); |
24995 | 3155 else |
3156 merge_face_vectors (XVECTOR (lface)->contents, to); | |
3157 } | |
3158 } | |
3159 | |
3160 | |
3161 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face, | |
3162 Sinternal_make_lisp_face, 1, 2, 0, | |
3163 "Make FACE, a symbol, a Lisp face with all attributes nil.\n\ | |
3164 If FACE was not known as a face before, create a new one.\n\ | |
3165 If optional argument FRAME is specified, make a frame-local face\n\ | |
3166 for that frame. Otherwise operate on the global face definition.\n\ | |
3167 Value is a vector of face attributes.") | |
3168 (face, frame) | |
3169 Lisp_Object face, frame; | |
3170 { | |
3171 Lisp_Object global_lface, lface; | |
3172 struct frame *f; | |
3173 int i; | |
3174 | |
3175 CHECK_SYMBOL (face, 0); | |
3176 global_lface = lface_from_face_name (NULL, face, 0); | |
3177 | |
3178 if (!NILP (frame)) | |
3179 { | |
3180 CHECK_LIVE_FRAME (frame, 1); | |
3181 f = XFRAME (frame); | |
3182 lface = lface_from_face_name (f, face, 0); | |
3183 } | |
3184 else | |
3185 f = NULL, lface = Qnil; | |
3186 | |
3187 /* Add a global definition if there is none. */ | |
3188 if (NILP (global_lface)) | |
3189 { | |
3190 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3191 Qunspecified); | |
3192 XVECTOR (global_lface)->contents[0] = Qface; | |
3193 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface), | |
3194 Vface_new_frame_defaults); | |
3195 | |
3196 /* Assign the new Lisp face a unique ID. The mapping from Lisp | |
3197 face id to Lisp face is given by the vector lface_id_to_name. | |
3198 The mapping from Lisp face to Lisp face id is given by the | |
3199 property `face' of the Lisp face name. */ | |
3200 if (next_lface_id == lface_id_to_name_size) | |
3201 { | |
3202 int new_size = max (50, 2 * lface_id_to_name_size); | |
3203 int sz = new_size * sizeof *lface_id_to_name; | |
3204 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz); | |
3205 lface_id_to_name_size = new_size; | |
3206 } | |
3207 | |
3208 lface_id_to_name[next_lface_id] = face; | |
3209 Fput (face, Qface, make_number (next_lface_id)); | |
3210 ++next_lface_id; | |
3211 } | |
3212 else if (f == NULL) | |
3213 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3214 XVECTOR (global_lface)->contents[i] = Qunspecified; | |
3215 | |
3216 /* Add a frame-local definition. */ | |
3217 if (f) | |
3218 { | |
3219 if (NILP (lface)) | |
3220 { | |
3221 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3222 Qunspecified); | |
3223 XVECTOR (lface)->contents[0] = Qface; | |
3224 f->face_alist = Fcons (Fcons (face, lface), f->face_alist); | |
3225 } | |
3226 else | |
3227 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3228 XVECTOR (lface)->contents[i] = Qunspecified; | |
3229 } | |
3230 else | |
3231 lface = global_lface; | |
3232 | |
3233 xassert (LFACEP (lface)); | |
3234 check_lface (lface); | |
3235 return lface; | |
3236 } | |
3237 | |
3238 | |
3239 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p, | |
3240 Sinternal_lisp_face_p, 1, 2, 0, | |
3241 "Return non-nil if FACE names a face.\n\ | |
3242 If optional second parameter FRAME is non-nil, check for the\n\ | |
3243 existence of a frame-local face with name FACE on that frame.\n\ | |
3244 Otherwise check for the existence of a global face.") | |
3245 (face, frame) | |
3246 Lisp_Object face, frame; | |
3247 { | |
3248 Lisp_Object lface; | |
3249 | |
3250 if (!NILP (frame)) | |
3251 { | |
3252 CHECK_LIVE_FRAME (frame, 1); | |
3253 lface = lface_from_face_name (XFRAME (frame), face, 0); | |
3254 } | |
3255 else | |
3256 lface = lface_from_face_name (NULL, face, 0); | |
3257 | |
3258 return lface; | |
3259 } | |
3260 | |
3261 | |
3262 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face, | |
3263 Sinternal_copy_lisp_face, 4, 4, 0, | |
3264 "Copy face FROM to TO.\n\ | |
3265 If FRAME it t, copy the global face definition of FROM to the\n\ | |
3266 global face definition of TO. Otherwise, copy the frame-local\n\ | |
3267 definition of FROM on FRAME to the frame-local definition of TO\n\ | |
3268 on NEW-FRAME, or FRAME if NEW-FRAME is nil.\n\ | |
3269 \n\ | |
3270 Value is TO.") | |
3271 (from, to, frame, new_frame) | |
3272 Lisp_Object from, to, frame, new_frame; | |
3273 { | |
3274 Lisp_Object lface, copy; | |
3275 | |
3276 CHECK_SYMBOL (from, 0); | |
3277 CHECK_SYMBOL (to, 1); | |
3278 if (NILP (new_frame)) | |
3279 new_frame = frame; | |
3280 | |
3281 if (EQ (frame, Qt)) | |
3282 { | |
3283 /* Copy global definition of FROM. We don't make copies of | |
3284 strings etc. because 20.2 didn't do it either. */ | |
3285 lface = lface_from_face_name (NULL, from, 1); | |
3286 copy = Finternal_make_lisp_face (to, Qnil); | |
3287 } | |
3288 else | |
3289 { | |
3290 /* Copy frame-local definition of FROM. */ | |
3291 CHECK_LIVE_FRAME (frame, 2); | |
3292 CHECK_LIVE_FRAME (new_frame, 3); | |
3293 lface = lface_from_face_name (XFRAME (frame), from, 1); | |
3294 copy = Finternal_make_lisp_face (to, new_frame); | |
3295 } | |
3296 | |
3297 bcopy (XVECTOR (lface)->contents, XVECTOR (copy)->contents, | |
3298 LFACE_VECTOR_SIZE * sizeof (Lisp_Object)); | |
3299 | |
3300 return to; | |
3301 } | |
3302 | |
3303 | |
3304 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute, | |
3305 Sinternal_set_lisp_face_attribute, 3, 4, 0, | |
3306 "Set attribute ATTR of FACE to VALUE.\n\ | |
3307 If optional argument FRAME is given, set the face attribute of face FACE\n\ | |
3308 on that frame. If FRAME is t, set the attribute of the default for face\n\ | |
3309 FACE (for new frames). If FRAME is omitted or nil, use the selected\n\ | |
3310 frame.") | |
3311 (face, attr, value, frame) | |
3312 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
|
3313 { |
24995 | 3314 Lisp_Object lface; |
3315 Lisp_Object old_value = Qnil; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3316 /* Set 1 if ATTR is QCfont. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3317 int font_attr_p = 0; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3318 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */ |
24995 | 3319 int font_related_attr_p = 0; |
3320 | |
3321 CHECK_SYMBOL (face, 0); | |
3322 CHECK_SYMBOL (attr, 1); | |
3323 | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3324 face = resolve_face_name (face); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3325 |
24995 | 3326 /* Set lface to the Lisp attribute vector of FACE. */ |
3327 if (EQ (frame, Qt)) | |
3328 lface = lface_from_face_name (NULL, face, 1); | |
3329 else | |
3330 { | |
3331 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3332 frame = selected_frame; |
24995 | 3333 |
3334 CHECK_LIVE_FRAME (frame, 3); | |
3335 lface = lface_from_face_name (XFRAME (frame), face, 0); | |
3336 | |
3337 /* If a frame-local face doesn't exist yet, create one. */ | |
3338 if (NILP (lface)) | |
3339 lface = Finternal_make_lisp_face (face, frame); | |
3340 } | |
3341 | |
3342 if (EQ (attr, QCfamily)) | |
3343 { | |
3344 if (!UNSPECIFIEDP (value)) | |
3345 { | |
3346 CHECK_STRING (value, 3); | |
3347 if (XSTRING (value)->size == 0) | |
3348 signal_error ("Invalid face family", value); | |
3349 } | |
3350 old_value = LFACE_FAMILY (lface); | |
3351 LFACE_FAMILY (lface) = value; | |
3352 font_related_attr_p = 1; | |
3353 } | |
3354 else if (EQ (attr, QCheight)) | |
3355 { | |
3356 if (!UNSPECIFIEDP (value)) | |
3357 { | |
3358 CHECK_NUMBER (value, 3); | |
3359 if (XINT (value) <= 0) | |
3360 signal_error ("Invalid face height", value); | |
3361 } | |
3362 old_value = LFACE_HEIGHT (lface); | |
3363 LFACE_HEIGHT (lface) = value; | |
3364 font_related_attr_p = 1; | |
3365 } | |
3366 else if (EQ (attr, QCweight)) | |
3367 { | |
3368 if (!UNSPECIFIEDP (value)) | |
3369 { | |
3370 CHECK_SYMBOL (value, 3); | |
3371 if (face_numeric_weight (value) < 0) | |
3372 signal_error ("Invalid face weight", value); | |
3373 } | |
3374 old_value = LFACE_WEIGHT (lface); | |
3375 LFACE_WEIGHT (lface) = value; | |
3376 font_related_attr_p = 1; | |
3377 } | |
3378 else if (EQ (attr, QCslant)) | |
3379 { | |
3380 if (!UNSPECIFIEDP (value)) | |
3381 { | |
3382 CHECK_SYMBOL (value, 3); | |
3383 if (face_numeric_slant (value) < 0) | |
3384 signal_error ("Invalid face slant", value); | |
3385 } | |
3386 old_value = LFACE_SLANT (lface); | |
3387 LFACE_SLANT (lface) = value; | |
3388 font_related_attr_p = 1; | |
3389 } | |
3390 else if (EQ (attr, QCunderline)) | |
3391 { | |
3392 if (!UNSPECIFIEDP (value)) | |
3393 if ((SYMBOLP (value) | |
3394 && !EQ (value, Qt) | |
3395 && !EQ (value, Qnil)) | |
3396 /* Underline color. */ | |
3397 || (STRINGP (value) | |
3398 && XSTRING (value)->size == 0)) | |
3399 signal_error ("Invalid face underline", value); | |
3400 | |
3401 old_value = LFACE_UNDERLINE (lface); | |
3402 LFACE_UNDERLINE (lface) = value; | |
3403 } | |
3404 else if (EQ (attr, QCoverline)) | |
3405 { | |
3406 if (!UNSPECIFIEDP (value)) | |
3407 if ((SYMBOLP (value) | |
3408 && !EQ (value, Qt) | |
3409 && !EQ (value, Qnil)) | |
3410 /* Overline color. */ | |
3411 || (STRINGP (value) | |
3412 && XSTRING (value)->size == 0)) | |
3413 signal_error ("Invalid face overline", value); | |
3414 | |
3415 old_value = LFACE_OVERLINE (lface); | |
3416 LFACE_OVERLINE (lface) = value; | |
3417 } | |
3418 else if (EQ (attr, QCstrike_through)) | |
3419 { | |
3420 if (!UNSPECIFIEDP (value)) | |
3421 if ((SYMBOLP (value) | |
3422 && !EQ (value, Qt) | |
3423 && !EQ (value, Qnil)) | |
3424 /* Strike-through color. */ | |
3425 || (STRINGP (value) | |
3426 && XSTRING (value)->size == 0)) | |
3427 signal_error ("Invalid face strike-through", value); | |
3428 | |
3429 old_value = LFACE_STRIKE_THROUGH (lface); | |
3430 LFACE_STRIKE_THROUGH (lface) = value; | |
3431 } | |
3432 else if (EQ (attr, QCbox)) | |
3433 { | |
3434 int valid_p; | |
3435 | |
3436 /* Allow t meaning a simple box of width 1 in foreground color | |
3437 of the face. */ | |
3438 if (EQ (value, Qt)) | |
3439 value = make_number (1); | |
3440 | |
3441 if (UNSPECIFIEDP (value)) | |
3442 valid_p = 1; | |
3443 else if (NILP (value)) | |
3444 valid_p = 1; | |
3445 else if (INTEGERP (value)) | |
3446 valid_p = XINT (value) > 0; | |
3447 else if (STRINGP (value)) | |
3448 valid_p = XSTRING (value)->size > 0; | |
3449 else if (CONSP (value)) | |
3450 { | |
3451 Lisp_Object tem; | |
3452 | |
3453 tem = value; | |
3454 while (CONSP (tem)) | |
3455 { | |
3456 Lisp_Object k, v; | |
3457 | |
3458 k = XCAR (tem); | |
3459 tem = XCDR (tem); | |
3460 if (!CONSP (tem)) | |
3461 break; | |
3462 v = XCAR (tem); | |
3463 tem = XCDR (tem); | |
3464 | |
3465 if (EQ (k, QCline_width)) | |
3466 { | |
3467 if (!INTEGERP (v) || XINT (v) <= 0) | |
3468 break; | |
3469 } | |
3470 else if (EQ (k, QCcolor)) | |
3471 { | |
3472 if (!STRINGP (v) || XSTRING (v)->size == 0) | |
3473 break; | |
3474 } | |
3475 else if (EQ (k, QCstyle)) | |
3476 { | |
3477 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button)) | |
3478 break; | |
3479 } | |
3480 else | |
3481 break; | |
3482 } | |
3483 | |
3484 valid_p = NILP (tem); | |
3485 } | |
3486 else | |
3487 valid_p = 0; | |
3488 | |
3489 if (!valid_p) | |
3490 signal_error ("Invalid face box", value); | |
3491 | |
3492 old_value = LFACE_BOX (lface); | |
3493 LFACE_BOX (lface) = value; | |
3494 } | |
3495 else if (EQ (attr, QCinverse_video) | |
3496 || EQ (attr, QCreverse_video)) | |
3497 { | |
3498 if (!UNSPECIFIEDP (value)) | |
3499 { | |
3500 CHECK_SYMBOL (value, 3); | |
3501 if (!EQ (value, Qt) && !NILP (value)) | |
3502 signal_error ("Invalid inverse-video face attribute value", value); | |
3503 } | |
3504 old_value = LFACE_INVERSE (lface); | |
3505 LFACE_INVERSE (lface) = value; | |
3506 } | |
3507 else if (EQ (attr, QCforeground)) | |
3508 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3509 if (!UNSPECIFIEDP (value)) |
24995 | 3510 { |
3511 /* Don't check for valid color names here because it depends | |
3512 on the frame (display) whether the color will be valid | |
3513 when the face is realized. */ | |
3514 CHECK_STRING (value, 3); | |
3515 if (XSTRING (value)->size == 0) | |
3516 signal_error ("Empty foreground color value", value); | |
3517 } | |
3518 old_value = LFACE_FOREGROUND (lface); | |
3519 LFACE_FOREGROUND (lface) = value; | |
3520 } | |
3521 else if (EQ (attr, QCbackground)) | |
3522 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3523 if (!UNSPECIFIEDP (value)) |
24995 | 3524 { |
3525 /* Don't check for valid color names here because it depends | |
3526 on the frame (display) whether the color will be valid | |
3527 when the face is realized. */ | |
3528 CHECK_STRING (value, 3); | |
3529 if (XSTRING (value)->size == 0) | |
3530 signal_error ("Empty background color value", value); | |
3531 } | |
3532 old_value = LFACE_BACKGROUND (lface); | |
3533 LFACE_BACKGROUND (lface) = value; | |
3534 } | |
3535 else if (EQ (attr, QCstipple)) | |
3536 { | |
3537 #ifdef HAVE_X_WINDOWS | |
3538 if (!UNSPECIFIEDP (value) | |
3539 && !NILP (value) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3540 && NILP (Fbitmap_spec_p (value))) |
24995 | 3541 signal_error ("Invalid stipple attribute", value); |
3542 old_value = LFACE_STIPPLE (lface); | |
3543 LFACE_STIPPLE (lface) = value; | |
3544 #endif /* HAVE_X_WINDOWS */ | |
3545 } | |
3546 else if (EQ (attr, QCwidth)) | |
3547 { | |
3548 if (!UNSPECIFIEDP (value)) | |
3549 { | |
3550 CHECK_SYMBOL (value, 3); | |
3551 if (face_numeric_swidth (value) < 0) | |
3552 signal_error ("Invalid face width", value); | |
3553 } | |
3554 old_value = LFACE_SWIDTH (lface); | |
3555 LFACE_SWIDTH (lface) = value; | |
3556 font_related_attr_p = 1; | |
3557 } | |
3558 else if (EQ (attr, QCfont)) | |
3559 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3560 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3561 /* Set font-related attributes of the Lisp face from an |
3562 XLFD font name. */ | |
3563 struct frame *f; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3564 Lisp_Object tmp; |
24995 | 3565 |
3566 CHECK_STRING (value, 3); | |
3567 if (EQ (frame, Qt)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3568 f = SELECTED_FRAME (); |
24995 | 3569 else |
3570 f = check_x_frame (frame); | |
3571 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3572 /* 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
|
3573 a case, use the base fontset name. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3574 tmp = Fquery_fontset (value, Qnil); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3575 if (!NILP (tmp)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3576 value = tmp; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3577 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3578 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
|
3579 signal_error ("Invalid font or fontset name", value); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3580 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3581 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
|
3582 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3583 } |
3584 else if (EQ (attr, QCbold)) | |
3585 { | |
3586 old_value = LFACE_WEIGHT (lface); | |
3587 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold; | |
3588 font_related_attr_p = 1; | |
3589 } | |
3590 else if (EQ (attr, QCitalic)) | |
3591 { | |
3592 old_value = LFACE_SLANT (lface); | |
3593 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic; | |
3594 font_related_attr_p = 1; | |
3595 } | |
3596 else | |
3597 signal_error ("Invalid face attribute name", attr); | |
3598 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3599 if (font_related_attr_p |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3600 && !UNSPECIFIEDP (value)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3601 /* 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
|
3602 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
|
3603 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
|
3604 selection mechanism doesn't use it. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3605 LFACE_FONT (lface) = Qnil; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3606 |
24995 | 3607 /* Changing a named face means that all realized faces depending on |
3608 that face are invalid. Since we cannot tell which realized faces | |
3609 depend on the face, make sure they are all removed. This is done | |
3610 by incrementing face_change_count. The next call to | |
3611 init_iterator will then free realized faces. */ | |
3612 if (!EQ (frame, Qt) | |
3613 && (EQ (attr, QCfont) | |
3614 || NILP (Fequal (old_value, value)))) | |
3615 { | |
3616 ++face_change_count; | |
3617 ++windows_or_buffers_changed; | |
3618 } | |
3619 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3620 #ifdef HAVE_WINDOW_SYSTEM |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3621 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3622 if (!EQ (frame, Qt) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3623 && !UNSPECIFIEDP (value) |
24995 | 3624 && NILP (Fequal (old_value, value))) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3625 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3626 Lisp_Object param; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3627 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3628 param = Qnil; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3629 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3630 if (EQ (face, Qdefault)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3631 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3632 /* 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
|
3633 reflected in changed `font' frame parameters. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3634 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
|
3635 && lface_fully_specified_p (XVECTOR (lface)->contents)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3636 set_font_frame_param (frame, lface); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3637 else if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3638 param = Qforeground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3639 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3640 param = Qbackground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3641 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3642 #ifndef WINDOWSNT |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3643 else if (EQ (face, Qscroll_bar)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3644 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3645 /* 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
|
3646 `scroll-bar-foreground' and `scroll-bar-background'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3647 if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3648 param = Qscroll_bar_foreground; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3649 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3650 param = Qscroll_bar_background; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3651 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3652 #endif |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3653 else if (EQ (face, Qborder)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3654 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3655 /* Changing background color of `border' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3656 `border-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3657 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3658 param = Qborder_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3659 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3660 else if (EQ (face, Qcursor)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3661 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3662 /* Changing background color of `cursor' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3663 `cursor-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3664 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3665 param = Qcursor_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3666 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3667 else if (EQ (face, Qmouse)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3668 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3669 /* Changing background color of `mouse' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3670 `mouse-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3671 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3672 param = Qmouse_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3673 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3674 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3675 if (!NILP (param)) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3676 Fmodify_frame_parameters (frame, Fcons (Fcons (param, value), Qnil)); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3677 } |
24995 | 3678 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3679 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3680 |
3681 return face; | |
3682 } | |
3683 | |
3684 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3685 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3686 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3687 /* 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
|
3688 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
|
3689 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
|
3690 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
|
3691 there's no matching font, signals an error. */ |
24995 | 3692 |
3693 static void | |
3694 set_font_frame_param (frame, lface) | |
3695 Lisp_Object frame, lface; | |
3696 { | |
3697 struct frame *f = XFRAME (frame); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3698 Lisp_Object font_name; |
24995 | 3699 char *font; |
3700 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3701 if (STRINGP (LFACE_FONT (lface))) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3702 font_name = LFACE_FONT (lface); |
24995 | 3703 else |
3704 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3705 /* 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
|
3706 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
|
3707 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
|
3708 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
|
3709 if (!font) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3710 error ("No font matches the specified attribute"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3711 font_name = build_string (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3712 xfree (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3713 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3714 store_frame_param (f, Qfont, font_name); |
24995 | 3715 } |
3716 | |
3717 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3718 /* 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
|
3719 has been assigned the value NEW_VALUE. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3720 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3721 void |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3722 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
|
3723 struct frame *f; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3724 Lisp_Object param, new_value; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3725 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3726 Lisp_Object lface; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3727 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3728 /* 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
|
3729 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
|
3730 face-set-after-frame-defaults. */ |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3731 if (NILP (f->face_alist)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3732 return; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3733 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3734 if (EQ (param, Qforeground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3735 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3736 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3737 LFACE_FOREGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3738 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3739 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3740 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3741 else if (EQ (param, Qbackground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3742 { |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3743 Lisp_Object frame; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3744 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3745 /* 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
|
3746 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
|
3747 frame-update-face-colors to do that. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3748 XSETFRAME (frame, f); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3749 call1 (Qframe_update_face_colors, frame); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3750 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3751 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3752 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3753 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3754 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3755 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3756 if (EQ (param, Qborder_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3757 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3758 lface = lface_from_face_name (f, Qborder, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3759 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3760 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3761 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3762 else if (EQ (param, Qcursor_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3763 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3764 lface = lface_from_face_name (f, Qcursor, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3765 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3766 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3767 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3768 else if (EQ (param, Qmouse_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3769 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3770 lface = lface_from_face_name (f, Qmouse, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3771 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3772 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3773 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3774 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3775 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3776 |
24995 | 3777 /* Get the value of X resource RESOURCE, class CLASS for the display |
3778 of frame FRAME. This is here because ordinary `x-get-resource' | |
3779 doesn't take a frame argument. */ | |
3780 | |
3781 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource, | |
3782 Sinternal_face_x_get_resource, 3, 3, 0, "") | |
3783 (resource, class, frame) | |
3784 Lisp_Object resource, class, frame; | |
3785 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3786 Lisp_Object value = Qnil; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3787 #ifndef WINDOWSNT |
24995 | 3788 CHECK_STRING (resource, 0); |
3789 CHECK_STRING (class, 1); | |
3790 CHECK_LIVE_FRAME (frame, 2); | |
3791 BLOCK_INPUT; | |
3792 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)), | |
3793 resource, class, Qnil, Qnil); | |
3794 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3795 #endif |
24995 | 3796 return value; |
3797 } | |
3798 | |
3799 | |
3800 /* Return resource string VALUE as a boolean value, i.e. nil, or t. | |
3801 If VALUE is "on" or "true", return t. If VALUE is "off" or | |
3802 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an | |
3803 error; if SIGNAL_P is zero, return 0. */ | |
3804 | |
3805 static Lisp_Object | |
3806 face_boolean_x_resource_value (value, signal_p) | |
3807 Lisp_Object value; | |
3808 int signal_p; | |
3809 { | |
3810 Lisp_Object result = make_number (0); | |
3811 | |
3812 xassert (STRINGP (value)); | |
3813 | |
3814 if (xstricmp (XSTRING (value)->data, "on") == 0 | |
3815 || xstricmp (XSTRING (value)->data, "true") == 0) | |
3816 result = Qt; | |
3817 else if (xstricmp (XSTRING (value)->data, "off") == 0 | |
3818 || xstricmp (XSTRING (value)->data, "false") == 0) | |
3819 result = Qnil; | |
3820 else if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
3821 result = Qunspecified; | |
3822 else if (signal_p) | |
3823 signal_error ("Invalid face attribute value from X resource", value); | |
3824 | |
3825 return result; | |
3826 } | |
3827 | |
3828 | |
3829 DEFUN ("internal-set-lisp-face-attribute-from-resource", | |
3830 Finternal_set_lisp_face_attribute_from_resource, | |
3831 Sinternal_set_lisp_face_attribute_from_resource, | |
3832 3, 4, 0, "") | |
3833 (face, attr, value, frame) | |
3834 Lisp_Object face, attr, value, frame; | |
3835 { | |
3836 CHECK_SYMBOL (face, 0); | |
3837 CHECK_SYMBOL (attr, 1); | |
3838 CHECK_STRING (value, 2); | |
3839 | |
3840 if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
3841 value = Qunspecified; | |
3842 else if (EQ (attr, QCheight)) | |
3843 { | |
3844 value = Fstring_to_number (value, make_number (10)); | |
3845 if (XINT (value) <= 0) | |
3846 signal_error ("Invalid face height from X resource", value); | |
3847 } | |
3848 else if (EQ (attr, QCbold) || EQ (attr, QCitalic)) | |
3849 value = face_boolean_x_resource_value (value, 1); | |
3850 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth)) | |
3851 value = intern (XSTRING (value)->data); | |
3852 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video)) | |
3853 value = face_boolean_x_resource_value (value, 1); | |
3854 else if (EQ (attr, QCunderline) | |
3855 || EQ (attr, QCoverline) | |
3856 || EQ (attr, QCstrike_through) | |
3857 || EQ (attr, QCbox)) | |
3858 { | |
3859 Lisp_Object boolean_value; | |
3860 | |
3861 /* If the result of face_boolean_x_resource_value is t or nil, | |
3862 VALUE does NOT specify a color. */ | |
3863 boolean_value = face_boolean_x_resource_value (value, 0); | |
3864 if (SYMBOLP (boolean_value)) | |
3865 value = boolean_value; | |
3866 } | |
3867 | |
3868 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
|
3869 } |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
3870 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3871 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3872 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3873 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3874 #ifdef HAVE_X_WINDOWS |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3875 /*********************************************************************** |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3876 Menu face |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3877 ***********************************************************************/ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3878 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3879 #ifdef USE_X_TOOLKIT |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3880 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3881 /* 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
|
3882 XtApplyToWidgets. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3883 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3884 struct x_resources |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3885 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3886 Arg *av; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3887 int ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3888 }; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3889 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3890 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3891 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3892 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3893 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
|
3894 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
|
3895 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3896 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3897 /* 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
|
3898 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
|
3899 submenu. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3900 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3901 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3902 xm_apply_resources (w, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3903 Widget w; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3904 XtPointer p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3905 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3906 Widget submenu = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3907 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
|
3908 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3909 XtSetValues (w, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3910 XtVaGetValues (w, XmNsubMenuId, &submenu, NULL); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3911 if (submenu) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3912 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3913 XtSetValues (submenu, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3914 XtApplyToWidgets (submenu, xm_apply_resources, p); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3915 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3916 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3917 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3918 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3919 /* 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
|
3920 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
|
3921 following problems: |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3922 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3923 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
|
3924 somewhere in LessTif. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3925 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3926 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3927 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
|
3928 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3929 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3930 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3931 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3932 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3933 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3934 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3935 XmFontList fl = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3936 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3937 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
|
3938 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
|
3939 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3940 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3941 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3942 XtSetArg (av[ac], XmNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3943 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3944 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3945 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3946 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3947 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3948 XtSetArg (av[ac], XmNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3949 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3950 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3951 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3952 /* 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
|
3953 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3954 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3955 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3956 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3957 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3958 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3959 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3960 #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
|
3961 in LessTif during geometry computation. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3962 XmFontListEntry fe; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3963 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
|
3964 fl = XmFontListAppendEntry (NULL, fe); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3965 XtSetArg (av[ac], XmNfontList, fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3966 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3967 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3968 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3969 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3970 xassert (ac <= sizeof av / sizeof *av); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3971 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3972 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3973 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3974 struct x_resources res; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3975 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3976 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3977 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3978 XtApplyToWidgets (widget, xm_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3979 if (fl) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3980 XmFontListFree (fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3981 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3982 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3983 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3984 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3985 #endif /* USE_MOTIF */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3986 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3987 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3988 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3989 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
|
3990 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
|
3991 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3992 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3993 /* 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
|
3994 structure. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3995 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3996 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3997 xl_apply_resources (widget, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3998 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3999 XtPointer p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4000 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4001 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
|
4002 XtSetValues (widget, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4003 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4004 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4005 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4006 /* 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
|
4007 This is the Lucid version. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4008 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4009 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4010 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
|
4011 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4012 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4013 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4014 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4015 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4016 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4017 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4018 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4019 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
|
4020 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
|
4021 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4022 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4023 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4024 XtSetArg (av[ac], XtNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4025 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4026 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4027 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4028 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4029 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4030 XtSetArg (av[ac], XtNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4031 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4032 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4033 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4034 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4035 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4036 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4037 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4038 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4039 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4040 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4041 XtSetArg (av[ac], XtNfont, face->font); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4042 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4043 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4044 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4045 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4046 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4047 struct x_resources res; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4048 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4049 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4050 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4051 /* 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
|
4052 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
|
4053 is a function from lwlib. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4054 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4055 XtApplyToWidgets (widget, xl_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4056 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4057 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4058 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4059 #endif /* USE_LUCID */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4060 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4061 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4062 /* 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
|
4063 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4064 void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4065 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
|
4066 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4067 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4068 { |
26759
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4069 /* 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
|
4070 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
|
4071 will need the `menu' face. */ |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4072 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
|
4073 recompute_basic_faces (f); |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4074 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4075 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4076 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
|
4077 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4078 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4079 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
|
4080 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4081 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4082 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4083 #endif /* USE_X_TOOLKIT */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4084 |
24995 | 4085 #endif /* HAVE_X_WINDOWS */ |
4086 | |
4087 | |
4088 | |
4089 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute, | |
4090 Sinternal_get_lisp_face_attribute, | |
4091 2, 3, 0, | |
4092 "Return face attribute KEYWORD of face SYMBOL.\n\ | |
4093 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid\n\ | |
4094 face attribute name, signal an error.\n\ | |
4095 If the optional argument FRAME is given, report on face FACE in that\n\ | |
4096 frame. If FRAME is t, report on the defaults for face FACE (for new\n\ | |
4097 frames). If FRAME is omitted or nil, use the selected frame.") | |
4098 (symbol, keyword, frame) | |
4099 Lisp_Object symbol, keyword, frame; | |
4100 { | |
4101 Lisp_Object lface, value = Qnil; | |
4102 | |
4103 CHECK_SYMBOL (symbol, 0); | |
4104 CHECK_SYMBOL (keyword, 1); | |
4105 | |
4106 if (EQ (frame, Qt)) | |
4107 lface = lface_from_face_name (NULL, symbol, 1); | |
4108 else | |
4109 { | |
4110 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4111 frame = selected_frame; |
24995 | 4112 CHECK_LIVE_FRAME (frame, 2); |
4113 lface = lface_from_face_name (XFRAME (frame), symbol, 1); | |
4114 } | |
4115 | |
4116 if (EQ (keyword, QCfamily)) | |
4117 value = LFACE_FAMILY (lface); | |
4118 else if (EQ (keyword, QCheight)) | |
4119 value = LFACE_HEIGHT (lface); | |
4120 else if (EQ (keyword, QCweight)) | |
4121 value = LFACE_WEIGHT (lface); | |
4122 else if (EQ (keyword, QCslant)) | |
4123 value = LFACE_SLANT (lface); | |
4124 else if (EQ (keyword, QCunderline)) | |
4125 value = LFACE_UNDERLINE (lface); | |
4126 else if (EQ (keyword, QCoverline)) | |
4127 value = LFACE_OVERLINE (lface); | |
4128 else if (EQ (keyword, QCstrike_through)) | |
4129 value = LFACE_STRIKE_THROUGH (lface); | |
4130 else if (EQ (keyword, QCbox)) | |
4131 value = LFACE_BOX (lface); | |
4132 else if (EQ (keyword, QCinverse_video) | |
4133 || EQ (keyword, QCreverse_video)) | |
4134 value = LFACE_INVERSE (lface); | |
4135 else if (EQ (keyword, QCforeground)) | |
4136 value = LFACE_FOREGROUND (lface); | |
4137 else if (EQ (keyword, QCbackground)) | |
4138 value = LFACE_BACKGROUND (lface); | |
4139 else if (EQ (keyword, QCstipple)) | |
4140 value = LFACE_STIPPLE (lface); | |
4141 else if (EQ (keyword, QCwidth)) | |
4142 value = LFACE_SWIDTH (lface); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4143 else if (EQ (keyword, QCfont)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4144 value = LFACE_FONT (lface); |
24995 | 4145 else |
4146 signal_error ("Invalid face attribute name", keyword); | |
4147 | |
4148 return value; | |
4149 } | |
4150 | |
4151 | |
4152 DEFUN ("internal-lisp-face-attribute-values", | |
4153 Finternal_lisp_face_attribute_values, | |
4154 Sinternal_lisp_face_attribute_values, 1, 1, 0, | |
4155 "Return a list of valid discrete values for face attribute ATTR.\n\ | |
4156 Value is nil if ATTR doesn't have a discrete set of valid values.") | |
4157 (attr) | |
4158 Lisp_Object attr; | |
4159 { | |
4160 Lisp_Object result = Qnil; | |
4161 | |
4162 CHECK_SYMBOL (attr, 0); | |
4163 | |
4164 if (EQ (attr, QCweight) | |
4165 || EQ (attr, QCslant) | |
4166 || EQ (attr, QCwidth)) | |
4167 { | |
4168 /* Extract permissible symbols from tables. */ | |
4169 struct table_entry *table; | |
4170 int i, dim; | |
4171 | |
4172 if (EQ (attr, QCweight)) | |
4173 table = weight_table, dim = DIM (weight_table); | |
4174 else if (EQ (attr, QCslant)) | |
4175 table = slant_table, dim = DIM (slant_table); | |
4176 else | |
4177 table = swidth_table, dim = DIM (swidth_table); | |
4178 | |
4179 for (i = 0; i < dim; ++i) | |
4180 { | |
4181 Lisp_Object symbol = *table[i].symbol; | |
4182 Lisp_Object tail = result; | |
4183 | |
4184 while (!NILP (tail) | |
4185 && !EQ (XCAR (tail), symbol)) | |
4186 tail = XCDR (tail); | |
4187 | |
4188 if (NILP (tail)) | |
4189 result = Fcons (symbol, result); | |
4190 } | |
4191 } | |
4192 else if (EQ (attr, QCunderline)) | |
4193 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4194 else if (EQ (attr, QCoverline)) | |
4195 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4196 else if (EQ (attr, QCstrike_through)) | |
4197 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4198 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video)) | |
4199 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4200 | |
4201 return result; | |
4202 } | |
4203 | |
4204 | |
4205 DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face, | |
4206 Sinternal_merge_in_global_face, 2, 2, 0, | |
4207 "Add attributes from frame-default definition of FACE to FACE on FRAME.") | |
4208 (face, frame) | |
4209 Lisp_Object face, frame; | |
4210 { | |
4211 Lisp_Object global_lface, local_lface; | |
4212 CHECK_LIVE_FRAME (frame, 1); | |
4213 global_lface = lface_from_face_name (NULL, face, 1); | |
4214 local_lface = lface_from_face_name (XFRAME (frame), face, 0); | |
4215 if (NILP (local_lface)) | |
4216 local_lface = Finternal_make_lisp_face (face, frame); | |
4217 merge_face_vectors (XVECTOR (global_lface)->contents, | |
4218 XVECTOR (local_lface)->contents); | |
4219 return face; | |
4220 } | |
4221 | |
4222 | |
4223 /* The following function is implemented for compatibility with 20.2. | |
4224 The function is used in x-resolve-fonts when it is asked to | |
4225 return fonts with the same size as the font of a face. This is | |
4226 done in fontset.el. */ | |
4227 | |
4228 DEFUN ("face-font", Fface_font, Sface_font, 1, 2, 0, | |
4229 "Return the font name of face FACE, or nil if it is unspecified.\n\ | |
4230 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4231 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4232 The font default for a face is either nil, or a list\n\ | |
4233 of the form (bold), (italic) or (bold italic).\n\ | |
4234 If FRAME is omitted or nil, use the selected frame.") | |
4235 (face, frame) | |
4236 Lisp_Object face, frame; | |
4237 { | |
4238 if (EQ (frame, Qt)) | |
4239 { | |
4240 Lisp_Object result = Qnil; | |
4241 Lisp_Object lface = lface_from_face_name (NULL, face, 1); | |
4242 | |
4243 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface)) | |
4244 && !EQ (LFACE_WEIGHT (lface), Qnormal)) | |
4245 result = Fcons (Qbold, result); | |
4246 | |
4247 if (!NILP (LFACE_SLANT (lface)) | |
4248 && !EQ (LFACE_SLANT (lface), Qnormal)) | |
4249 result = Fcons (Qitalic, result); | |
4250 | |
4251 return result; | |
4252 } | |
4253 else | |
4254 { | |
4255 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
|
4256 int face_id = lookup_named_face (f, face, 0); |
24995 | 4257 struct face *face = FACE_FROM_ID (f, face_id); |
4258 return build_string (face->font_name); | |
4259 } | |
4260 } | |
4261 | |
4262 | |
4263 /* Compare face vectors V1 and V2 for equality. Value is non-zero if | |
4264 all attributes are `equal'. Tries to be fast because this function | |
4265 is called quite often. */ | |
4266 | |
4267 static INLINE int | |
4268 lface_equal_p (v1, v2) | |
4269 Lisp_Object *v1, *v2; | |
4270 { | |
4271 int i, equal_p = 1; | |
4272 | |
4273 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i) | |
4274 { | |
4275 Lisp_Object a = v1[i]; | |
4276 Lisp_Object b = v2[i]; | |
4277 | |
4278 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil, | |
4279 and the other is specified. */ | |
4280 equal_p = XTYPE (a) == XTYPE (b); | |
4281 if (!equal_p) | |
4282 break; | |
4283 | |
4284 if (!EQ (a, b)) | |
4285 { | |
4286 switch (XTYPE (a)) | |
4287 { | |
4288 case Lisp_String: | |
4289 equal_p = (XSTRING (a)->size == XSTRING (b)->size | |
4290 && bcmp (XSTRING (a)->data, XSTRING (b)->data, | |
4291 XSTRING (a)->size) == 0); | |
4292 break; | |
4293 | |
4294 case Lisp_Int: | |
4295 case Lisp_Symbol: | |
4296 equal_p = 0; | |
4297 break; | |
4298 | |
4299 default: | |
4300 equal_p = !NILP (Fequal (a, b)); | |
4301 break; | |
4302 } | |
4303 } | |
4304 } | |
4305 | |
4306 return equal_p; | |
4307 } | |
4308 | |
4309 | |
4310 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p, | |
4311 Sinternal_lisp_face_equal_p, 2, 3, 0, | |
4312 "True if FACE1 and FACE2 are equal.\n\ | |
4313 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4314 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4315 If FRAME is omitted or nil, use the selected frame.") | |
4316 (face1, face2, frame) | |
4317 Lisp_Object face1, face2, frame; | |
4318 { | |
4319 int equal_p; | |
4320 struct frame *f; | |
4321 Lisp_Object lface1, lface2; | |
4322 | |
4323 if (EQ (frame, Qt)) | |
4324 f = NULL; | |
4325 else | |
4326 /* Don't use check_x_frame here because this function is called | |
4327 before X frames exist. At that time, if FRAME is nil, | |
4328 selected_frame will be used which is the frame dumped with | |
4329 Emacs. That frame is not an X frame. */ | |
4330 f = frame_or_selected_frame (frame, 2); | |
4331 | |
4332 lface1 = lface_from_face_name (NULL, face1, 1); | |
4333 lface2 = lface_from_face_name (NULL, face2, 1); | |
4334 equal_p = lface_equal_p (XVECTOR (lface1)->contents, | |
4335 XVECTOR (lface2)->contents); | |
4336 return equal_p ? Qt : Qnil; | |
4337 } | |
4338 | |
4339 | |
4340 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p, | |
4341 Sinternal_lisp_face_empty_p, 1, 2, 0, | |
4342 "True if FACE has no attribute specified.\n\ | |
4343 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4344 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4345 If FRAME is omitted or nil, use the selected frame.") | |
4346 (face, frame) | |
4347 Lisp_Object face, frame; | |
4348 { | |
4349 struct frame *f; | |
4350 Lisp_Object lface; | |
4351 int i; | |
4352 | |
4353 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4354 frame = selected_frame; |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4355 CHECK_LIVE_FRAME (frame, 0); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4356 f = XFRAME (frame); |
24995 | 4357 |
4358 if (EQ (frame, Qt)) | |
4359 lface = lface_from_face_name (NULL, face, 1); | |
4360 else | |
4361 lface = lface_from_face_name (f, face, 1); | |
4362 | |
4363 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
4364 if (!UNSPECIFIEDP (XVECTOR (lface)->contents[i])) | |
4365 break; | |
4366 | |
4367 return i == LFACE_VECTOR_SIZE ? Qt : Qnil; | |
4368 } | |
4369 | |
4370 | |
4371 DEFUN ("frame-face-alist", Fframe_face_alist, Sframe_face_alist, | |
4372 0, 1, 0, | |
4373 "Return an alist of frame-local faces defined on FRAME.\n\ | |
4374 For internal use only.") | |
4375 (frame) | |
4376 Lisp_Object frame; | |
4377 { | |
4378 struct frame *f = frame_or_selected_frame (frame, 0); | |
4379 return f->face_alist; | |
4380 } | |
4381 | |
4382 | |
4383 /* Return a hash code for Lisp string STRING with case ignored. Used | |
4384 below in computing a hash value for a Lisp face. */ | |
4385 | |
4386 static INLINE unsigned | |
4387 hash_string_case_insensitive (string) | |
4388 Lisp_Object string; | |
4389 { | |
4390 unsigned char *s; | |
4391 unsigned hash = 0; | |
4392 xassert (STRINGP (string)); | |
4393 for (s = XSTRING (string)->data; *s; ++s) | |
4394 hash = (hash << 1) ^ tolower (*s); | |
4395 return hash; | |
4396 } | |
4397 | |
4398 | |
4399 /* Return a hash code for face attribute vector V. */ | |
4400 | |
4401 static INLINE unsigned | |
4402 lface_hash (v) | |
4403 Lisp_Object *v; | |
4404 { | |
4405 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX]) | |
4406 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX]) | |
4407 ^ hash_string_case_insensitive (v[LFACE_BACKGROUND_INDEX]) | |
4408 ^ (unsigned) v[LFACE_WEIGHT_INDEX] | |
4409 ^ (unsigned) v[LFACE_SLANT_INDEX] | |
4410 ^ (unsigned) v[LFACE_SWIDTH_INDEX] | |
4411 ^ XFASTINT (v[LFACE_HEIGHT_INDEX])); | |
4412 } | |
4413 | |
4414 | |
4415 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without | |
4416 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
|
4417 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
|
4418 and LFACE2 must be fully-specified. */ |
24995 | 4419 |
4420 static INLINE int | |
4421 lface_same_font_attributes_p (lface1, lface2) | |
4422 Lisp_Object *lface1, *lface2; | |
4423 { | |
4424 xassert (lface_fully_specified_p (lface1) | |
4425 && lface_fully_specified_p (lface2)); | |
4426 return (xstricmp (XSTRING (lface1[LFACE_FAMILY_INDEX])->data, | |
4427 XSTRING (lface2[LFACE_FAMILY_INDEX])->data) == 0 | |
4428 && (XFASTINT (lface1[LFACE_HEIGHT_INDEX]) | |
4429 == XFASTINT (lface2[LFACE_HEIGHT_INDEX])) | |
4430 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX]) | |
4431 && 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
|
4432 && 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
|
4433 && (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
|
4434 || (STRINGP (lface1[LFACE_FONT_INDEX]) |
28263
73181b84ea57
(lface_same_font_attributes_p): Compare font attributes
Gerd Moellmann <gerd@gnu.org>
parents:
28237
diff
changeset
|
4435 && STRINGP (lface2[LFACE_FONT_INDEX]) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4436 && xstricmp (XSTRING (lface1[LFACE_FONT_INDEX])->data, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4437 XSTRING (lface2[LFACE_FONT_INDEX])->data)))); |
24995 | 4438 } |
4439 | |
4440 | |
4441 | |
4442 /*********************************************************************** | |
4443 Realized Faces | |
4444 ***********************************************************************/ | |
4445 | |
4446 /* 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
|
4447 vector ATTR. */ |
24995 | 4448 |
4449 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4450 make_realized_face (attr) |
24995 | 4451 Lisp_Object *attr; |
4452 { | |
4453 struct face *face = (struct face *) xmalloc (sizeof *face); | |
4454 bzero (face, sizeof *face); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4455 face->ascii_face = face; |
24995 | 4456 bcopy (attr, face->lface, sizeof face->lface); |
4457 return face; | |
4458 } | |
4459 | |
4460 | |
4461 /* Free realized face FACE, including its X resources. FACE may | |
4462 be null. */ | |
4463 | |
4464 static void | |
4465 free_realized_face (f, face) | |
4466 struct frame *f; | |
4467 struct face *face; | |
4468 { | |
4469 if (face) | |
4470 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4471 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4472 if (FRAME_WINDOW_P (f)) |
24995 | 4473 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4474 /* 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
|
4475 if (face->fontset >= 0 && face == face->ascii_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4476 free_face_fontset (f, face); |
24995 | 4477 if (face->gc) |
4478 { | |
4479 x_free_gc (f, face->gc); | |
4480 face->gc = 0; | |
4481 } | |
4482 | |
4483 free_face_colors (f, face); | |
4484 x_destroy_bitmap (f, face->stipple); | |
4485 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4486 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4487 |
4488 xfree (face); | |
4489 } | |
4490 } | |
4491 | |
4492 | |
4493 /* Prepare face FACE for subsequent display on frame F. This | |
4494 allocated GCs if they haven't been allocated yet or have been freed | |
4495 by clearing the face cache. */ | |
4496 | |
4497 void | |
4498 prepare_face_for_display (f, face) | |
4499 struct frame *f; | |
4500 struct face *face; | |
4501 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4502 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4503 xassert (FRAME_WINDOW_P (f)); |
24995 | 4504 |
4505 if (face->gc == 0) | |
4506 { | |
4507 XGCValues xgcv; | |
4508 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures; | |
4509 | |
4510 xgcv.foreground = face->foreground; | |
4511 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
|
4512 #ifdef HAVE_X_WINDOWS |
24995 | 4513 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
|
4514 #endif |
24995 | 4515 /* The font of FACE may be null if we couldn't load it. */ |
4516 if (face->font) | |
4517 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4518 #ifdef HAVE_X_WINDOWS |
24995 | 4519 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
|
4520 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4521 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4522 xgcv.font = face->font; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4523 #endif |
24995 | 4524 mask |= GCFont; |
4525 } | |
4526 | |
4527 BLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4528 #ifdef HAVE_X_WINDOWS |
24995 | 4529 if (face->stipple) |
4530 { | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
4531 xgcv.fill_style = FillOpaqueStippled; |
24995 | 4532 xgcv.stipple = x_bitmap_pixmap (f, face->stipple); |
4533 mask |= GCFillStyle | GCStipple; | |
4534 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4535 #endif |
24995 | 4536 face->gc = x_create_gc (f, mask, &xgcv); |
4537 UNBLOCK_INPUT; | |
4538 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4539 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4540 } |
4541 | |
4542 | |
4543 /*********************************************************************** | |
4544 Face Cache | |
4545 ***********************************************************************/ | |
4546 | |
4547 /* Return a new face cache for frame F. */ | |
4548 | |
4549 static struct face_cache * | |
4550 make_face_cache (f) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4551 struct frame *f; |
24995 | 4552 { |
4553 struct face_cache *c; | |
4554 int size; | |
4555 | |
4556 c = (struct face_cache *) xmalloc (sizeof *c); | |
4557 bzero (c, sizeof *c); | |
4558 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4559 c->buckets = (struct face **) xmalloc (size); | |
4560 bzero (c->buckets, size); | |
4561 c->size = 50; | |
4562 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id); | |
4563 c->f = f; | |
4564 return c; | |
4565 } | |
4566 | |
4567 | |
4568 /* Clear out all graphics contexts for all realized faces, except for | |
4569 the basic faces. This should be done from time to time just to avoid | |
4570 keeping too many graphics contexts that are no longer needed. */ | |
4571 | |
4572 static void | |
4573 clear_face_gcs (c) | |
4574 struct face_cache *c; | |
4575 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4576 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
|
4577 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4578 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4579 int i; |
4580 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i) | |
4581 { | |
4582 struct face *face = c->faces_by_id[i]; | |
4583 if (face && face->gc) | |
4584 { | |
4585 x_free_gc (c->f, face->gc); | |
4586 face->gc = 0; | |
4587 } | |
4588 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4589 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4590 } |
4591 } | |
4592 | |
4593 | |
4594 /* Free all realized faces in face cache C, including basic faces. C | |
4595 may be null. If faces are freed, make sure the frame's current | |
4596 matrix is marked invalid, so that a display caused by an expose | |
4597 event doesn't try to use faces we destroyed. */ | |
4598 | |
4599 static void | |
4600 free_realized_faces (c) | |
4601 struct face_cache *c; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4602 { |
24995 | 4603 if (c && c->used) |
4604 { | |
4605 int i, size; | |
4606 struct frame *f = c->f; | |
4607 | |
4608 for (i = 0; i < c->used; ++i) | |
4609 { | |
4610 free_realized_face (f, c->faces_by_id[i]); | |
4611 c->faces_by_id[i] = NULL; | |
4612 } | |
4613 | |
4614 c->used = 0; | |
4615 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4616 bzero (c->buckets, size); | |
4617 | |
4618 /* Must do a thorough redisplay the next time. Mark current | |
4619 matrices as invalid because they will reference faces freed | |
4620 above. This function is also called when a frame is | |
4621 destroyed. In this case, the root window of F is nil. */ | |
4622 if (WINDOWP (f->root_window)) | |
4623 { | |
4624 clear_current_matrices (f); | |
4625 ++windows_or_buffers_changed; | |
4626 } | |
4627 } | |
4628 } | |
4629 | |
4630 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4631 /* 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
|
4632 has FONTSET. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4633 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4634 void |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4635 free_realized_multibyte_face (f, fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4636 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4637 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4638 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4639 struct face_cache *cache = FRAME_FACE_CACHE (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4640 struct face *face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4641 int i; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4642 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4643 for (i = 0; i < cache->used; i++) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4644 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4645 face = cache->faces_by_id[i]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4646 if (face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4647 && face != face->ascii_face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4648 && face->fontset == fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4649 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4650 uncache_face (cache, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4651 free_realized_face (f, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4652 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4653 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4654 if (WINDOWP (f->root_window)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4655 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4656 clear_current_matrices (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4657 ++windows_or_buffers_changed; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4658 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4659 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4660 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4661 |
24995 | 4662 /* Free all realized faces on FRAME or on all frames if FRAME is nil. |
4663 This is done after attributes of a named face have been changed, | |
4664 because we can't tell which realized faces depend on that face. */ | |
4665 | |
4666 void | |
4667 free_all_realized_faces (frame) | |
4668 Lisp_Object frame; | |
4669 { | |
4670 if (NILP (frame)) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4671 { |
24995 | 4672 Lisp_Object rest; |
4673 FOR_EACH_FRAME (rest, frame) | |
4674 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
4675 } | |
4676 else | |
4677 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
4678 } | |
4679 | |
4680 | |
4681 /* Free face cache C and faces in it, including their X resources. */ | |
4682 | |
4683 static void | |
4684 free_face_cache (c) | |
4685 struct face_cache *c; | |
4686 { | |
4687 if (c) | |
4688 { | |
4689 free_realized_faces (c); | |
4690 xfree (c->buckets); | |
4691 xfree (c->faces_by_id); | |
4692 xfree (c); | |
4693 } | |
4694 } | |
4695 | |
4696 | |
4697 /* Cache realized face FACE in face cache C. HASH is the hash value | |
4698 of FACE. If FACE->fontset >= 0, add the new face to the end of the | |
4699 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
|
4700 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
|
4701 faces with the same attributes but for specific characters exist. */ |
24995 | 4702 |
4703 static void | |
4704 cache_face (c, face, hash) | |
4705 struct face_cache *c; | |
4706 struct face *face; | |
4707 unsigned hash; | |
4708 { | |
4709 int i = hash % FACE_CACHE_BUCKETS_SIZE; | |
4710 | |
4711 face->hash = hash; | |
4712 | |
4713 if (face->fontset >= 0) | |
4714 { | |
4715 struct face *last = c->buckets[i]; | |
4716 if (last) | |
4717 { | |
4718 while (last->next) | |
4719 last = last->next; | |
4720 last->next = face; | |
4721 face->prev = last; | |
4722 face->next = NULL; | |
4723 } | |
4724 else | |
4725 { | |
4726 c->buckets[i] = face; | |
4727 face->prev = face->next = NULL; | |
4728 } | |
4729 } | |
4730 else | |
4731 { | |
4732 face->prev = NULL; | |
4733 face->next = c->buckets[i]; | |
4734 if (face->next) | |
4735 face->next->prev = face; | |
4736 c->buckets[i] = face; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4737 } |
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4738 |
24995 | 4739 /* Find a free slot in C->faces_by_id and use the index of the free |
4740 slot as FACE->id. */ | |
4741 for (i = 0; i < c->used; ++i) | |
4742 if (c->faces_by_id[i] == NULL) | |
4743 break; | |
4744 face->id = i; | |
4745 | |
4746 /* Maybe enlarge C->faces_by_id. */ | |
4747 if (i == c->used && c->used == c->size) | |
4748 { | |
4749 int new_size = 2 * c->size; | |
4750 int sz = new_size * sizeof *c->faces_by_id; | |
4751 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz); | |
4752 c->size = new_size; | |
4753 } | |
4754 | |
4755 #if GLYPH_DEBUG | |
4756 /* Check that FACE got a unique id. */ | |
4757 { | |
4758 int j, n; | |
4759 struct face *face; | |
4760 | |
4761 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j) | |
4762 for (face = c->buckets[j]; face; face = face->next) | |
4763 if (face->id == i) | |
4764 ++n; | |
4765 | |
4766 xassert (n == 1); | |
4767 } | |
4768 #endif /* GLYPH_DEBUG */ | |
4769 | |
4770 c->faces_by_id[i] = face; | |
4771 if (i == c->used) | |
4772 ++c->used; | |
4773 } | |
4774 | |
4775 | |
4776 /* Remove face FACE from cache C. */ | |
4777 | |
4778 static void | |
4779 uncache_face (c, face) | |
4780 struct face_cache *c; | |
4781 struct face *face; | |
4782 { | |
4783 int i = face->hash % FACE_CACHE_BUCKETS_SIZE; | |
4784 | |
4785 if (face->prev) | |
4786 face->prev->next = face->next; | |
4787 else | |
4788 c->buckets[i] = face->next; | |
4789 | |
4790 if (face->next) | |
4791 face->next->prev = face->prev; | |
4792 | |
4793 c->faces_by_id[face->id] = NULL; | |
4794 if (face->id == c->used) | |
4795 --c->used; | |
4796 } | |
4797 | |
4798 | |
4799 /* 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
|
4800 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
|
4801 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
|
4802 a new one. In that case, if C is a multibyte character, BASE_FACE |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4803 is a face for ASCII characters that has the same attributes. */ |
24995 | 4804 |
4805 INLINE int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4806 lookup_face (f, attr, c, base_face) |
24995 | 4807 struct frame *f; |
4808 Lisp_Object *attr; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4809 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4810 struct face *base_face; |
24995 | 4811 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4812 struct face_cache *cache = FRAME_FACE_CACHE (f); |
24995 | 4813 unsigned hash; |
4814 int i; | |
4815 struct face *face; | |
4816 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4817 xassert (cache != NULL); |
24995 | 4818 check_lface_attrs (attr); |
4819 | |
4820 /* Look up ATTR in the face cache. */ | |
4821 hash = lface_hash (attr); | |
4822 i = hash % FACE_CACHE_BUCKETS_SIZE; | |
4823 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4824 for (face = cache->buckets[i]; face; face = face->next) |
24995 | 4825 if (face->hash == hash |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4826 && (!FRAME_WINDOW_P (f) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4827 || FACE_SUITABLE_FOR_CHAR_P (face, c)) |
24995 | 4828 && lface_equal_p (face->lface, attr)) |
4829 break; | |
4830 | |
4831 /* If not found, realize a new face. */ | |
4832 if (face == NULL) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4833 face = realize_face (cache, attr, c, base_face, -1); |
24995 | 4834 |
4835 #if GLYPH_DEBUG | |
4836 xassert (face == FACE_FROM_ID (f, face->id)); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4837 if (FRAME_WINDOW_P (f)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4838 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c)); |
24995 | 4839 #endif /* GLYPH_DEBUG */ |
4840 | |
4841 return face->id; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4842 } |
24995 | 4843 |
4844 | |
4845 /* 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
|
4846 frame F suitable for displaying character C. */ |
24995 | 4847 |
4848 int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4849 lookup_named_face (f, symbol, c) |
24995 | 4850 struct frame *f; |
4851 Lisp_Object symbol; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4852 int c; |
24995 | 4853 { |
4854 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
4855 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
4856 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
4857 | |
4858 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
4859 bcopy (default_face->lface, attrs, sizeof attrs); | |
4860 merge_face_vectors (symbol_attrs, attrs); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4861 return lookup_face (f, attrs, c, NULL); |
24995 | 4862 } |
4863 | |
4864 | |
4865 /* Return the ID of the realized ASCII face of Lisp face with ID | |
4866 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */ | |
4867 | |
4868 int | |
4869 ascii_face_of_lisp_face (f, lface_id) | |
4870 struct frame *f; | |
4871 int lface_id; | |
4872 { | |
4873 int face_id; | |
4874 | |
4875 if (lface_id >= 0 && lface_id < lface_id_to_name_size) | |
4876 { | |
4877 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
|
4878 face_id = lookup_named_face (f, face_name, 0); |
24995 | 4879 } |
4880 else | |
4881 face_id = -1; | |
4882 | |
4883 return face_id; | |
4884 } | |
4885 | |
4886 | |
4887 /* Return a face for charset ASCII that is like the face with id | |
4888 FACE_ID on frame F, but has a font that is STEPS steps smaller. | |
4889 STEPS < 0 means larger. Value is the id of the face. */ | |
4890 | |
4891 int | |
4892 smaller_face (f, face_id, steps) | |
4893 struct frame *f; | |
4894 int face_id, steps; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4895 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4896 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4897 struct face *face; |
4898 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
4899 int pt, last_pt, last_height; | |
4900 int delta; | |
4901 int new_face_id; | |
4902 struct face *new_face; | |
4903 | |
4904 /* If not called for an X frame, just return the original face. */ | |
4905 if (FRAME_TERMCAP_P (f)) | |
4906 return face_id; | |
4907 | |
4908 /* Try in increments of 1/2 pt. */ | |
4909 delta = steps < 0 ? 5 : -5; | |
4910 steps = abs (steps); | |
4911 | |
4912 face = FACE_FROM_ID (f, face_id); | |
4913 bcopy (face->lface, attrs, sizeof attrs); | |
4914 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
4915 new_face_id = face_id; | |
4916 last_height = FONT_HEIGHT (face->font); | |
4917 | |
4918 while (steps | |
4919 && pt + delta > 0 | |
4920 /* Give up if we cannot find a font within 10pt. */ | |
4921 && abs (last_pt - pt) < 100) | |
4922 { | |
4923 /* Look up a face for a slightly smaller/larger font. */ | |
4924 pt += delta; | |
4925 attrs[LFACE_HEIGHT_INDEX] = make_number (pt); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4926 new_face_id = lookup_face (f, attrs, 0, NULL); |
24995 | 4927 new_face = FACE_FROM_ID (f, new_face_id); |
4928 | |
4929 /* If height changes, count that as one step. */ | |
4930 if (FONT_HEIGHT (new_face->font) != last_height) | |
4931 { | |
4932 --steps; | |
4933 last_height = FONT_HEIGHT (new_face->font); | |
4934 last_pt = pt; | |
4935 } | |
4936 } | |
4937 | |
4938 return new_face_id; | |
4939 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4940 #else /* not HAVE_WINDOW_SYSTEM */ |
24995 | 4941 |
4942 return face_id; | |
4943 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4944 #endif /* not HAVE_WINDOW_SYSTEM */ |
24995 | 4945 } |
4946 | |
4947 | |
4948 /* Return a face for charset ASCII that is like the face with id | |
4949 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
|
4950 |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
4951 int |
24995 | 4952 face_with_height (f, face_id, height) |
4953 struct frame *f; | |
4954 int face_id; | |
4955 int height; | |
4956 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4957 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4958 struct face *face; |
4959 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
4960 | |
4961 if (FRAME_TERMCAP_P (f) | |
4962 || height <= 0) | |
4963 return face_id; | |
4964 | |
4965 face = FACE_FROM_ID (f, face_id); | |
4966 bcopy (face->lface, attrs, sizeof attrs); | |
4967 attrs[LFACE_HEIGHT_INDEX] = make_number (height); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4968 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
|
4969 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4970 |
4971 return face_id; | |
4972 } | |
4973 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4974 /* 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
|
4975 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
|
4976 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
|
4977 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
|
4978 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
|
4979 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
|
4980 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4981 int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4982 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
|
4983 struct frame *f; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4984 Lisp_Object symbol; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4985 int c; |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4986 int face_id; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4987 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4988 Lisp_Object attrs[LFACE_VECTOR_SIZE]; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4989 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
|
4990 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
|
4991 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4992 if (!default_face) |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4993 abort (); |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4994 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4995 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
|
4996 bcopy (default_face->lface, attrs, sizeof attrs); |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4997 merge_face_vectors (symbol_attrs, attrs); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4998 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
|
4999 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5000 |
24995 | 5001 |
5002 | |
5003 /*********************************************************************** | |
5004 Font selection | |
5005 ***********************************************************************/ | |
5006 | |
5007 DEFUN ("internal-set-font-selection-order", | |
5008 Finternal_set_font_selection_order, | |
5009 Sinternal_set_font_selection_order, 1, 1, 0, | |
5010 "Set font selection order for face font selection to ORDER.\n\ | |
5011 ORDER must be a list of length 4 containing the symbols `:width',\n\ | |
5012 `:height', `:weight', and `:slant'. Face attributes appearing\n\ | |
5013 first in ORDER are matched first, e.g. if `:height' appears before\n\ | |
5014 `:weight' in ORDER, font selection first tries to find a font with\n\ | |
5015 a suitable height, and then tries to match the font weight.\n\ | |
5016 Value is ORDER.") | |
5017 (order) | |
5018 Lisp_Object order; | |
5019 { | |
5020 Lisp_Object list; | |
5021 int i; | |
5022 int indices[4]; | |
5023 | |
5024 CHECK_LIST (order, 0); | |
5025 bzero (indices, sizeof indices); | |
5026 i = 0; | |
5027 | |
5028 for (list = order; | |
5029 CONSP (list) && i < DIM (indices); | |
5030 list = XCDR (list), ++i) | |
5031 { | |
5032 Lisp_Object attr = XCAR (list); | |
5033 int xlfd; | |
5034 | |
5035 if (EQ (attr, QCwidth)) | |
5036 xlfd = XLFD_SWIDTH; | |
5037 else if (EQ (attr, QCheight)) | |
5038 xlfd = XLFD_POINT_SIZE; | |
5039 else if (EQ (attr, QCweight)) | |
5040 xlfd = XLFD_WEIGHT; | |
5041 else if (EQ (attr, QCslant)) | |
5042 xlfd = XLFD_SLANT; | |
5043 else | |
5044 break; | |
5045 | |
5046 if (indices[i] != 0) | |
5047 break; | |
5048 indices[i] = xlfd; | |
5049 } | |
5050 | |
5051 if (!NILP (list) | |
5052 || i != DIM (indices) | |
5053 || indices[0] == 0 | |
5054 || indices[1] == 0 | |
5055 || indices[2] == 0 | |
5056 || indices[3] == 0) | |
5057 signal_error ("Invalid font sort order", order); | |
5058 | |
5059 if (bcmp (indices, font_sort_order, sizeof indices) != 0) | |
5060 { | |
5061 bcopy (indices, font_sort_order, sizeof font_sort_order); | |
5062 free_all_realized_faces (Qnil); | |
5063 } | |
5064 | |
5065 return Qnil; | |
5066 } | |
5067 | |
5068 | |
5069 DEFUN ("internal-set-alternative-font-family-alist", | |
5070 Finternal_set_alternative_font_family_alist, | |
5071 Sinternal_set_alternative_font_family_alist, 1, 1, 0, | |
5072 "Define alternative font families to try in face font selection.\n\ | |
5073 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.\n\ | |
5074 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can\n\ | |
5075 be found. Value is ALIST.") | |
5076 (alist) | |
5077 Lisp_Object alist; | |
5078 { | |
5079 CHECK_LIST (alist, 0); | |
5080 Vface_alternative_font_family_alist = alist; | |
5081 free_all_realized_faces (Qnil); | |
5082 return alist; | |
5083 } | |
5084 | |
5085 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5086 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5087 |
5088 /* Value is non-zero if FONT is the name of a scalable font. The | |
5089 X11R6 XLFD spec says that point size, pixel size, and average width | |
5090 are zero for scalable fonts. Intlfonts contain at least one | |
5091 scalable font ("*-muleindian-1") for which this isn't true, so we | |
5092 just test average width. */ | |
5093 | |
5094 static int | |
5095 font_scalable_p (font) | |
5096 struct font_name *font; | |
5097 { | |
5098 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
|
5099 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
|
5100 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5101 /* 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
|
5102 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
|
5103 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
|
5104 || *s == '*' |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5105 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5106 ; |
24995 | 5107 } |
5108 | |
5109 | |
5110 /* Value is non-zero if FONT1 is a better match for font attributes | |
5111 VALUES than FONT2. VALUES is an array of face attribute values in | |
5112 font sort order. COMPARE_PT_P zero means don't compare point | |
5113 sizes. */ | |
5114 | |
5115 static int | |
5116 better_font_p (values, font1, font2, compare_pt_p) | |
5117 int *values; | |
5118 struct font_name *font1, *font2; | |
5119 int compare_pt_p; | |
5120 { | |
5121 int i; | |
5122 | |
5123 for (i = 0; i < 4; ++i) | |
5124 { | |
5125 int xlfd_idx = font_sort_order[i]; | |
5126 | |
5127 if (compare_pt_p || xlfd_idx != XLFD_POINT_SIZE) | |
5128 { | |
5129 int delta1 = abs (values[i] - font1->numeric[xlfd_idx]); | |
5130 int delta2 = abs (values[i] - font2->numeric[xlfd_idx]); | |
5131 | |
5132 if (delta1 > delta2) | |
5133 return 0; | |
5134 else if (delta1 < delta2) | |
5135 return 1; | |
5136 else | |
5137 { | |
5138 /* The difference may be equal because, e.g., the face | |
5139 specifies `italic' but we have only `regular' and | |
5140 `oblique'. Prefer `oblique' in this case. */ | |
5141 if ((xlfd_idx == XLFD_WEIGHT || xlfd_idx == XLFD_SLANT) | |
5142 && font1->numeric[xlfd_idx] > values[i] | |
5143 && font2->numeric[xlfd_idx] < values[i]) | |
5144 return 1; | |
5145 } | |
5146 } | |
5147 } | |
5148 | |
5149 return 0; | |
5150 } | |
5151 | |
5152 | |
5153 #if SCALABLE_FONTS | |
5154 | |
5155 /* Value is non-zero if FONT is an exact match for face attributes in | |
5156 SPECIFIED. SPECIFIED is an array of face attribute values in font | |
5157 sort order. */ | |
5158 | |
5159 static int | |
5160 exact_face_match_p (specified, font) | |
5161 int *specified; | |
5162 struct font_name *font; | |
5163 { | |
5164 int i; | |
5165 | |
5166 for (i = 0; i < 4; ++i) | |
5167 if (specified[i] != font->numeric[font_sort_order[i]]) | |
5168 break; | |
5169 | |
5170 return i == 4; | |
5171 } | |
5172 | |
5173 | |
5174 /* Value is the name of a scaled font, generated from scalable font | |
5175 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to. | |
5176 Value is allocated from heap. */ | |
5177 | |
5178 static char * | |
5179 build_scalable_font_name (f, font, specified_pt) | |
5180 struct frame *f; | |
5181 struct font_name *font; | |
5182 int specified_pt; | |
5183 { | |
5184 char point_size[20], pixel_size[20]; | |
5185 int pixel_value; | |
5186 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
5187 double pt; | |
5188 | |
5189 /* If scalable font is for a specific resolution, compute | |
5190 the point size we must specify from the resolution of | |
5191 the display and the specified resolution of the font. */ | |
5192 if (font->numeric[XLFD_RESY] != 0) | |
5193 { | |
5194 pt = resy / font->numeric[XLFD_RESY] * specified_pt + 0.5; | |
5195 pixel_value = font->numeric[XLFD_RESY] / 720.0 * pt; | |
5196 } | |
5197 else | |
5198 { | |
5199 pt = specified_pt; | |
5200 pixel_value = resy / 720.0 * pt; | |
5201 } | |
5202 | |
5203 /* Set point size of the font. */ | |
5204 sprintf (point_size, "%d", (int) pt); | |
5205 font->fields[XLFD_POINT_SIZE] = point_size; | |
5206 font->numeric[XLFD_POINT_SIZE] = pt; | |
5207 | |
5208 /* Set pixel size. */ | |
5209 sprintf (pixel_size, "%d", pixel_value); | |
5210 font->fields[XLFD_PIXEL_SIZE] = pixel_size; | |
5211 font->numeric[XLFD_PIXEL_SIZE] = pixel_value; | |
5212 | |
5213 /* If font doesn't specify its resolution, use the | |
5214 resolution of the display. */ | |
5215 if (font->numeric[XLFD_RESY] == 0) | |
5216 { | |
5217 char buffer[20]; | |
5218 sprintf (buffer, "%d", (int) resy); | |
5219 font->fields[XLFD_RESY] = buffer; | |
5220 font->numeric[XLFD_RESY] = resy; | |
5221 } | |
5222 | |
5223 if (strcmp (font->fields[XLFD_RESX], "0") == 0) | |
5224 { | |
5225 char buffer[20]; | |
5226 int resx = FRAME_X_DISPLAY_INFO (f)->resx; | |
5227 sprintf (buffer, "%d", resx); | |
5228 font->fields[XLFD_RESX] = buffer; | |
5229 font->numeric[XLFD_RESX] = resx; | |
5230 } | |
5231 | |
5232 return build_font_name (font); | |
5233 } | |
5234 | |
5235 | |
5236 /* Value is non-zero if we are allowed to use scalable font FONT. We | |
5237 can't run a Lisp function here since this function may be called | |
5238 with input blocked. */ | |
5239 | |
5240 static int | |
5241 may_use_scalable_font_p (font, name) | |
5242 struct font_name *font; | |
5243 char *name; | |
5244 { | |
5245 if (EQ (Vscalable_fonts_allowed, Qt)) | |
5246 return 1; | |
5247 else if (CONSP (Vscalable_fonts_allowed)) | |
5248 { | |
5249 Lisp_Object tail, regexp; | |
5250 | |
5251 for (tail = Vscalable_fonts_allowed; CONSP (tail); tail = XCDR (tail)) | |
5252 { | |
5253 regexp = XCAR (tail); | |
5254 if (STRINGP (regexp) | |
5255 && fast_c_string_match_ignore_case (regexp, name) >= 0) | |
5256 return 1; | |
5257 } | |
5258 } | |
5259 | |
5260 return 0; | |
5261 } | |
5262 | |
5263 #endif /* SCALABLE_FONTS != 0 */ | |
5264 | |
5265 | |
5266 /* Return the name of the best matching font for face attributes | |
5267 ATTRS in the array of font_name structures FONTS which contains | |
5268 NFONTS elements. Value is a font name which is allocated from | |
5269 the heap. FONTS is freed by this function. */ | |
5270 | |
5271 static char * | |
5272 best_matching_font (f, attrs, fonts, nfonts) | |
5273 struct frame *f; | |
5274 Lisp_Object *attrs; | |
5275 struct font_name *fonts; | |
5276 int nfonts; | |
5277 { | |
5278 char *font_name; | |
5279 struct font_name *best; | |
5280 int i, pt; | |
5281 int specified[4]; | |
5282 int exact_p; | |
5283 | |
5284 if (nfonts == 0) | |
5285 return NULL; | |
5286 | |
5287 /* Make specified font attributes available in `specified', | |
5288 indexed by sort order. */ | |
5289 for (i = 0; i < DIM (font_sort_order); ++i) | |
5290 { | |
5291 int xlfd_idx = font_sort_order[i]; | |
5292 | |
5293 if (xlfd_idx == XLFD_SWIDTH) | |
5294 specified[i] = face_numeric_swidth (attrs[LFACE_SWIDTH_INDEX]); | |
5295 else if (xlfd_idx == XLFD_POINT_SIZE) | |
5296 specified[i] = pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5297 else if (xlfd_idx == XLFD_WEIGHT) | |
5298 specified[i] = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
5299 else if (xlfd_idx == XLFD_SLANT) | |
5300 specified[i] = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
5301 else | |
5302 abort (); | |
5303 } | |
5304 | |
5305 #if SCALABLE_FONTS | |
5306 | |
5307 /* Set to 1 */ | |
5308 exact_p = 0; | |
5309 | |
5310 /* Start with the first non-scalable font in the list. */ | |
5311 for (i = 0; i < nfonts; ++i) | |
5312 if (!font_scalable_p (fonts + i)) | |
5313 break; | |
5314 | |
5315 /* Find the best match among the non-scalable fonts. */ | |
5316 if (i < nfonts) | |
5317 { | |
5318 best = fonts + i; | |
5319 | |
5320 for (i = 1; i < nfonts; ++i) | |
5321 if (!font_scalable_p (fonts + i) | |
5322 && better_font_p (specified, fonts + i, best, 1)) | |
5323 { | |
5324 best = fonts + i; | |
5325 | |
5326 exact_p = exact_face_match_p (specified, best); | |
5327 if (exact_p) | |
5328 break; | |
5329 } | |
5330 | |
5331 } | |
5332 else | |
5333 best = NULL; | |
5334 | |
5335 /* Unless we found an exact match among non-scalable fonts, see if | |
5336 we can find a better match among scalable fonts. */ | |
5337 if (!exact_p) | |
5338 { | |
5339 /* A scalable font is better if | |
5340 | |
5341 1. its weight, slant, swidth attributes are better, or. | |
5342 | |
5343 2. the best non-scalable font doesn't have the required | |
5344 point size, and the scalable fonts weight, slant, swidth | |
5345 isn't worse. */ | |
5346 | |
5347 int non_scalable_has_exact_height_p; | |
5348 | |
5349 if (best && best->numeric[XLFD_POINT_SIZE] == pt) | |
5350 non_scalable_has_exact_height_p = 1; | |
5351 else | |
5352 non_scalable_has_exact_height_p = 0; | |
5353 | |
5354 for (i = 0; i < nfonts; ++i) | |
5355 if (font_scalable_p (fonts + i)) | |
5356 { | |
5357 if (best == NULL | |
5358 || better_font_p (specified, fonts + i, best, 0) | |
5359 || (!non_scalable_has_exact_height_p | |
5360 && !better_font_p (specified, best, fonts + i, 0))) | |
5361 best = fonts + i; | |
5362 } | |
5363 } | |
5364 | |
5365 if (font_scalable_p (best)) | |
5366 font_name = build_scalable_font_name (f, best, pt); | |
5367 else | |
5368 font_name = build_font_name (best); | |
5369 | |
5370 #else /* !SCALABLE_FONTS */ | |
5371 | |
5372 /* Find the best non-scalable font. */ | |
5373 best = fonts; | |
5374 | |
5375 for (i = 1; i < nfonts; ++i) | |
5376 { | |
5377 xassert (!font_scalable_p (fonts + i)); | |
5378 if (better_font_p (specified, fonts + i, best, 1)) | |
5379 best = fonts + i; | |
5380 } | |
5381 | |
5382 font_name = build_font_name (best); | |
5383 | |
5384 #endif /* !SCALABLE_FONTS */ | |
5385 | |
5386 /* Free font_name structures. */ | |
5387 free_font_names (fonts, nfonts); | |
5388 | |
5389 return font_name; | |
5390 } | |
5391 | |
5392 | |
5393 /* Try to get a list of fonts on frame F with font family FAMILY and | |
5394 registry/encoding REGISTRY. Return in *FONTS a pointer to a vector | |
5395 of font_name structures for the fonts matched. Value is the number | |
5396 of fonts found. */ | |
5397 | |
5398 static int | |
5399 try_font_list (f, attrs, pattern, family, registry, fonts) | |
5400 struct frame *f; | |
5401 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5402 Lisp_Object pattern, family, registry; |
24995 | 5403 struct font_name **fonts; |
5404 { | |
5405 int nfonts; | |
5406 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5407 if (NILP (family) && STRINGP (attrs[LFACE_FAMILY_INDEX])) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5408 family = attrs[LFACE_FAMILY_INDEX]; |
24995 | 5409 |
5410 nfonts = font_list (f, pattern, family, registry, fonts); | |
5411 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5412 if (nfonts == 0 && !NILP (family)) |
24995 | 5413 { |
5414 Lisp_Object alter; | |
5415 | |
5416 /* Try alternative font families from | |
5417 Vface_alternative_font_family_alist. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5418 alter = Fassoc (family, Vface_alternative_font_family_alist); |
24995 | 5419 if (CONSP (alter)) |
5420 for (alter = XCDR (alter); | |
5421 CONSP (alter) && nfonts == 0; | |
5422 alter = XCDR (alter)) | |
5423 { | |
5424 if (STRINGP (XCAR (alter))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5425 nfonts = font_list (f, Qnil, XCAR (alter), registry, fonts); |
24995 | 5426 } |
5427 | |
5428 /* Try font family of the default face or "fixed". */ | |
5429 if (nfonts == 0) | |
5430 { | |
5431 struct face *dflt = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5432 if (dflt) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5433 family = dflt->lface[LFACE_FAMILY_INDEX]; |
24995 | 5434 else |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5435 family = build_string ("fixed"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5436 nfonts = font_list (f, Qnil, family, registry, fonts); |
24995 | 5437 } |
5438 | |
5439 /* Try any family with the given registry. */ | |
5440 if (nfonts == 0) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5441 nfonts = font_list (f, Qnil, Qnil, registry, fonts); |
24995 | 5442 } |
5443 | |
5444 return nfonts; | |
5445 } | |
5446 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5447 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5448 /* 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
|
5449 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
|
5450 attribute of ATTRS doesn't name a fontset. */ |
24995 | 5451 |
5452 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5453 face_fontset (attrs) |
24995 | 5454 Lisp_Object *attrs; |
5455 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5456 Lisp_Object name; |
24995 | 5457 int fontset; |
5458 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5459 name = attrs[LFACE_FONT_INDEX]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5460 if (!STRINGP (name)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5461 return -1; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5462 return fs_query_fontset (name, 0); |
24995 | 5463 } |
5464 | |
5465 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5466 /* 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
|
5467 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
|
5468 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
|
5469 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
|
5470 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
|
5471 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
|
5472 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
|
5473 character. */ |
24995 | 5474 |
5475 static char * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5476 choose_face_font (f, attrs, fontset, c) |
24995 | 5477 struct frame *f; |
5478 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5479 int fontset, c; |
24995 | 5480 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5481 Lisp_Object pattern; |
24995 | 5482 char *font_name = NULL; |
5483 struct font_name *fonts; | |
5484 int nfonts; | |
5485 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5486 /* 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
|
5487 a font for C. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5488 pattern = fontset_font_pattern (f, fontset, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5489 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5490 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5491 xassert (!SINGLE_BYTE_CHAR_P (c)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5492 return NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5493 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5494 /* 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
|
5495 if (STRINGP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5496 return xstrdup (XSTRING (pattern)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5497 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5498 /* 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
|
5499 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
|
5500 character. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5501 if (STRINGP (attrs[LFACE_FAMILY_INDEX]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5502 && SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5503 XCAR (pattern) = Qnil; |
24995 | 5504 |
5505 /* Get a list of fonts matching that pattern and choose the | |
5506 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
|
5507 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
|
5508 &fonts); |
24995 | 5509 font_name = best_matching_font (f, attrs, fonts, nfonts); |
5510 return font_name; | |
5511 } | |
5512 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5513 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5514 |
5515 | |
5516 | |
5517 /*********************************************************************** | |
5518 Face Realization | |
5519 ***********************************************************************/ | |
5520 | |
5521 /* Realize basic faces on frame F. Value is zero if frame parameters | |
5522 of F don't contain enough information needed to realize the default | |
5523 face. */ | |
5524 | |
5525 static int | |
5526 realize_basic_faces (f) | |
2342 | 5527 struct frame *f; |
24995 | 5528 { |
5529 int success_p = 0; | |
5530 | |
5531 if (realize_default_face (f)) | |
5532 { | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
5533 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
|
5534 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
|
5535 realize_named_face (f, Qfringe, BITMAP_AREA_FACE_ID); |
25546 | 5536 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
|
5537 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
|
5538 realize_named_face (f, Qborder, BORDER_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5539 realize_named_face (f, Qcursor, CURSOR_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5540 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
|
5541 realize_named_face (f, Qmenu, MENU_FACE_ID); |
24995 | 5542 success_p = 1; |
5543 } | |
5544 | |
5545 return success_p; | |
5546 } | |
5547 | |
5548 | |
5549 /* Realize the default face on frame F. If the face is not fully | |
5550 specified, make it fully-specified. Attributes of the default face | |
5551 that are not explicitly specified are taken from frame parameters. */ | |
5552 | |
5553 static int | |
5554 realize_default_face (f) | |
5555 struct frame *f; | |
5556 { | |
5557 struct face_cache *c = FRAME_FACE_CACHE (f); | |
5558 Lisp_Object lface; | |
5559 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5560 Lisp_Object frame_font; | |
5561 struct face *face; | |
5562 int fontset; | |
5563 | |
5564 /* If the `default' face is not yet known, create it. */ | |
5565 lface = lface_from_face_name (f, Qdefault, 0); | |
5566 if (NILP (lface)) | |
5567 { | |
5568 Lisp_Object frame; | |
5569 XSETFRAME (frame, f); | |
5570 lface = Finternal_make_lisp_face (Qdefault, frame); | |
5571 } | |
5572 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5573 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5574 if (FRAME_WINDOW_P (f)) |
24995 | 5575 { |
5576 /* Set frame_font to the value of the `font' frame parameter. */ | |
5577 frame_font = Fassq (Qfont, f->param_alist); | |
5578 xassert (CONSP (frame_font) && STRINGP (XCDR (frame_font))); | |
5579 frame_font = XCDR (frame_font); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5580 set_lface_from_font_name (f, lface, frame_font, 0, 1); |
24995 | 5581 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5582 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5583 |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5584 if (!FRAME_WINDOW_P (f)) |
24995 | 5585 { |
5586 LFACE_FAMILY (lface) = build_string ("default"); | |
5587 LFACE_SWIDTH (lface) = Qnormal; | |
5588 LFACE_HEIGHT (lface) = make_number (1); | |
5589 LFACE_WEIGHT (lface) = Qnormal; | |
5590 LFACE_SLANT (lface) = Qnormal; | |
5591 } | |
5592 | |
5593 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface))) | |
5594 LFACE_UNDERLINE (lface) = Qnil; | |
5595 | |
5596 if (UNSPECIFIEDP (LFACE_OVERLINE (lface))) | |
5597 LFACE_OVERLINE (lface) = Qnil; | |
5598 | |
5599 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface))) | |
5600 LFACE_STRIKE_THROUGH (lface) = Qnil; | |
5601 | |
5602 if (UNSPECIFIEDP (LFACE_BOX (lface))) | |
5603 LFACE_BOX (lface) = Qnil; | |
5604 | |
5605 if (UNSPECIFIEDP (LFACE_INVERSE (lface))) | |
5606 LFACE_INVERSE (lface) = Qnil; | |
5607 | |
5608 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface))) | |
5609 { | |
5610 /* This function is called so early that colors are not yet | |
5611 set in the frame parameter list. */ | |
5612 Lisp_Object color = Fassq (Qforeground_color, f->param_alist); | |
5613 | |
5614 if (CONSP (color) && STRINGP (XCDR (color))) | |
5615 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
|
5616 else if (FRAME_WINDOW_P (f)) |
24995 | 5617 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5618 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
|
5619 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
|
5620 else |
24995 | 5621 abort (); |
5622 } | |
5623 | |
5624 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface))) | |
5625 { | |
5626 /* This function is called so early that colors are not yet | |
5627 set in the frame parameter list. */ | |
5628 Lisp_Object color = Fassq (Qbackground_color, f->param_alist); | |
5629 if (CONSP (color) && STRINGP (XCDR (color))) | |
5630 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
|
5631 else if (FRAME_WINDOW_P (f)) |
24995 | 5632 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5633 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
|
5634 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
|
5635 else |
24995 | 5636 abort (); |
5637 } | |
5638 | |
5639 if (UNSPECIFIEDP (LFACE_STIPPLE (lface))) | |
5640 LFACE_STIPPLE (lface) = Qnil; | |
5641 | |
5642 /* Realize the face; it must be fully-specified now. */ | |
5643 xassert (lface_fully_specified_p (XVECTOR (lface)->contents)); | |
5644 check_lface (lface); | |
5645 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5646 face = realize_face (c, attrs, 0, NULL, DEFAULT_FACE_ID); |
24995 | 5647 return 1; |
5648 } | |
5649 | |
5650 | |
5651 /* Realize basic faces other than the default face in face cache C. | |
5652 SYMBOL is the face name, ID is the face id the realized face must | |
5653 have. The default face must have been realized already. */ | |
5654 | |
5655 static void | |
5656 realize_named_face (f, symbol, id) | |
5657 struct frame *f; | |
5658 Lisp_Object symbol; | |
5659 int id; | |
5660 { | |
5661 struct face_cache *c = FRAME_FACE_CACHE (f); | |
5662 Lisp_Object lface = lface_from_face_name (f, symbol, 0); | |
5663 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5664 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
5665 struct face *new_face; | |
5666 | |
5667 /* The default face must exist and be fully specified. */ | |
5668 get_lface_attributes (f, Qdefault, attrs, 1); | |
5669 check_lface_attrs (attrs); | |
5670 xassert (lface_fully_specified_p (attrs)); | |
5671 | |
5672 /* If SYMBOL isn't know as a face, create it. */ | |
5673 if (NILP (lface)) | |
5674 { | |
5675 Lisp_Object frame; | |
5676 XSETFRAME (frame, f); | |
5677 lface = Finternal_make_lisp_face (symbol, frame); | |
5678 } | |
5679 | |
5680 /* Merge SYMBOL's face with the default face. */ | |
5681 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
5682 merge_face_vectors (symbol_attrs, attrs); | |
5683 | |
5684 /* Realize the face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5685 new_face = realize_face (c, attrs, 0, NULL, id); |
24995 | 5686 } |
5687 | |
5688 | |
5689 /* 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
|
5690 cache CACHE for character C. If C is a multibyte character, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5691 BASE_FACE is a face for ASCII characters that has the same |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5692 attributes. Otherwise, BASE_FACE is ignored. If FORMER_FACE_ID is |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5693 non-negative, it is an ID of face to remove before caching the new |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5694 face. Value is a pointer to the newly created realized face. */ |
24995 | 5695 |
5696 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5697 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
|
5698 struct face_cache *cache; |
24995 | 5699 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5700 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5701 struct face *base_face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5702 int former_face_id; |
24995 | 5703 { |
5704 struct face *face; | |
5705 | |
5706 /* LFACE must be fully specified. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5707 xassert (cache != NULL); |
24995 | 5708 check_lface_attrs (attrs); |
5709 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5710 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
|
5711 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5712 /* Remove the former face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5713 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
|
5714 uncache_face (cache, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5715 free_realized_face (cache->f, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5716 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5717 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5718 if (FRAME_WINDOW_P (cache->f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5719 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
|
5720 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
|
5721 face = realize_tty_face (cache, attrs, c); |
24995 | 5722 else |
5723 abort (); | |
5724 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5725 /* Insert the new face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5726 cache_face (cache, face, lface_hash (attrs)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5727 #ifdef HAVE_WINDOW_SYSTEM |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5728 if (FRAME_X_P (cache->f) && face->font == NULL) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5729 load_face_font (cache->f, face, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5730 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5731 return face; |
5732 } | |
5733 | |
5734 | |
5735 /* 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
|
5736 cache CACHE for character C. Do it for X frame CACHE->f. If C is |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5737 a multibyte character, BASE_FACE is a face for ASCII characters |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5738 that has the same attributes. Otherwise, BASE_FACE is ignored. If |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5739 the new face doesn't share font with the default face, a fontname |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5740 is allocated from the heap and set in `font_name' of the new face, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5741 but it is not yet loaded here. Value is a pointer to the newly |
24995 | 5742 created realized face. */ |
5743 | |
5744 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5745 realize_x_face (cache, attrs, c, base_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5746 struct face_cache *cache; |
24995 | 5747 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5748 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5749 struct face *base_face; |
24995 | 5750 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5751 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5752 struct face *face, *default_face; |
26875
d6aa11f2a4af
(choose_face_fontset_font): Delete codes for a
Kenichi Handa <handa@m17n.org>
parents:
26759
diff
changeset
|
5753 struct frame *f; |
24995 | 5754 Lisp_Object stipple, overline, strike_through, box; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5755 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5756 xassert (FRAME_WINDOW_P (cache->f)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5757 xassert (SINGLE_BYTE_CHAR_P (c) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5758 || (base_face && base_face->ascii_face == base_face)); |
24995 | 5759 |
5760 /* Allocate a new realized face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5761 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5762 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5763 f = cache->f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5764 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5765 /* 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
|
5766 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
|
5767 different font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5768 if (!SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5769 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5770 bcopy (base_face, face, sizeof *face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5771 face->gc = 0; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5772 face->font = NULL; /* to force realize_face to load font */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5773 return face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5774 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5775 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5776 /* 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
|
5777 |
24995 | 5778 /* Determine the font to use. Most of the time, the font will be |
5779 the same as the font of the default face, so try that first. */ | |
5780 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5781 if (default_face | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5782 && FACE_SUITABLE_FOR_CHAR_P (default_face, c) |
24995 | 5783 && lface_same_font_attributes_p (default_face->lface, attrs)) |
5784 { | |
5785 face->font = default_face->font; | |
5786 face->fontset = default_face->fontset; | |
5787 face->font_info_id = default_face->font_info_id; | |
5788 face->font_name = default_face->font_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5789 face->ascii_face = face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5790 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5791 /* 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
|
5792 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
|
5793 face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5794 face->fontset |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5795 = make_fontset_for_ascii_face (f, default_face->fontset); |
24995 | 5796 } |
5797 else | |
5798 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5799 /* If the face attribute ATTRS specifies a fontset, use it as |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5800 the base of a new realized fontset. Otherwise, use the |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5801 default fontset as the base. The base determines registry |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5802 and encoding of a font. It may also determine foundry and |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5803 family. The other fields of font name pattern are |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5804 constructed from ATTRS. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5805 face->fontset |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5806 = make_fontset_for_ascii_face (f, face_fontset (attrs)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5807 face->font = NULL; /* to force realize_face to load font */ |
24995 | 5808 } |
5809 | |
5810 /* Load colors, and set remaining attributes. */ | |
5811 | |
5812 load_face_colors (f, face, attrs); | |
5813 | |
5814 /* Set up box. */ | |
5815 box = attrs[LFACE_BOX_INDEX]; | |
5816 if (STRINGP (box)) | |
5817 { | |
5818 /* A simple box of line width 1 drawn in color given by | |
5819 the string. */ | |
5820 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX], | |
5821 LFACE_BOX_INDEX); | |
5822 face->box = FACE_SIMPLE_BOX; | |
5823 face->box_line_width = 1; | |
5824 } | |
5825 else if (INTEGERP (box)) | |
5826 { | |
5827 /* Simple box of specified line width in foreground color of the | |
5828 face. */ | |
5829 xassert (XINT (box) > 0); | |
5830 face->box = FACE_SIMPLE_BOX; | |
5831 face->box_line_width = XFASTINT (box); | |
5832 face->box_color = face->foreground; | |
5833 face->box_color_defaulted_p = 1; | |
5834 } | |
5835 else if (CONSP (box)) | |
5836 { | |
5837 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW | |
5838 being one of `raised' or `sunken'. */ | |
5839 face->box = FACE_SIMPLE_BOX; | |
5840 face->box_color = face->foreground; | |
5841 face->box_color_defaulted_p = 1; | |
5842 face->box_line_width = 1; | |
5843 | |
5844 while (CONSP (box)) | |
5845 { | |
5846 Lisp_Object keyword, value; | |
5847 | |
5848 keyword = XCAR (box); | |
5849 box = XCDR (box); | |
5850 | |
5851 if (!CONSP (box)) | |
5852 break; | |
5853 value = XCAR (box); | |
5854 box = XCDR (box); | |
5855 | |
5856 if (EQ (keyword, QCline_width)) | |
5857 { | |
5858 if (INTEGERP (value) && XINT (value) > 0) | |
5859 face->box_line_width = XFASTINT (value); | |
5860 } | |
5861 else if (EQ (keyword, QCcolor)) | |
5862 { | |
5863 if (STRINGP (value)) | |
5864 { | |
5865 face->box_color = load_color (f, face, value, | |
5866 LFACE_BOX_INDEX); | |
5867 face->use_box_color_for_shadows_p = 1; | |
5868 } | |
5869 } | |
5870 else if (EQ (keyword, QCstyle)) | |
5871 { | |
5872 if (EQ (value, Qreleased_button)) | |
5873 face->box = FACE_RAISED_BOX; | |
5874 else if (EQ (value, Qpressed_button)) | |
5875 face->box = FACE_SUNKEN_BOX; | |
5876 } | |
5877 } | |
5878 } | |
5879 | |
5880 /* Text underline, overline, strike-through. */ | |
5881 | |
5882 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt)) | |
5883 { | |
5884 /* Use default color (same as foreground color). */ | |
5885 face->underline_p = 1; | |
5886 face->underline_defaulted_p = 1; | |
5887 face->underline_color = 0; | |
5888 } | |
5889 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX])) | |
5890 { | |
5891 /* Use specified color. */ | |
5892 face->underline_p = 1; | |
5893 face->underline_defaulted_p = 0; | |
5894 face->underline_color | |
5895 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX], | |
5896 LFACE_UNDERLINE_INDEX); | |
5897 } | |
5898 else if (NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
5899 { | |
5900 face->underline_p = 0; | |
5901 face->underline_defaulted_p = 0; | |
5902 face->underline_color = 0; | |
5903 } | |
5904 | |
5905 overline = attrs[LFACE_OVERLINE_INDEX]; | |
5906 if (STRINGP (overline)) | |
5907 { | |
5908 face->overline_color | |
5909 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX], | |
5910 LFACE_OVERLINE_INDEX); | |
5911 face->overline_p = 1; | |
5912 } | |
5913 else if (EQ (overline, Qt)) | |
5914 { | |
5915 face->overline_color = face->foreground; | |
5916 face->overline_color_defaulted_p = 1; | |
5917 face->overline_p = 1; | |
5918 } | |
5919 | |
5920 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX]; | |
5921 if (STRINGP (strike_through)) | |
5922 { | |
5923 face->strike_through_color | |
5924 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX], | |
5925 LFACE_STRIKE_THROUGH_INDEX); | |
5926 face->strike_through_p = 1; | |
5927 } | |
5928 else if (EQ (strike_through, Qt)) | |
5929 { | |
5930 face->strike_through_color = face->foreground; | |
5931 face->strike_through_color_defaulted_p = 1; | |
5932 face->strike_through_p = 1; | |
5933 } | |
5934 | |
5935 stipple = attrs[LFACE_STIPPLE_INDEX]; | |
5936 if (!NILP (stipple)) | |
5937 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h); | |
5938 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5939 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c)); |
24995 | 5940 return face; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5941 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5942 } |
5943 | |
5944 | |
5945 /* 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
|
5946 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
|
5947 pointer to the newly created realized face. */ |
24995 | 5948 |
5949 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5950 realize_tty_face (cache, attrs, c) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5951 struct face_cache *cache; |
24995 | 5952 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5953 int c; |
24995 | 5954 { |
5955 struct face *face; | |
5956 int weight, slant; | |
5957 Lisp_Object color; | |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
5958 Lisp_Object tty_defined_color_alist = |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
5959 Fsymbol_value (intern ("tty-defined-color-alist")); |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
5960 Lisp_Object tty_color_alist = intern ("tty-color-alist"); |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
5961 Lisp_Object frame; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
5962 int face_colors_defaulted = 0; |
24995 | 5963 |
5964 /* Frame must be a termcap frame. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5965 xassert (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f)); |
24995 | 5966 |
5967 /* Allocate a new realized face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5968 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5969 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty"; |
24995 | 5970 |
5971 /* Map face attributes to TTY appearances. We map slant to | |
5972 dimmed text because we want italic text to appear differently | |
5973 and because dimmed text is probably used infrequently. */ | |
5974 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
5975 slant = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
5976 | |
5977 if (weight > XLFD_WEIGHT_MEDIUM) | |
5978 face->tty_bold_p = 1; | |
5979 if (weight < XLFD_WEIGHT_MEDIUM || slant != XLFD_SLANT_ROMAN) | |
5980 face->tty_dim_p = 1; | |
5981 if (!NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
5982 face->tty_underline_p = 1; | |
5983 if (!NILP (attrs[LFACE_INVERSE_INDEX])) | |
5984 face->tty_reverse_p = 1; | |
5985 | |
5986 /* Map color names to color indices. */ | |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5987 face->foreground = FACE_TTY_DEFAULT_FG_COLOR; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5988 face->background = FACE_TTY_DEFAULT_BG_COLOR; |
24995 | 5989 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5990 XSETFRAME (frame, cache->f); |
24995 | 5991 color = attrs[LFACE_FOREGROUND_INDEX]; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
5992 if (STRINGP (color) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
5993 && XSTRING (color)->size |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
5994 && !NILP (tty_defined_color_alist) |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
5995 && (color = Fassoc (color, call1 (tty_color_alist, frame)), |
24995 | 5996 CONSP (color))) |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
5997 /* Associations in tty-defined-color-alist are of the form |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
5998 (NAME INDEX R G B). We need the INDEX part. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
5999 face->foreground = XINT (XCAR (XCDR (color))); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6000 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6001 if (face->foreground == FACE_TTY_DEFAULT_FG_COLOR |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6002 && STRINGP (attrs[LFACE_FOREGROUND_INDEX])) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6003 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6004 face->foreground = load_color (cache->f, face, |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6005 attrs[LFACE_FOREGROUND_INDEX], |
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6006 LFACE_FOREGROUND_INDEX); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6007 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6008 #if defined (MSDOS) || defined (WINDOWSNT) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6009 /* If the foreground of the default face is the default color, |
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6010 use the foreground color defined by the frame. */ |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6011 #ifdef MSDOS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6012 if (FRAME_MSDOS_P (cache->f)) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6013 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6014 #endif /* MSDOS */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6015 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6016 if (face->foreground == FACE_TTY_DEFAULT_FG_COLOR |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6017 || face->foreground == FACE_TTY_DEFAULT_COLOR) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6018 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6019 face->foreground = FRAME_FOREGROUND_PIXEL (cache->f); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6020 attrs[LFACE_FOREGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6021 tty_color_name (cache->f, face->foreground); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6022 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6023 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6024 else if (face->foreground == FACE_TTY_DEFAULT_BG_COLOR) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6025 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6026 face->foreground = FRAME_BACKGROUND_PIXEL (cache->f); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6027 attrs[LFACE_FOREGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6028 tty_color_name (cache->f, face->foreground); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6029 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6030 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6031 #ifdef MSDOS |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6032 } |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6033 #endif |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6034 #endif /* MSDOS or WINDOWSNT */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6035 } |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6036 |
24995 | 6037 color = attrs[LFACE_BACKGROUND_INDEX]; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6038 if (STRINGP (color) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6039 && XSTRING (color)->size |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6040 && !NILP (tty_defined_color_alist) |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6041 && (color = Fassoc (color, call1 (tty_color_alist, frame)), |
24995 | 6042 CONSP (color))) |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6043 /* Associations in tty-defined-color-alist are of the form |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6044 (NAME INDEX R G B). We need the INDEX part. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6045 face->background = XINT (XCAR (XCDR (color))); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6046 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6047 if (face->background == FACE_TTY_DEFAULT_BG_COLOR |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6048 && STRINGP (attrs[LFACE_BACKGROUND_INDEX])) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6049 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6050 face->background = load_color (cache->f, face, |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6051 attrs[LFACE_BACKGROUND_INDEX], |
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6052 LFACE_BACKGROUND_INDEX); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6053 #if defined (MSDOS) || defined (WINDOWSNT) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6054 /* If the background of the default face is the default color, |
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6055 use the background color defined by the frame. */ |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6056 #ifdef MSDOS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6057 if (FRAME_MSDOS_P (cache->f)) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6058 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6059 #endif /* MSDOS */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6060 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6061 if (face->background == FACE_TTY_DEFAULT_BG_COLOR |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6062 || face->background == FACE_TTY_DEFAULT_COLOR) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6063 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6064 face->background = FRAME_BACKGROUND_PIXEL (cache->f); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6065 attrs[LFACE_BACKGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6066 tty_color_name (cache->f, face->background); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6067 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6068 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6069 else if (face->background == FACE_TTY_DEFAULT_FG_COLOR) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6070 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6071 face->background = FRAME_FOREGROUND_PIXEL (cache->f); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6072 attrs[LFACE_BACKGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6073 tty_color_name (cache->f, face->background); |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6074 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6075 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6076 #ifdef MSDOS |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6077 } |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6078 #endif |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6079 #endif /* MSDOS or WINDOWSNT */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6080 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6081 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6082 /* 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
|
6083 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
|
6084 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
|
6085 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
|
6086 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6087 unsigned long tem = face->foreground; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6088 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6089 face->foreground = face->background; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6090 face->background = tem; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6091 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6092 |
24995 | 6093 return face; |
6094 } | |
6095 | |
6096 | |
6097 | |
6098 /*********************************************************************** | |
6099 Computing Faces | |
6100 ***********************************************************************/ | |
6101 | |
6102 /* Return the ID of the face to use to display character CH with face | |
6103 property PROP on frame F in current_buffer. */ | |
6104 | |
6105 int | |
6106 compute_char_face (f, ch, prop) | |
6107 struct frame *f; | |
6108 int ch; | |
6109 Lisp_Object prop; | |
6110 { | |
6111 int face_id; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6112 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6113 if (NILP (current_buffer->enable_multibyte_characters)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6114 ch = -1; |
24995 | 6115 |
6116 if (NILP (prop)) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6117 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6118 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
|
6119 face_id = FACE_FOR_CHAR (f, face, ch); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6120 } |
24995 | 6121 else |
6122 { | |
6123 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6124 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6125 bcopy (default_face->lface, attrs, sizeof attrs); | |
6126 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
|
6127 face_id = lookup_face (f, attrs, ch, NULL); |
24995 | 6128 } |
6129 | |
6130 return face_id; | |
6131 } | |
6132 | |
6133 | |
6134 /* Return the face ID associated with buffer position POS for | |
6135 displaying ASCII characters. Return in *ENDPTR the position at | |
6136 which a different face is needed, as far as text properties and | |
6137 overlays are concerned. W is a window displaying current_buffer. | |
6138 | |
6139 REGION_BEG, REGION_END delimit the region, so it can be | |
6140 highlighted. | |
6141 | |
6142 LIMIT is a position not to scan beyond. That is to limit the time | |
6143 this function can take. | |
6144 | |
6145 If MOUSE is non-zero, use the character's mouse-face, not its face. | |
6146 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6147 The face returned is suitable for displaying ASCII characters. */ |
24995 | 6148 |
6149 int | |
6150 face_at_buffer_position (w, pos, region_beg, region_end, | |
6151 endptr, limit, mouse) | |
2391 | 6152 struct window *w; |
2342 | 6153 int pos; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6154 int region_beg, region_end; |
2342 | 6155 int *endptr; |
5084
863e092a5891
(compute_char_face): Accept new arg LIMIT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6156 int limit; |
6615
96ddf85642d1
(compute_char_face): New arg MOUSE.
Richard M. Stallman <rms@gnu.org>
parents:
5858
diff
changeset
|
6157 int mouse; |
2342 | 6158 { |
24995 | 6159 struct frame *f = XFRAME (w->frame); |
6160 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
|
6161 Lisp_Object prop, position; |
24995 | 6162 int i, noverlays; |
2342 | 6163 Lisp_Object *overlay_vec; |
2391 | 6164 Lisp_Object frame; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6165 int endpos; |
24995 | 6166 Lisp_Object propname = mouse ? Qmouse_face : Qface; |
6167 Lisp_Object limit1, end; | |
6168 struct face *default_face; | |
6169 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
|
6170 |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6171 /* 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
|
6172 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
|
6173 /* xassert (XBUFFER (w->buffer) == current_buffer); */ |
2391 | 6174 |
9284
a969e0eefaf5
(compute_char_face): Use new accessor macros instead of calling XSET directly.
Karl Heuer <kwzh@gnu.org>
parents:
9186
diff
changeset
|
6175 XSETFRAME (frame, f); |
24995 | 6176 XSETFASTINT (position, pos); |
2342 | 6177 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6178 endpos = ZV; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6179 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
|
6180 endpos = region_beg; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6181 |
24995 | 6182 /* Get the `face' or `mouse_face' text property at POS, and |
6183 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
|
6184 prop = Fget_text_property (position, propname, w->buffer); |
24995 | 6185 XSETFASTINT (limit1, (limit < endpos ? limit : endpos)); |
6186 end = Fnext_single_property_change (position, propname, w->buffer, limit1); | |
6187 if (INTEGERP (end)) | |
6188 endpos = XINT (end); | |
6189 | |
6190 /* 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
|
6191 { |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6192 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
|
6193 int len; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6194 |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6195 /* 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
|
6196 len = 40; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6197 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
|
6198 noverlays = overlays_at (pos, 0, &overlay_vec, &len, |
24995 | 6199 &next_overlay, NULL); |
6200 | |
6201 /* If there are more than 40, make enough space for all, and try | |
6202 again. */ | |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6203 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
|
6204 { |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6205 len = noverlays; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6206 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
|
6207 noverlays = overlays_at (pos, 0, &overlay_vec, &len, |
24995 | 6208 &next_overlay, NULL); |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6209 } |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6210 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6211 if (next_overlay < endpos) |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6212 endpos = next_overlay; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6213 } |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6214 |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6215 *endptr = endpos; |
2342 | 6216 |
24995 | 6217 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); |
6218 | |
6219 /* Optimize common cases where we can use the default face. */ | |
6220 if (noverlays == 0 | |
6221 && NILP (prop) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6222 && !(pos >= region_beg && pos < region_end)) |
24995 | 6223 return DEFAULT_FACE_ID; |
6224 | |
6225 /* Begin with attributes from the default face. */ | |
6226 bcopy (default_face->lface, attrs, sizeof attrs); | |
6227 | |
6228 /* Merge in attributes specified via text properties. */ | |
6229 if (!NILP (prop)) | |
6230 merge_face_vector_with_property (f, attrs, prop); | |
6231 | |
6232 /* 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
|
6233 noverlays = sort_overlays (overlay_vec, noverlays, w); |
2342 | 6234 for (i = 0; i < noverlays; i++) |
6235 { | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6236 Lisp_Object oend; |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6237 int oendpos; |
9186
45bac5feb065
(compute_char_face): Handle list as overlay face property.
Richard M. Stallman <rms@gnu.org>
parents:
9184
diff
changeset
|
6238 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6239 prop = Foverlay_get (overlay_vec[i], propname); |
24995 | 6240 if (!NILP (prop)) |
6241 merge_face_vector_with_property (f, attrs, prop); | |
2342 | 6242 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6243 oend = OVERLAY_END (overlay_vec[i]); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6244 oendpos = OVERLAY_POSITION (oend); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6245 if (oendpos < endpos) |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6246 endpos = oendpos; |
2342 | 6247 } |
6248 | |
24995 | 6249 /* 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
|
6250 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
|
6251 { |
24995 | 6252 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
6253 merge_face_vectors (XVECTOR (region_face)->contents, attrs); | |
6254 | |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6255 if (region_end < endpos) |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6256 endpos = region_end; |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6257 } |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6258 |
2342 | 6259 *endptr = endpos; |
6260 | |
24995 | 6261 /* 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
|
6262 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6263 return lookup_face (f, attrs, 0, NULL); |
2342 | 6264 } |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6265 |
24995 | 6266 |
6267 /* 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
|
6268 window W, for ASCII characters. |
24995 | 6269 |
6270 If STRING is an overlay string, it comes from position BUFPOS in | |
6271 current_buffer, otherwise BUFPOS is zero to indicate that STRING is | |
6272 not an overlay string. W must display the current buffer. | |
6273 REGION_BEG and REGION_END give the start and end positions of the | |
6274 region; both are -1 if no region is visible. BASE_FACE_ID is the | |
6275 id of the basic face to merge with. It is usually equal to | |
25546 | 6276 DEFAULT_FACE_ID but can be MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID |
24995 | 6277 for strings displayed in the mode or top line. |
6278 | |
6279 Set *ENDPTR to the next position where to check for faces in | |
6280 STRING; -1 if the face is constant from POS to the end of the | |
6281 string. | |
6282 | |
6283 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
|
6284 for displaying ASCII characters. */ |
24995 | 6285 |
6286 int | |
6287 face_at_string_position (w, string, pos, bufpos, region_beg, | |
6288 region_end, endptr, base_face_id) | |
6289 struct window *w; | |
6290 Lisp_Object string; | |
6291 int pos, bufpos; | |
6292 int region_beg, region_end; | |
6293 int *endptr; | |
6294 enum face_id base_face_id; | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6295 { |
24995 | 6296 Lisp_Object prop, position, end, limit; |
6297 struct frame *f = XFRAME (WINDOW_FRAME (w)); | |
6298 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6299 struct face *base_face; | |
6300 int multibyte_p = STRING_MULTIBYTE (string); | |
6301 | |
6302 /* Get the value of the face property at the current position within | |
6303 STRING. Value is nil if there is no face property. */ | |
6304 XSETFASTINT (position, pos); | |
6305 prop = Fget_text_property (position, Qface, string); | |
6306 | |
6307 /* Get the next position at which to check for faces. Value of end | |
6308 is nil if face is constant all the way to the end of the string. | |
6309 Otherwise it is a string position where to check faces next. | |
6310 Limit is the maximum position up to which to check for property | |
6311 changes in Fnext_single_property_change. Strings are usually | |
6312 short, so set the limit to the end of the string. */ | |
6313 XSETFASTINT (limit, XSTRING (string)->size); | |
6314 end = Fnext_single_property_change (position, Qface, string, limit); | |
6315 if (INTEGERP (end)) | |
6316 *endptr = XFASTINT (end); | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6317 else |
24995 | 6318 *endptr = -1; |
6319 | |
6320 base_face = FACE_FROM_ID (f, base_face_id); | |
6321 xassert (base_face); | |
6322 | |
6323 /* Optimize the default case that there is no face property and we | |
6324 are not in the region. */ | |
6325 if (NILP (prop) | |
6326 && (base_face_id != DEFAULT_FACE_ID | |
6327 /* BUFPOS <= 0 means STRING is not an overlay string, so | |
6328 that the region doesn't have to be taken into account. */ | |
6329 || bufpos <= 0 | |
6330 || bufpos < region_beg | |
6331 || bufpos >= region_end) | |
6332 && (multibyte_p | |
6333 /* We can't realize faces for different charsets differently | |
6334 if we don't have fonts, so we can stop here if not working | |
6335 on a window-system frame. */ | |
6336 || !FRAME_WINDOW_P (f) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6337 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0))) |
24995 | 6338 return base_face->id; |
6339 | |
6340 /* Begin with attributes from the base face. */ | |
6341 bcopy (base_face->lface, attrs, sizeof attrs); | |
6342 | |
6343 /* Merge in attributes specified via text properties. */ | |
6344 if (!NILP (prop)) | |
6345 merge_face_vector_with_property (f, attrs, prop); | |
6346 | |
6347 /* If in the region, merge in the region face. */ | |
6348 if (bufpos | |
6349 && bufpos >= region_beg | |
6350 && bufpos < region_end) | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6351 { |
24995 | 6352 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
6353 merge_face_vectors (XVECTOR (region_face)->contents, attrs); | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6354 } |
24995 | 6355 |
6356 /* 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
|
6357 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6358 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
|
6359 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6360 |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6361 |
2336 | 6362 |
24995 | 6363 /*********************************************************************** |
6364 Tests | |
6365 ***********************************************************************/ | |
6366 | |
6367 #if GLYPH_DEBUG | |
6368 | |
6369 /* Print the contents of the realized face FACE to stderr. */ | |
6370 | |
6371 static void | |
6372 dump_realized_face (face) | |
6373 struct face *face; | |
2336 | 6374 { |
24995 | 6375 fprintf (stderr, "ID: %d\n", face->id); |
6376 #ifdef HAVE_X_WINDOWS | |
6377 fprintf (stderr, "gc: %d\n", (int) face->gc); | |
6378 #endif | |
6379 fprintf (stderr, "foreground: 0x%lx (%s)\n", | |
6380 face->foreground, | |
6381 XSTRING (face->lface[LFACE_FOREGROUND_INDEX])->data); | |
6382 fprintf (stderr, "background: 0x%lx (%s)\n", | |
6383 face->background, | |
6384 XSTRING (face->lface[LFACE_BACKGROUND_INDEX])->data); | |
6385 fprintf (stderr, "font_name: %s (%s)\n", | |
6386 face->font_name, | |
6387 XSTRING (face->lface[LFACE_FAMILY_INDEX])->data); | |
6388 #ifdef HAVE_X_WINDOWS | |
6389 fprintf (stderr, "font = %p\n", face->font); | |
6390 #endif | |
6391 fprintf (stderr, "font_info_id = %d\n", face->font_info_id); | |
6392 fprintf (stderr, "fontset: %d\n", face->fontset); | |
6393 fprintf (stderr, "underline: %d (%s)\n", | |
6394 face->underline_p, | |
6395 XSTRING (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))->data); | |
6396 fprintf (stderr, "hash: %d\n", face->hash); | |
6397 fprintf (stderr, "charset: %d\n", face->charset); | |
6398 } | |
6399 | |
6400 | |
6401 DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, "") | |
6402 (n) | |
6403 Lisp_Object n; | |
6404 { | |
6405 if (NILP (n)) | |
2336 | 6406 { |
24995 | 6407 int i; |
6408 | |
6409 fprintf (stderr, "font selection order: "); | |
6410 for (i = 0; i < DIM (font_sort_order); ++i) | |
6411 fprintf (stderr, "%d ", font_sort_order[i]); | |
6412 fprintf (stderr, "\n"); | |
6413 | |
6414 fprintf (stderr, "alternative fonts: "); | |
6415 debug_print (Vface_alternative_font_family_alist); | |
6416 fprintf (stderr, "\n"); | |
6417 | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6418 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i) |
24995 | 6419 Fdump_face (make_number (i)); |
2336 | 6420 } |
24995 | 6421 else |
6422 { | |
6423 struct face *face; | |
6424 CHECK_NUMBER (n, 0); | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6425 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n)); |
24995 | 6426 if (face == NULL) |
6427 error ("Not a valid face"); | |
6428 dump_realized_face (face); | |
6429 } | |
6430 | |
2336 | 6431 return Qnil; |
6432 } | |
6433 | |
6434 | |
24995 | 6435 DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources, |
6436 0, 0, 0, "") | |
6437 () | |
2336 | 6438 { |
24995 | 6439 fprintf (stderr, "number of colors = %d\n", ncolors_allocated); |
6440 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated); | |
6441 fprintf (stderr, "number of GCs = %d\n", ngcs); | |
2336 | 6442 return Qnil; |
6443 } | |
24995 | 6444 |
6445 #endif /* GLYPH_DEBUG != 0 */ | |
6446 | |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6447 |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6448 |
24995 | 6449 /*********************************************************************** |
6450 Initialization | |
6451 ***********************************************************************/ | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
6452 |
2336 | 6453 void |
2391 | 6454 syms_of_xfaces () |
2336 | 6455 { |
2391 | 6456 Qface = intern ("face"); |
6457 staticpro (&Qface); | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6458 Qbitmap_spec_p = intern ("bitmap-spec-p"); |
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6459 staticpro (&Qbitmap_spec_p); |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6460 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
|
6461 staticpro (&Qframe_update_face_colors); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6462 |
24995 | 6463 /* Lisp face attribute keywords. */ |
6464 QCfamily = intern (":family"); | |
6465 staticpro (&QCfamily); | |
6466 QCheight = intern (":height"); | |
6467 staticpro (&QCheight); | |
6468 QCweight = intern (":weight"); | |
6469 staticpro (&QCweight); | |
6470 QCslant = intern (":slant"); | |
6471 staticpro (&QCslant); | |
6472 QCunderline = intern (":underline"); | |
6473 staticpro (&QCunderline); | |
6474 QCinverse_video = intern (":inverse-video"); | |
6475 staticpro (&QCinverse_video); | |
6476 QCreverse_video = intern (":reverse-video"); | |
6477 staticpro (&QCreverse_video); | |
6478 QCforeground = intern (":foreground"); | |
6479 staticpro (&QCforeground); | |
6480 QCbackground = intern (":background"); | |
6481 staticpro (&QCbackground); | |
6482 QCstipple = intern (":stipple");; | |
6483 staticpro (&QCstipple); | |
6484 QCwidth = intern (":width"); | |
6485 staticpro (&QCwidth); | |
6486 QCfont = intern (":font"); | |
6487 staticpro (&QCfont); | |
6488 QCbold = intern (":bold"); | |
6489 staticpro (&QCbold); | |
6490 QCitalic = intern (":italic"); | |
6491 staticpro (&QCitalic); | |
6492 QCoverline = intern (":overline"); | |
6493 staticpro (&QCoverline); | |
6494 QCstrike_through = intern (":strike-through"); | |
6495 staticpro (&QCstrike_through); | |
6496 QCbox = intern (":box"); | |
6497 staticpro (&QCbox); | |
6498 | |
6499 /* Symbols used for Lisp face attribute values. */ | |
6500 QCcolor = intern (":color"); | |
6501 staticpro (&QCcolor); | |
6502 QCline_width = intern (":line-width"); | |
6503 staticpro (&QCline_width); | |
6504 QCstyle = intern (":style"); | |
6505 staticpro (&QCstyle); | |
6506 Qreleased_button = intern ("released-button"); | |
6507 staticpro (&Qreleased_button); | |
6508 Qpressed_button = intern ("pressed-button"); | |
6509 staticpro (&Qpressed_button); | |
6510 Qnormal = intern ("normal"); | |
6511 staticpro (&Qnormal); | |
6512 Qultra_light = intern ("ultra-light"); | |
6513 staticpro (&Qultra_light); | |
6514 Qextra_light = intern ("extra-light"); | |
6515 staticpro (&Qextra_light); | |
6516 Qlight = intern ("light"); | |
6517 staticpro (&Qlight); | |
6518 Qsemi_light = intern ("semi-light"); | |
6519 staticpro (&Qsemi_light); | |
6520 Qsemi_bold = intern ("semi-bold"); | |
6521 staticpro (&Qsemi_bold); | |
6522 Qbold = intern ("bold"); | |
6523 staticpro (&Qbold); | |
6524 Qextra_bold = intern ("extra-bold"); | |
6525 staticpro (&Qextra_bold); | |
6526 Qultra_bold = intern ("ultra-bold"); | |
6527 staticpro (&Qultra_bold); | |
6528 Qoblique = intern ("oblique"); | |
6529 staticpro (&Qoblique); | |
6530 Qitalic = intern ("italic"); | |
6531 staticpro (&Qitalic); | |
6532 Qreverse_oblique = intern ("reverse-oblique"); | |
6533 staticpro (&Qreverse_oblique); | |
6534 Qreverse_italic = intern ("reverse-italic"); | |
6535 staticpro (&Qreverse_italic); | |
6536 Qultra_condensed = intern ("ultra-condensed"); | |
6537 staticpro (&Qultra_condensed); | |
6538 Qextra_condensed = intern ("extra-condensed"); | |
6539 staticpro (&Qextra_condensed); | |
6540 Qcondensed = intern ("condensed"); | |
6541 staticpro (&Qcondensed); | |
6542 Qsemi_condensed = intern ("semi-condensed"); | |
6543 staticpro (&Qsemi_condensed); | |
6544 Qsemi_expanded = intern ("semi-expanded"); | |
6545 staticpro (&Qsemi_expanded); | |
6546 Qexpanded = intern ("expanded"); | |
6547 staticpro (&Qexpanded); | |
6548 Qextra_expanded = intern ("extra-expanded"); | |
6549 staticpro (&Qextra_expanded); | |
6550 Qultra_expanded = intern ("ultra-expanded"); | |
6551 staticpro (&Qultra_expanded); | |
6552 Qbackground_color = intern ("background-color"); | |
6553 staticpro (&Qbackground_color); | |
6554 Qforeground_color = intern ("foreground-color"); | |
6555 staticpro (&Qforeground_color); | |
6556 Qunspecified = intern ("unspecified"); | |
6557 staticpro (&Qunspecified); | |
6558 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6559 Qface_alias = intern ("face-alias"); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6560 staticpro (&Qface_alias); |
24995 | 6561 Qdefault = intern ("default"); |
6562 staticpro (&Qdefault); | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25389
diff
changeset
|
6563 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
|
6564 staticpro (&Qtool_bar); |
24995 | 6565 Qregion = intern ("region"); |
6566 staticpro (&Qregion); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6567 Qfringe = intern ("fringe"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6568 staticpro (&Qfringe); |
25546 | 6569 Qheader_line = intern ("header-line"); |
6570 staticpro (&Qheader_line); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6571 Qscroll_bar = intern ("scroll-bar"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6572 staticpro (&Qscroll_bar); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
6573 Qmenu = intern ("menu"); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
6574 staticpro (&Qmenu); |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6575 Qcursor = intern ("cursor"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6576 staticpro (&Qcursor); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6577 Qborder = intern ("border"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6578 staticpro (&Qborder); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6579 Qmouse = intern ("mouse"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6580 staticpro (&Qmouse); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6581 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
|
6582 staticpro (&Qtty_color_desc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6583 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
|
6584 staticpro (&Qtty_color_by_index); |
24995 | 6585 |
6586 defsubr (&Sinternal_make_lisp_face); | |
6587 defsubr (&Sinternal_lisp_face_p); | |
6588 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
|
6589 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 6590 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
|
6591 #endif |
27120
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
6592 defsubr (&Scolor_gray_p); |
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
6593 defsubr (&Scolor_supported_p); |
24995 | 6594 defsubr (&Sinternal_get_lisp_face_attribute); |
6595 defsubr (&Sinternal_lisp_face_attribute_values); | |
6596 defsubr (&Sinternal_lisp_face_equal_p); | |
6597 defsubr (&Sinternal_lisp_face_empty_p); | |
6598 defsubr (&Sinternal_copy_lisp_face); | |
6599 defsubr (&Sinternal_merge_in_global_face); | |
6600 defsubr (&Sface_font); | |
6601 defsubr (&Sframe_face_alist); | |
6602 defsubr (&Sinternal_set_font_selection_order); | |
6603 defsubr (&Sinternal_set_alternative_font_family_alist); | |
6604 #if GLYPH_DEBUG | |
6605 defsubr (&Sdump_face); | |
6606 defsubr (&Sshow_face_resources); | |
6607 #endif /* GLYPH_DEBUG */ | |
6608 defsubr (&Sclear_face_cache); | |
6609 | |
25270 | 6610 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit, |
6611 "*Limit for font matching.\n\ | |
6612 If an integer > 0, font matching functions won't load more than\n\ | |
6613 that number of fonts when searching for a matching font."); | |
6614 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT); | |
6615 | |
24995 | 6616 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults, |
6617 "List of global face definitions (for internal use only.)"); | |
6618 Vface_new_frame_defaults = Qnil; | |
6619 | |
6620 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple, | |
6621 "*Default stipple pattern used on monochrome displays.\n\ | |
6622 This stipple pattern is used on monochrome displays\n\ | |
6623 instead of shades of gray for a face background color.\n\ | |
6624 See `set-face-stipple' for possible values for this variable."); | |
6625 Vface_default_stipple = build_string ("gray3"); | |
6626 | |
6627 DEFVAR_LISP ("face-alternative-font-family-alist", | |
6628 &Vface_alternative_font_family_alist, ""); | |
6629 Vface_alternative_font_family_alist = Qnil; | |
6630 | |
6631 #if SCALABLE_FONTS | |
6632 | |
6633 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed, | |
6634 "Allowed scalable fonts.\n\ | |
6635 A value of nil means don't allow any scalable fonts.\n\ | |
6636 A value of t means allow any scalable font.\n\ | |
6637 Otherwise, value must be a list of regular expressions. A font may be\n\ | |
6638 scaled if its name matches a regular expression in the list."); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6639 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6640 /* 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
|
6641 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
|
6642 Vscalable_fonts_allowed = Qt; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6643 #else |
24995 | 6644 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
|
6645 #endif |
24995 | 6646 #endif /* SCALABLE_FONTS */ |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6647 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6648 #ifdef HAVE_WINDOW_SYSTEM |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6649 defsubr (&Sbitmap_spec_p); |
24995 | 6650 defsubr (&Sx_list_fonts); |
6651 defsubr (&Sinternal_face_x_get_resource); | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6652 defsubr (&Sx_family_fonts); |
24995 | 6653 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
|
6654 #endif /* HAVE_WINDOW_SYSTEM */ |
2336 | 6655 } |