Mercurial > emacs
annotate src/xfaces.c @ 29752:76ef59b86226
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 19 Jun 2000 16:20:07 +0000 |
parents | 913fab478495 |
children | 6f3f0ca4a359 |
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 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
413 /* Non-zero means don't display bold text if a face's foreground |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
414 and background colors are the inverse of the default colors of the |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
415 display. This is a kluge to suppress `bold black' foreground text |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
416 which is hard to read on an LCD monitor. */ |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
417 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
418 int tty_suppress_bold_inverse_default_colors_p; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
419 |
24995 | 420 /* The total number of colors currently allocated. */ |
421 | |
422 #if GLYPH_DEBUG | |
423 static int ncolors_allocated; | |
424 static int npixmaps_allocated; | |
425 static int ngcs; | |
426 #endif | |
427 | |
428 | |
2336 | 429 |
24995 | 430 /* Function prototypes. */ |
431 | |
432 struct font_name; | |
433 struct table_entry; | |
434 | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
435 static Lisp_Object resolve_face_name P_ ((Lisp_Object)); |
24995 | 436 static int may_use_scalable_font_p P_ ((struct font_name *, char *)); |
437 static void set_font_frame_param P_ ((Lisp_Object, Lisp_Object)); | |
438 static int better_font_p P_ ((int *, struct font_name *, struct font_name *, | |
439 int)); | |
440 static int first_font_matching P_ ((struct frame *f, char *, | |
441 struct font_name *)); | |
442 static int x_face_list_fonts P_ ((struct frame *, char *, | |
443 struct font_name *, int, int, int)); | |
444 static int font_scalable_p P_ ((struct font_name *)); | |
445 static int get_lface_attributes P_ ((struct frame *, Lisp_Object, Lisp_Object *, int)); | |
446 static int load_pixmap P_ ((struct frame *, Lisp_Object, unsigned *, unsigned *)); | |
447 static unsigned char *xstrlwr P_ ((unsigned char *)); | |
448 static void signal_error P_ ((char *, Lisp_Object)); | |
449 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
|
450 static void load_face_font P_ ((struct frame *, struct face *, int)); |
24995 | 451 static void load_face_colors P_ ((struct frame *, struct face *, Lisp_Object *)); |
452 static void free_face_colors P_ ((struct frame *, struct face *)); | |
453 static int face_color_gray_p P_ ((struct frame *, char *)); | |
454 static char *build_font_name P_ ((struct font_name *)); | |
455 static void free_font_names P_ ((struct font_name *, int)); | |
456 static int sorted_font_list P_ ((struct frame *, char *, | |
457 int (*cmpfn) P_ ((const void *, const void *)), | |
458 struct font_name **)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
459 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
|
460 Lisp_Object, struct font_name **)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
461 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
|
462 Lisp_Object, Lisp_Object, struct font_name **)); |
24995 | 463 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
|
464 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
|
465 struct face *, int)); |
24995 | 466 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
|
467 Lisp_Object *, int, struct face *)); |
24995 | 468 static struct face *realize_tty_face P_ ((struct face_cache *, |
469 Lisp_Object *, int)); | |
470 static int realize_basic_faces P_ ((struct frame *)); | |
471 static int realize_default_face P_ ((struct frame *)); | |
472 static void realize_named_face P_ ((struct frame *, Lisp_Object, int)); | |
473 static int lface_fully_specified_p P_ ((Lisp_Object *)); | |
474 static int lface_equal_p P_ ((Lisp_Object *, Lisp_Object *)); | |
475 static unsigned hash_string_case_insensitive P_ ((Lisp_Object)); | |
476 static unsigned lface_hash P_ ((Lisp_Object *)); | |
477 static int lface_same_font_attributes_p P_ ((Lisp_Object *, Lisp_Object *)); | |
478 static struct face_cache *make_face_cache P_ ((struct frame *)); | |
479 static void free_realized_face P_ ((struct frame *, struct face *)); | |
480 static void clear_face_gcs P_ ((struct face_cache *)); | |
481 static void free_face_cache P_ ((struct face_cache *)); | |
482 static int face_numeric_weight P_ ((Lisp_Object)); | |
483 static int face_numeric_slant P_ ((Lisp_Object)); | |
484 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
|
485 static int face_fontset P_ ((Lisp_Object *)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
486 static char *choose_face_font P_ ((struct frame *, Lisp_Object *, int, int)); |
24995 | 487 static void merge_face_vectors P_ ((Lisp_Object *from, Lisp_Object *)); |
488 static void merge_face_vector_with_property P_ ((struct frame *, Lisp_Object *, | |
489 Lisp_Object)); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
490 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
|
491 Lisp_Object, int, int)); |
24995 | 492 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
|
493 static struct face *make_realized_face P_ ((Lisp_Object *)); |
24995 | 494 static void free_realized_faces P_ ((struct face_cache *)); |
495 static char *best_matching_font P_ ((struct frame *, Lisp_Object *, | |
496 struct font_name *, int)); | |
497 static void cache_face P_ ((struct face_cache *, struct face *, unsigned)); | |
498 static void uncache_face P_ ((struct face_cache *, struct face *)); | |
499 static int xlfd_numeric_slant P_ ((struct font_name *)); | |
500 static int xlfd_numeric_weight P_ ((struct font_name *)); | |
501 static int xlfd_numeric_swidth P_ ((struct font_name *)); | |
502 static Lisp_Object xlfd_symbolic_slant P_ ((struct font_name *)); | |
503 static Lisp_Object xlfd_symbolic_weight P_ ((struct font_name *)); | |
504 static Lisp_Object xlfd_symbolic_swidth P_ ((struct font_name *)); | |
505 static int xlfd_fixed_p P_ ((struct font_name *)); | |
506 static int xlfd_numeric_value P_ ((struct table_entry *, int, struct font_name *, | |
507 int, int)); | |
508 static Lisp_Object xlfd_symbolic_value P_ ((struct table_entry *, int, | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
509 struct font_name *, int, |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
510 Lisp_Object)); |
24995 | 511 static struct table_entry *xlfd_lookup_field_contents P_ ((struct table_entry *, int, |
512 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
|
513 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
514 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 515 |
516 static int split_font_name P_ ((struct frame *, struct font_name *, int)); | |
517 static int xlfd_point_size P_ ((struct frame *, struct font_name *)); | |
518 static void sort_fonts P_ ((struct frame *, struct font_name *, int, | |
519 int (*cmpfn) P_ ((const void *, const void *)))); | |
520 static GC x_create_gc P_ ((struct frame *, unsigned long, XGCValues *)); | |
521 static void x_free_gc P_ ((struct frame *, GC)); | |
522 static void clear_font_table P_ ((struct frame *)); | |
523 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
524 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
525 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
|
526 #endif /* WINDOWSNT */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
527 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
528 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 529 |
530 | |
531 /*********************************************************************** | |
532 Utilities | |
533 ***********************************************************************/ | |
534 | |
535 #ifdef HAVE_X_WINDOWS | |
536 | |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
537 #ifdef DEBUG_X_COLORS |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
538 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
539 /* The following is a poor mans infrastructure for debugging X color |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
540 allocation problems on displays with PseudoColor-8. Some X servers |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
541 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
542 color reference counts completely so that they don't signal an |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
543 error when a color is freed whose reference count is already 0. |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
544 Other X servers do. To help me debug this, the following code |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
545 implements a simple reference counting schema of its own, for a |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
546 single display/screen. --gerd. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
547 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
548 /* Reference counts for pixel colors. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
549 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
550 int color_count[256]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
551 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
552 /* Register color PIXEL as allocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
553 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
554 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
555 register_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
556 unsigned long pixel; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
557 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
558 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
559 ++color_count[pixel]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
560 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
561 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
562 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
563 /* Register color PIXEL as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
564 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
565 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
566 unregister_color (pixel) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
567 unsigned long pixel; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
568 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
569 xassert (pixel < 256); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
570 if (color_count[pixel] > 0) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
571 --color_count[pixel]; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
572 else |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
573 abort (); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
574 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
575 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
576 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
577 /* Register N colors from PIXELS as deallocated. */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
578 |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
579 void |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
580 unregister_colors (pixels, n) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
581 unsigned long *pixels; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
582 int n; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
583 { |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
584 int i; |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
585 for (i = 0; i < n; ++i) |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
586 unregister_color (pixels[i]); |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
587 } |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
588 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
589 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
590 DEFUN ("dump-colors", Fdump_colors, Sdump_colors, 0, 0, 0, |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
591 "Dump currently allocated colors and their reference counts to stderr.") |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
592 () |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
593 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
594 int i, n; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
595 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
596 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
597 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
598 for (i = n = 0; i < sizeof color_count / sizeof color_count[0]; ++i) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
599 if (color_count[i]) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
600 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
601 fprintf (stderr, "%3d: %5d", i, color_count[i]); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
602 ++n; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
603 if (n % 5 == 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
604 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
605 else |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
606 fputc ('\t', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
607 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
608 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
609 if (n % 5 != 0) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
610 fputc ('\n', stderr); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
611 return Qnil; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
612 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
613 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
614 |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
615 #endif /* DEBUG_X_COLORS */ |
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
616 |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
617 /* 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
|
618 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
|
619 is called. */ |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
620 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
621 void |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
622 x_free_colors (f, pixels, npixels) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
623 struct frame *f; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
624 unsigned long *pixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
625 int npixels; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
626 { |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
627 int class = FRAME_X_DISPLAY_INFO (f)->visual->class; |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
628 |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
629 /* 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
|
630 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
|
631 if (class != StaticColor && class != StaticGray && class != TrueColor) |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
632 { |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
633 XFreeColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
634 pixels, npixels, 0); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
635 #ifdef DEBUG_X_COLORS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
636 unregister_colors (pixels, npixels); |
28354
d6ae8188fa58
(register_color, unregister_colors, unregister_colors)
Gerd Moellmann <gerd@gnu.org>
parents:
28349
diff
changeset
|
637 #endif |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
638 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
639 } |
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
640 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
641 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
642 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
643 color values. Interrupt input must be blocked when this function |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
644 is called. */ |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
645 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
646 void |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
647 x_free_dpy_colors (dpy, screen, cmap, pixels, npixels) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
648 Display *dpy; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
649 Screen *screen; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
650 Colormap cmap; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
651 unsigned long *pixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
652 int npixels; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
653 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
654 struct x_display_info *dpyinfo = x_display_info_for_display (dpy); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
655 int class = dpyinfo->visual->class; |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
656 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
657 /* If display has an immutable color map, freeing colors is not |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
658 necessary and some servers don't allow it. So don't do it. */ |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
659 if (class != StaticColor && class != StaticGray && class != TrueColor) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
660 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
661 XFreeColors (dpy, cmap, pixels, npixels, 0); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
662 #ifdef DEBUG_X_COLORS |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
663 unregister_colors (pixels, npixels); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
664 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
665 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
666 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
667 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
668 |
24995 | 669 /* Create and return a GC for use on frame F. GC values and mask |
670 are given by XGCV and MASK. */ | |
671 | |
672 static INLINE GC | |
673 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
|
674 struct frame *f; |
24995 | 675 unsigned long mask; |
676 XGCValues *xgcv; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
677 { |
2336 | 678 GC gc; |
24995 | 679 BLOCK_INPUT; |
680 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv); | |
681 UNBLOCK_INPUT; | |
682 IF_DEBUG (++ngcs); | |
683 return gc; | |
684 } | |
685 | |
686 | |
687 /* Free GC which was used on frame F. */ | |
688 | |
689 static INLINE void | |
690 x_free_gc (f, gc) | |
691 struct frame *f; | |
692 GC gc; | |
693 { | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
694 BLOCK_INPUT; |
24995 | 695 xassert (--ngcs >= 0); |
696 XFreeGC (FRAME_X_DISPLAY (f), gc); | |
697 UNBLOCK_INPUT; | |
698 } | |
699 | |
700 #endif /* HAVE_X_WINDOWS */ | |
701 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
702 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
703 /* W32 emulation of GCs */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
704 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
705 static INLINE GC |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
706 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
|
707 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
708 unsigned long mask; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
709 XGCValues *xgcv; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
710 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
711 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
712 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
713 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
|
714 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
715 IF_DEBUG (++ngcs); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
716 return gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
717 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
718 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
719 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
720 /* 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
|
721 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
722 static INLINE void |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
723 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
|
724 struct frame *f; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
725 GC gc; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
726 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
727 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
728 xassert (--ngcs >= 0); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
729 xfree (gc); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
730 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
731 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
732 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
733 #endif /* WINDOWSNT */ |
24995 | 734 |
735 /* Like stricmp. Used to compare parts of font names which are in | |
736 ISO8859-1. */ | |
737 | |
738 int | |
739 xstricmp (s1, s2) | |
740 unsigned char *s1, *s2; | |
741 { | |
742 while (*s1 && *s2) | |
743 { | |
744 unsigned char c1 = tolower (*s1); | |
745 unsigned char c2 = tolower (*s2); | |
746 if (c1 != c2) | |
747 return c1 < c2 ? -1 : 1; | |
748 ++s1, ++s2; | |
749 } | |
750 | |
751 if (*s1 == 0) | |
752 return *s2 == 0 ? 0 : -1; | |
753 return 1; | |
754 } | |
755 | |
756 | |
757 /* Like strlwr, which might not always be available. */ | |
758 | |
759 static unsigned char * | |
760 xstrlwr (s) | |
761 unsigned char *s; | |
762 { | |
763 unsigned char *p = s; | |
764 | |
765 for (p = s; *p; ++p) | |
766 *p = tolower (*p); | |
767 | |
768 return s; | |
769 } | |
770 | |
771 | |
772 /* Signal `error' with message S, and additional argument ARG. */ | |
773 | |
774 static void | |
775 signal_error (s, arg) | |
776 char *s; | |
777 Lisp_Object arg; | |
778 { | |
779 Fsignal (Qerror, Fcons (build_string (s), Fcons (arg, Qnil))); | |
780 } | |
781 | |
782 | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
783 /* 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
|
784 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
|
785 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
|
786 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
|
787 Lisp function definitions. */ |
24995 | 788 |
789 static INLINE struct frame * | |
790 frame_or_selected_frame (frame, nparam) | |
791 Lisp_Object frame; | |
792 int nparam; | |
793 { | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
794 if (NILP (frame)) |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
795 frame = selected_frame; |
24995 | 796 |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
797 CHECK_LIVE_FRAME (frame, nparam); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
798 return XFRAME (frame); |
24995 | 799 } |
800 | |
801 | |
802 /*********************************************************************** | |
803 Frames and faces | |
804 ***********************************************************************/ | |
805 | |
806 /* 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
|
807 |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
808 void |
24995 | 809 init_frame_faces (f) |
810 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
|
811 { |
24995 | 812 /* Make a face cache, if F doesn't have one. */ |
813 if (FRAME_FACE_CACHE (f) == NULL) | |
814 FRAME_FACE_CACHE (f) = make_face_cache (f); | |
815 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
816 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 817 /* 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
|
818 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
|
819 { |
24995 | 820 if (FRAME_X_IMAGE_CACHE (f) == NULL) |
821 FRAME_X_IMAGE_CACHE (f) = make_image_cache (); | |
822 ++FRAME_X_IMAGE_CACHE (f)->refcount; | |
823 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
824 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 825 |
826 /* Realize basic faces. Must have enough information in frame | |
827 parameters to realize basic faces at this point. */ | |
828 #ifdef HAVE_X_WINDOWS | |
829 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f)) | |
830 #endif | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
831 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
832 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
|
833 #endif |
24995 | 834 if (!realize_basic_faces (f)) |
835 abort (); | |
836 } | |
837 | |
838 | |
839 /* Free face cache of frame F. Called from Fdelete_frame. */ | |
840 | |
841 void | |
842 free_frame_faces (f) | |
843 struct frame *f; | |
844 { | |
845 struct face_cache *face_cache = FRAME_FACE_CACHE (f); | |
846 | |
847 if (face_cache) | |
848 { | |
849 free_face_cache (face_cache); | |
850 FRAME_FACE_CACHE (f) = NULL; | |
851 } | |
852 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
853 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
854 if (FRAME_WINDOW_P (f)) |
24995 | 855 { |
856 struct image_cache *image_cache = FRAME_X_IMAGE_CACHE (f); | |
857 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
|
858 { |
24995 | 859 --image_cache->refcount; |
860 if (image_cache->refcount == 0) | |
861 free_image_cache (f); | |
862 } | |
863 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
864 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 865 } |
866 | |
867 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
868 /* 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
|
869 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
|
870 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
|
871 of named faces. */ |
24995 | 872 |
873 void | |
874 recompute_basic_faces (f) | |
875 struct frame *f; | |
876 { | |
877 if (FRAME_FACE_CACHE (f)) | |
878 { | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
879 clear_face_cache (0); |
26601
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
880 if (!realize_basic_faces (f)) |
e23e3120d84f
(set_lface_from_font_name): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26594
diff
changeset
|
881 abort (); |
24995 | 882 } |
883 } | |
884 | |
885 | |
886 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means | |
887 try to free unused fonts, too. */ | |
888 | |
889 void | |
890 clear_face_cache (clear_fonts_p) | |
891 int clear_fonts_p; | |
892 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
893 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 894 Lisp_Object tail, frame; |
895 struct frame *f; | |
896 | |
897 if (clear_fonts_p | |
898 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT) | |
899 { | |
900 /* From time to time see if we can unload some fonts. This also | |
901 frees all realized faces on all frames. Fonts needed by | |
902 faces will be loaded again when faces are realized again. */ | |
903 clear_font_table_count = 0; | |
904 | |
905 FOR_EACH_FRAME (tail, frame) | |
906 { | |
907 f = XFRAME (frame); | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
908 if (FRAME_WINDOW_P (f) |
24995 | 909 && 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
|
910 { |
24995 | 911 free_all_realized_faces (frame); |
912 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
|
913 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
914 } |
8e610355cb29
Eliminate the "display faces"; store GCs in the "computed faces".
Richard M. Stallman <rms@gnu.org>
parents:
9326
diff
changeset
|
915 } |
24995 | 916 else |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
917 { |
24995 | 918 /* Clear GCs of realized faces. */ |
919 FOR_EACH_FRAME (tail, frame) | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
920 { |
24995 | 921 f = XFRAME (frame); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
922 if (FRAME_WINDOW_P (f)) |
24995 | 923 { |
924 clear_face_gcs (FRAME_FACE_CACHE (f)); | |
925 clear_image_cache (f, 0); | |
926 } | |
13460
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
927 } |
5513606156bc
(unload_font): Invalidate computed faces.
Richard M. Stallman <rms@gnu.org>
parents:
13363
diff
changeset
|
928 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
929 #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
|
930 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
931 |
24995 | 932 |
933 DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0, | |
934 "Clear face caches on all frames.\n\ | |
935 Optional THOROUGHLY non-nil means try to free unused fonts, too.") | |
936 (thorougly) | |
937 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
|
938 { |
24995 | 939 clear_face_cache (!NILP (thorougly)); |
940 return Qnil; | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
941 } |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
942 |
24995 | 943 |
944 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
945 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 946 |
947 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
948 /* 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
|
949 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
|
950 from time to time. */ |
24995 | 951 |
952 static void | |
953 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
|
954 struct frame *f; |
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
955 { |
24995 | 956 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); |
957 int i; | |
958 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
959 xassert (FRAME_WINDOW_P (f)); |
24995 | 960 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
961 /* Free those fonts that are not used by the frame F as the default. */ |
24995 | 962 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
|
963 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
964 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
|
965 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
966 if (!font_info->name |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
967 || font_info->font == FRAME_FONT (f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
968 continue; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
969 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
970 /* Free names. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
971 if (font_info->full_name != font_info->name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
972 xfree (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
973 xfree (font_info->name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
974 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
975 /* Free the font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
976 BLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
977 #ifdef HAVE_X_WINDOWS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
978 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
|
979 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
980 #ifdef WINDOWSNT |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
981 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
|
982 #endif |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
983 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
984 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
985 /* Mark font table slot free. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
986 font_info->font = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
987 font_info->name = font_info->full_name = NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
988 } |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
989 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
990 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
991 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 992 |
993 | |
994 | |
995 /*********************************************************************** | |
996 X Pixmaps | |
997 ***********************************************************************/ | |
998 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
999 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1000 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1001 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
|
1002 "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
|
1003 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
|
1004 (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
|
1005 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
|
1006 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
|
1007 (WIDTH + 7)/8 bytes.") |
14090
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1008 (object) |
24b93860d392
(Fpixmap_spec_p): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1009 Lisp_Object object; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1010 { |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1011 int pixmap_p = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1012 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1013 if (STRINGP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1014 /* 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
|
1015 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1016 else if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1017 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1018 /* 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
|
1019 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
|
1020 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
|
1021 Lisp_Object width, height, data; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1022 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1023 height = width = data = Qnil; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1024 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1025 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1026 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1027 width = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1028 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1029 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1030 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1031 height = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1032 object = XCDR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1033 if (CONSP (object)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1034 data = XCAR (object); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1035 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1036 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1037 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1038 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1039 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1040 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
|
1041 / BITS_PER_CHAR); |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
1042 if (STRING_BYTES (XSTRING (data)) >= bytes_per_row * XINT (height)) |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1043 pixmap_p = 1; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1044 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1045 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1046 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
1047 return pixmap_p ? Qt : Qnil; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1048 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1049 |
24995 | 1050 |
1051 /* Load a bitmap according to NAME (which is either a file name or a | |
1052 pixmap spec) for use on frame F. Value is the bitmap_id (see | |
1053 xfns.c). If NAME is nil, return with a bitmap id of zero. If | |
1054 bitmap cannot be loaded, display a message saying so, and return | |
1055 zero. Store the bitmap width in *W_PTR and its height in *H_PTR, | |
1056 if these pointers are not null. */ | |
1057 | |
1058 static int | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1059 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
|
1060 FRAME_PTR f; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1061 Lisp_Object name; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1062 unsigned int *w_ptr, *h_ptr; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1063 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1064 int bitmap_id; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1065 Lisp_Object tem; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1066 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1067 if (NILP (name)) |
24995 | 1068 return 0; |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1069 |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1070 tem = Fbitmap_spec_p (name); |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1071 if (NILP (tem)) |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
1072 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
|
1073 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1074 BLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1075 if (CONSP (name)) |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1076 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1077 /* Decode a bitmap spec into a bitmap. */ |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1078 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1079 int h, w; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1080 Lisp_Object bits; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1081 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1082 w = XINT (Fcar (name)); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1083 h = XINT (Fcar (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1084 bits = Fcar (Fcdr (Fcdr (name))); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1085 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1086 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
|
1087 w, h); |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1088 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1089 else |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1090 { |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1091 /* 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
|
1092 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
|
1093 } |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1094 UNBLOCK_INPUT; |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1095 |
9902
32ed712a45a3
(load_pixmap): Handle bitmap_id < 0. F is a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9671
diff
changeset
|
1096 if (bitmap_id < 0) |
24995 | 1097 { |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1098 add_to_log ("Invalid or undefined bitmap %s", name, Qnil); |
24995 | 1099 bitmap_id = 0; |
1100 | |
1101 if (w_ptr) | |
1102 *w_ptr = 0; | |
1103 if (h_ptr) | |
1104 *h_ptr = 0; | |
1105 } | |
1106 else | |
1107 { | |
1108 #if GLYPH_DEBUG | |
1109 ++npixmaps_allocated; | |
1110 #endif | |
1111 if (w_ptr) | |
1112 *w_ptr = x_bitmap_width (f, bitmap_id); | |
1113 | |
1114 if (h_ptr) | |
1115 *h_ptr = x_bitmap_height (f, bitmap_id); | |
1116 } | |
9564
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1117 |
1bfb920ab23e
(intern_face): Set the fill_style.
Richard M. Stallman <rms@gnu.org>
parents:
9529
diff
changeset
|
1118 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
|
1119 } |
9572 | 1120 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1121 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1122 |
9572 | 1123 |
2336 | 1124 |
24995 | 1125 /*********************************************************************** |
1126 Minimum font bounds | |
1127 ***********************************************************************/ | |
1128 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1129 #ifdef HAVE_WINDOW_SYSTEM |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1130 |
25062
050561b336aa
(load_face_colors): Load background color if setting
Gerd Moellmann <gerd@gnu.org>
parents:
24995
diff
changeset
|
1131 /* 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
|
1132 changes. */ |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1133 |
6879
471aebc1b151
(frame_update_line_height): Don't call x_set_window_size.
Richard M. Stallman <rms@gnu.org>
parents:
6784
diff
changeset
|
1134 int |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1135 frame_update_line_height (f) |
24995 | 1136 struct frame *f; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1137 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1138 int line_height, changed_p; |
25062
050561b336aa
(load_face_colors): Load background color if setting
Gerd Moellmann <gerd@gnu.org>
parents:
24995
diff
changeset
|
1139 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1140 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
|
1141 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
|
1142 FRAME_LINE_HEIGHT (f) = line_height; |
24995 | 1143 return changed_p; |
6768
0b61d2b74e64
(frame_update_line_height): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6615
diff
changeset
|
1144 } |
24995 | 1145 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1146 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1147 |
6784
d41c216ccd27
(frame_update_line_height): Check param_faces[i] not null.
Richard M. Stallman <rms@gnu.org>
parents:
6768
diff
changeset
|
1148 |
24995 | 1149 /*********************************************************************** |
1150 Fonts | |
1151 ***********************************************************************/ | |
1152 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1153 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1154 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1155 /* 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
|
1156 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
|
1157 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
|
1158 |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1159 static void |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1160 load_face_font (f, face, c) |
24995 | 1161 struct frame *f; |
1162 struct face *face; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1163 int c; |
24995 | 1164 { |
1165 struct font_info *font_info = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1166 char *font_name; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1167 |
24995 | 1168 face->font_info_id = -1; |
1169 face->font = NULL; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1170 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1171 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
|
1172 if (!font_name) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1173 return; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1174 |
24995 | 1175 BLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1176 font_info = FS_LOAD_FACE_FONT (f, c, font_name, face); |
24995 | 1177 UNBLOCK_INPUT; |
1178 | |
1179 if (font_info) | |
1180 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1181 face->font_info_id = font_info->font_idx; |
24995 | 1182 face->font = font_info->font; |
1183 face->font_name = font_info->full_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1184 if (face->gc) |
24995 | 1185 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1186 x_free_gc (f, face->gc); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1187 face->gc = 0; |
24995 | 1188 } |
1189 } | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1190 else |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
1191 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
|
1192 build_string (font_name), Qnil); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
1193 xfree (font_name); |
24995 | 1194 } |
1195 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1196 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1197 |
1198 | |
1199 | |
1200 /*********************************************************************** | |
1201 X Colors | |
1202 ***********************************************************************/ | |
1203 | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1204 /* A version of defined_color for non-X frames. */ |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1205 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1206 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1207 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
|
1208 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1209 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1210 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1211 int alloc; |
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 color_desc; |
27695
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1214 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
|
1215 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
|
1216 int status = 1; |
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 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
|
1219 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1220 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1221 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1222 XSETFRAME (frame, f); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1223 status = 0; |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1224 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
|
1225 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
|
1226 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1227 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
|
1228 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
|
1229 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1230 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
|
1231 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
|
1232 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
|
1233 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1234 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1235 } |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1236 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
|
1237 /* 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
|
1238 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
|
1239 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
|
1240 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
|
1241 status = 1; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1242 } |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1243 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
|
1244 { |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1245 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
|
1246 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
|
1247 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
|
1248 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
|
1249 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
1250 |
27743
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1251 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
|
1252 status = 1; |
2e020ab026b8
(tty_defined_color): Don't return faulire indication
Eli Zaretskii <eliz@gnu.org>
parents:
27695
diff
changeset
|
1253 |
27695
68feb13f9572
(tty_defined_color): Declare color_idx unsigned long.
Dave Love <fx@gnu.org>
parents:
27137
diff
changeset
|
1254 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
|
1255 color_def->red = red; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1256 color_def->green = green; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1257 color_def->blue = blue; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1258 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1259 return status; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1260 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1261 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1262 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1263 /* Decide if color named COLOR_NAME is valid for the display |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1264 associated with the frame F; if so, return the rgb values in |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1265 COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell. |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1266 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1267 This does the right thing for any type of frame. */ |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1268 |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1269 int |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1270 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
|
1271 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1272 char *color_name; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1273 XColor *color_def; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1274 int alloc; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1275 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1276 if (!FRAME_WINDOW_P (f)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1277 return tty_defined_color (f, color_name, color_def, alloc); |
24995 | 1278 #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
|
1279 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
|
1280 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
|
1281 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1282 #ifdef WINDOWSNT |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1283 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
|
1284 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
|
1285 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1286 #ifdef macintosh |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1287 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
|
1288 /* 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
|
1289 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
|
1290 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1291 else |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1292 abort (); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1293 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1294 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1295 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1296 /* Given the index IDX of a tty color on frame F, return its name, a |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1297 Lisp string. */ |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1298 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1299 Lisp_Object |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1300 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
|
1301 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1302 int idx; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1303 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1304 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
|
1305 { |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1306 Lisp_Object frame; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1307 Lisp_Object coldesc; |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1308 |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1309 XSETFRAME (frame, f); |
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
1310 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
|
1311 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1312 if (!NILP (coldesc)) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1313 return XCAR (coldesc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1314 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1315 #ifdef MSDOS |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1316 /* 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
|
1317 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
|
1318 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
|
1319 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
|
1320 #endif |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1321 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1322 if (idx == FACE_TTY_DEFAULT_FG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1323 return build_string (unspecified_fg); |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1324 if (idx == FACE_TTY_DEFAULT_BG_COLOR) |
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1325 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
|
1326 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1327 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1328 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
|
1329 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1330 |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
1331 return Qunspecified; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1332 } |
24995 | 1333 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1334 |
24995 | 1335 /* Return non-zero if COLOR_NAME is a shade of gray (or white or |
1336 black) on frame F. The algorithm is taken from 20.2 faces.el. */ | |
1337 | |
1338 static int | |
1339 face_color_gray_p (f, color_name) | |
1340 struct frame *f; | |
1341 char *color_name; | |
1342 { | |
1343 XColor color; | |
1344 int gray_p; | |
1345 | |
1346 if (defined_color (f, color_name, &color, 0)) | |
1347 gray_p = ((abs (color.red - color.green) | |
1348 < max (color.red, color.green) / 20) | |
1349 && (abs (color.green - color.blue) | |
1350 < max (color.green, color.blue) / 20) | |
1351 && (abs (color.blue - color.red) | |
1352 < max (color.blue, color.red) / 20)); | |
1353 else | |
1354 gray_p = 0; | |
1355 | |
1356 return gray_p; | |
1357 } | |
1358 | |
1359 | |
1360 /* Return non-zero if color COLOR_NAME can be displayed on frame F. | |
1361 BACKGROUND_P non-zero means the color will be used as background | |
1362 color. */ | |
1363 | |
1364 static int | |
1365 face_color_supported_p (f, color_name, background_p) | |
1366 struct frame *f; | |
1367 char *color_name; | |
1368 int background_p; | |
1369 { | |
1370 Lisp_Object frame; | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1371 XColor not_used; |
24995 | 1372 |
1373 XSETFRAME (frame, f); | |
26972
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1374 return (FRAME_WINDOW_P (f) |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1375 ? (!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
|
1376 || xstricmp (color_name, "black") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1377 || xstricmp (color_name, "white") == 0 |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1378 || (background_p |
68a3d8530f6c
(face_color_supported_p): Check by tty_defined_color
Kenichi Handa <handa@m17n.org>
parents:
26913
diff
changeset
|
1379 && 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
|
1380 || (!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
|
1381 && 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
|
1382 : 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
|
1383 } |
24995 | 1384 |
1385 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1386 DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0, |
24995 | 1387 "Return non-nil if COLOR is a shade of gray (or white or black).\n\ |
1388 FRAME specifies the frame and thus the display for interpreting COLOR.\n\ | |
1389 If FRAME is nil or omitted, use the selected frame.") | |
1390 (color, frame) | |
1391 Lisp_Object color, frame; | |
1392 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1393 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1394 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1395 CHECK_FRAME (frame, 0); |
24995 | 1396 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
|
1397 f = XFRAME (frame); |
24995 | 1398 return face_color_gray_p (f, XSTRING (color)->data) ? Qt : Qnil; |
1399 } | |
1400 | |
1401 | |
27100
9a0d8503806e
(Fcolor_gray_p): Renamed from face-color-gray-p.
Eli Zaretskii <eliz@gnu.org>
parents:
27088
diff
changeset
|
1402 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
|
1403 Scolor_supported_p, 2, 3, 0, |
24995 | 1404 "Return non-nil if COLOR can be displayed on FRAME.\n\ |
1405 BACKGROUND-P non-nil means COLOR is used as a background.\n\ | |
1406 If FRAME is nil or omitted, use the selected frame.\n\ | |
1407 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
|
1408 (color, frame, background_p) |
24995 | 1409 Lisp_Object frame, color, background_p; |
1410 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1411 struct frame *f; |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1412 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1413 CHECK_FRAME (frame, 0); |
24995 | 1414 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
|
1415 f = XFRAME (frame); |
24995 | 1416 if (face_color_supported_p (f, XSTRING (color)->data, !NILP (background_p))) |
1417 return Qt; | |
1418 return Qnil; | |
1419 } | |
1420 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1421 |
24995 | 1422 /* Load color with name NAME for use by face FACE on frame F. |
1423 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX, | |
1424 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX, | |
1425 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the | |
1426 pixel color. If color cannot be loaded, display a message, and | |
1427 return the foreground, background or underline color of F, but | |
1428 record that fact in flags of the face so that we don't try to free | |
1429 these colors. */ | |
1430 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
1431 unsigned long |
24995 | 1432 load_color (f, face, name, target_index) |
1433 struct frame *f; | |
1434 struct face *face; | |
1435 Lisp_Object name; | |
1436 enum lface_attribute_index target_index; | |
1437 { | |
1438 XColor color; | |
1439 | |
1440 xassert (STRINGP (name)); | |
1441 xassert (target_index == LFACE_FOREGROUND_INDEX | |
1442 || target_index == LFACE_BACKGROUND_INDEX | |
1443 || target_index == LFACE_UNDERLINE_INDEX | |
1444 || target_index == LFACE_OVERLINE_INDEX | |
1445 || target_index == LFACE_STRIKE_THROUGH_INDEX | |
1446 || target_index == LFACE_BOX_INDEX); | |
1447 | |
1448 /* if the color map is full, defined_color will return a best match | |
1449 to the values in an existing cell. */ | |
1450 if (!defined_color (f, XSTRING (name)->data, &color, 1)) | |
1451 { | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
1452 add_to_log ("Unable to load color \"%s\"", name, Qnil); |
24995 | 1453 |
1454 switch (target_index) | |
1455 { | |
1456 case LFACE_FOREGROUND_INDEX: | |
1457 face->foreground_defaulted_p = 1; | |
1458 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1459 break; | |
1460 | |
1461 case LFACE_BACKGROUND_INDEX: | |
1462 face->background_defaulted_p = 1; | |
1463 color.pixel = FRAME_BACKGROUND_PIXEL (f); | |
1464 break; | |
1465 | |
1466 case LFACE_UNDERLINE_INDEX: | |
1467 face->underline_defaulted_p = 1; | |
1468 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1469 break; | |
1470 | |
1471 case LFACE_OVERLINE_INDEX: | |
1472 face->overline_color_defaulted_p = 1; | |
1473 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1474 break; | |
1475 | |
1476 case LFACE_STRIKE_THROUGH_INDEX: | |
1477 face->strike_through_color_defaulted_p = 1; | |
1478 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1479 break; | |
1480 | |
1481 case LFACE_BOX_INDEX: | |
1482 face->box_color_defaulted_p = 1; | |
1483 color.pixel = FRAME_FOREGROUND_PIXEL (f); | |
1484 break; | |
1485 | |
1486 default: | |
1487 abort (); | |
1488 } | |
1489 } | |
1490 #if GLYPH_DEBUG | |
1491 else | |
1492 ++ncolors_allocated; | |
1493 #endif | |
1494 | |
1495 return color.pixel; | |
1496 } | |
1497 | |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1498 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1499 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 1500 |
1501 /* Load colors for face FACE which is used on frame F. Colors are | |
1502 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX | |
1503 of ATTRS. If the background color specified is not supported on F, | |
1504 try to emulate gray colors with a stipple from Vface_default_stipple. */ | |
1505 | |
1506 static void | |
1507 load_face_colors (f, face, attrs) | |
1508 struct frame *f; | |
1509 struct face *face; | |
1510 Lisp_Object *attrs; | |
1511 { | |
1512 Lisp_Object fg, bg; | |
1513 | |
1514 bg = attrs[LFACE_BACKGROUND_INDEX]; | |
1515 fg = attrs[LFACE_FOREGROUND_INDEX]; | |
1516 | |
1517 /* Swap colors if face is inverse-video. */ | |
1518 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt)) | |
1519 { | |
1520 Lisp_Object tmp; | |
1521 tmp = fg; | |
1522 fg = bg; | |
1523 bg = tmp; | |
1524 } | |
1525 | |
1526 /* Check for support for foreground, not for background because | |
1527 face_color_supported_p is smart enough to know that grays are | |
1528 "supported" as background because we are supposed to use stipple | |
1529 for them. */ | |
1530 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
|
1531 && !NILP (Fbitmap_spec_p (Vface_default_stipple))) |
24995 | 1532 { |
1533 x_destroy_bitmap (f, face->stipple); | |
1534 face->stipple = load_pixmap (f, Vface_default_stipple, | |
1535 &face->pixmap_w, &face->pixmap_h); | |
1536 } | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1537 |
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
1538 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX); |
24995 | 1539 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX); |
1540 } | |
1541 | |
1542 | |
1543 /* Free color PIXEL on frame F. */ | |
1544 | |
1545 void | |
1546 unload_color (f, pixel) | |
1547 struct frame *f; | |
1548 unsigned long pixel; | |
1549 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1550 #ifdef HAVE_X_WINDOWS |
24995 | 1551 BLOCK_INPUT; |
27960
25a04100858d
(x_free_colors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27743
diff
changeset
|
1552 x_free_colors (f, &pixel, 1); |
24995 | 1553 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1554 #endif |
24995 | 1555 } |
1556 | |
1557 | |
1558 /* Free colors allocated for FACE. */ | |
1559 | |
1560 static void | |
1561 free_face_colors (f, face) | |
1562 struct frame *f; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1563 struct face *face; |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
1564 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1565 #ifdef HAVE_X_WINDOWS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1566 BLOCK_INPUT; |
24995 | 1567 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1568 if (!face->foreground_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1569 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1570 x_free_colors (f, &face->foreground, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1571 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1572 } |
24995 | 1573 |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1574 if (!face->background_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1575 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1576 x_free_colors (f, &face->background, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1577 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1578 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1579 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1580 if (face->underline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1581 && !face->underline_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1582 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1583 x_free_colors (f, &face->underline_color, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1584 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1585 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1586 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1587 if (face->overline_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1588 && !face->overline_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1589 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1590 x_free_colors (f, &face->overline_color, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1591 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1592 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1593 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1594 if (face->strike_through_p |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1595 && !face->strike_through_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1596 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1597 x_free_colors (f, &face->strike_through_color, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1598 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1599 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1600 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1601 if (face->box != FACE_NO_BOX |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1602 && !face->box_color_defaulted_p) |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1603 { |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1604 x_free_colors (f, &face->box_color, 1); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1605 IF_DEBUG (--ncolors_allocated); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1606 } |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1607 |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1608 UNBLOCK_INPUT; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1609 #endif /* HAVE_X_WINDOWS */ |
24995 | 1610 } |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
1611 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
1612 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 1613 |
1614 | |
1615 | |
1616 /*********************************************************************** | |
1617 XLFD Font Names | |
1618 ***********************************************************************/ | |
1619 | |
1620 /* An enumerator for each field of an XLFD font name. */ | |
1621 | |
1622 enum xlfd_field | |
1623 { | |
1624 XLFD_FOUNDRY, | |
1625 XLFD_FAMILY, | |
1626 XLFD_WEIGHT, | |
1627 XLFD_SLANT, | |
1628 XLFD_SWIDTH, | |
1629 XLFD_ADSTYLE, | |
1630 XLFD_PIXEL_SIZE, | |
1631 XLFD_POINT_SIZE, | |
1632 XLFD_RESX, | |
1633 XLFD_RESY, | |
1634 XLFD_SPACING, | |
1635 XLFD_AVGWIDTH, | |
1636 XLFD_REGISTRY, | |
1637 XLFD_ENCODING, | |
1638 XLFD_LAST | |
1639 }; | |
1640 | |
1641 /* An enumerator for each possible slant value of a font. Taken from | |
1642 the XLFD specification. */ | |
1643 | |
1644 enum xlfd_slant | |
1645 { | |
1646 XLFD_SLANT_UNKNOWN, | |
1647 XLFD_SLANT_ROMAN, | |
1648 XLFD_SLANT_ITALIC, | |
1649 XLFD_SLANT_OBLIQUE, | |
1650 XLFD_SLANT_REVERSE_ITALIC, | |
1651 XLFD_SLANT_REVERSE_OBLIQUE, | |
1652 XLFD_SLANT_OTHER | |
1653 }; | |
1654 | |
1655 /* Relative font weight according to XLFD documentation. */ | |
1656 | |
1657 enum xlfd_weight | |
1658 { | |
1659 XLFD_WEIGHT_UNKNOWN, | |
1660 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */ | |
1661 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */ | |
1662 XLFD_WEIGHT_LIGHT, /* 30 */ | |
1663 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */ | |
1664 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1665 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */ | |
1666 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */ | |
1667 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */ | |
1668 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */ | |
1669 }; | |
1670 | |
1671 /* Relative proportionate width. */ | |
1672 | |
1673 enum xlfd_swidth | |
1674 { | |
1675 XLFD_SWIDTH_UNKNOWN, | |
1676 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */ | |
1677 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */ | |
1678 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */ | |
1679 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */ | |
1680 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */ | |
1681 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */ | |
1682 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */ | |
1683 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */ | |
1684 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */ | |
1685 }; | |
1686 | |
1687 /* Structure used for tables mapping XLFD weight, slant, and width | |
1688 names to numeric and symbolic values. */ | |
1689 | |
1690 struct table_entry | |
1691 { | |
1692 char *name; | |
1693 int numeric; | |
1694 Lisp_Object *symbol; | |
1695 }; | |
1696 | |
1697 /* Table of XLFD slant names and their numeric and symbolic | |
1698 representations. This table must be sorted by slant names in | |
1699 ascending order. */ | |
1700 | |
1701 static struct table_entry slant_table[] = | |
1702 { | |
1703 {"i", XLFD_SLANT_ITALIC, &Qitalic}, | |
1704 {"o", XLFD_SLANT_OBLIQUE, &Qoblique}, | |
1705 {"ot", XLFD_SLANT_OTHER, &Qitalic}, | |
1706 {"r", XLFD_SLANT_ROMAN, &Qnormal}, | |
1707 {"ri", XLFD_SLANT_REVERSE_ITALIC, &Qreverse_italic}, | |
1708 {"ro", XLFD_SLANT_REVERSE_OBLIQUE, &Qreverse_oblique} | |
1709 }; | |
1710 | |
1711 /* Table of XLFD weight names. This table must be sorted by weight | |
1712 names in ascending order. */ | |
1713 | |
1714 static struct table_entry weight_table[] = | |
1715 { | |
1716 {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}, | |
1717 {"bold", XLFD_WEIGHT_BOLD, &Qbold}, | |
1718 {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1719 {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1720 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light}, | |
1721 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1722 {"heavy", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold}, | |
1723 {"light", XLFD_WEIGHT_LIGHT, &Qlight}, | |
1724 {"medium", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1725 {"normal", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1726 {"regular", XLFD_WEIGHT_MEDIUM, &Qnormal}, | |
1727 {"semibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, | |
1728 {"semilight", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, | |
1729 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT, &Qultra_light}, | |
1730 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold} | |
1731 }; | |
1732 | |
1733 /* Table of XLFD width names. This table must be sorted by width | |
1734 names in ascending order. */ | |
1735 | |
1736 static struct table_entry swidth_table[] = | |
1737 { | |
1738 {"compressed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1739 {"condensed", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1740 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1741 {"expanded", XLFD_SWIDTH_EXPANDED, &Qexpanded}, | |
1742 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED, &Qextra_condensed}, | |
1743 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded}, | |
1744 {"medium", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1745 {"narrow", XLFD_SWIDTH_CONDENSED, &Qcondensed}, | |
1746 {"normal", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1747 {"regular", XLFD_SWIDTH_MEDIUM, &Qnormal}, | |
1748 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED, &Qsemi_condensed}, | |
1749 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded}, | |
1750 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED, &Qultra_condensed}, | |
1751 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED, &Qultra_expanded}, | |
1752 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded} | |
1753 }; | |
1754 | |
1755 /* Structure used to hold the result of splitting font names in XLFD | |
1756 format into their fields. */ | |
1757 | |
1758 struct font_name | |
1759 { | |
1760 /* The original name which is modified destructively by | |
1761 split_font_name. The pointer is kept here to be able to free it | |
1762 if it was allocated from the heap. */ | |
1763 char *name; | |
1764 | |
1765 /* Font name fields. Each vector element points into `name' above. | |
1766 Fields are NUL-terminated. */ | |
1767 char *fields[XLFD_LAST]; | |
1768 | |
1769 /* Numeric values for those fields that interest us. See | |
1770 split_font_name for which these are. */ | |
1771 int numeric[XLFD_LAST]; | |
1772 }; | |
1773 | |
1774 /* The frame in effect when sorting font names. Set temporarily in | |
1775 sort_fonts so that it is available in font comparison functions. */ | |
1776 | |
1777 static struct frame *font_frame; | |
1778 | |
1779 /* Order by which font selection chooses fonts. The default values | |
1780 mean `first, find a best match for the font width, then for the | |
1781 font height, then for weight, then for slant.' This variable can be | |
1782 set via set-face-font-sort-order. */ | |
1783 | |
1784 static int font_sort_order[4]; | |
1785 | |
1786 | |
1787 /* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries. | |
1788 TABLE must be sorted by TABLE[i]->name in ascending order. Value | |
1789 is a pointer to the matching table entry or null if no table entry | |
1790 matches. */ | |
1791 | |
1792 static struct table_entry * | |
1793 xlfd_lookup_field_contents (table, dim, font, field_index) | |
1794 struct table_entry *table; | |
1795 int dim; | |
1796 struct font_name *font; | |
1797 int field_index; | |
1798 { | |
1799 /* Function split_font_name converts fields to lower-case, so there | |
1800 is no need to use xstrlwr or xstricmp here. */ | |
1801 char *s = font->fields[field_index]; | |
1802 int low, mid, high, cmp; | |
1803 | |
1804 low = 0; | |
1805 high = dim - 1; | |
1806 | |
1807 while (low <= high) | |
1808 { | |
1809 mid = (low + high) / 2; | |
1810 cmp = strcmp (table[mid].name, s); | |
1811 | |
1812 if (cmp < 0) | |
1813 low = mid + 1; | |
1814 else if (cmp > 0) | |
1815 high = mid - 1; | |
1816 else | |
1817 return table + mid; | |
1818 } | |
1819 | |
1820 return NULL; | |
1821 } | |
1822 | |
1823 | |
1824 /* Return a numeric representation for font name field | |
1825 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1826 has DIM entries. Value is the numeric value found or DFLT if no | |
1827 table entry matches. This function is used to translate weight, | |
1828 slant, and swidth names of XLFD font names to numeric values. */ | |
1829 | |
1830 static INLINE int | |
1831 xlfd_numeric_value (table, dim, font, field_index, dflt) | |
1832 struct table_entry *table; | |
1833 int dim; | |
1834 struct font_name *font; | |
1835 int field_index; | |
1836 int dflt; | |
1837 { | |
1838 struct table_entry *p; | |
1839 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1840 return p ? p->numeric : dflt; | |
1841 } | |
1842 | |
1843 | |
1844 /* Return a symbolic representation for font name field | |
1845 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which | |
1846 has DIM entries. Value is the symbolic value found or DFLT if no | |
1847 table entry matches. This function is used to translate weight, | |
1848 slant, and swidth names of XLFD font names to symbols. */ | |
1849 | |
1850 static INLINE Lisp_Object | |
1851 xlfd_symbolic_value (table, dim, font, field_index, dflt) | |
1852 struct table_entry *table; | |
1853 int dim; | |
1854 struct font_name *font; | |
1855 int field_index; | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
1856 Lisp_Object dflt; |
24995 | 1857 { |
1858 struct table_entry *p; | |
1859 p = xlfd_lookup_field_contents (table, dim, font, field_index); | |
1860 return p ? *p->symbol : dflt; | |
1861 } | |
1862 | |
1863 | |
1864 /* Return a numeric value for the slant of the font given by FONT. */ | |
1865 | |
1866 static INLINE int | |
1867 xlfd_numeric_slant (font) | |
1868 struct font_name *font; | |
1869 { | |
1870 return xlfd_numeric_value (slant_table, DIM (slant_table), | |
1871 font, XLFD_SLANT, XLFD_SLANT_ROMAN); | |
1872 } | |
1873 | |
1874 | |
1875 /* Return a symbol representing the weight of the font given by FONT. */ | |
1876 | |
1877 static INLINE Lisp_Object | |
1878 xlfd_symbolic_slant (font) | |
1879 struct font_name *font; | |
1880 { | |
1881 return xlfd_symbolic_value (slant_table, DIM (slant_table), | |
1882 font, XLFD_SLANT, Qnormal); | |
1883 } | |
1884 | |
1885 | |
1886 /* Return a numeric value for the weight of the font given by FONT. */ | |
1887 | |
1888 static INLINE int | |
1889 xlfd_numeric_weight (font) | |
1890 struct font_name *font; | |
1891 { | |
1892 return xlfd_numeric_value (weight_table, DIM (weight_table), | |
1893 font, XLFD_WEIGHT, XLFD_WEIGHT_MEDIUM); | |
1894 } | |
1895 | |
1896 | |
1897 /* Return a symbol representing the slant of the font given by FONT. */ | |
1898 | |
1899 static INLINE Lisp_Object | |
1900 xlfd_symbolic_weight (font) | |
1901 struct font_name *font; | |
1902 { | |
1903 return xlfd_symbolic_value (weight_table, DIM (weight_table), | |
1904 font, XLFD_WEIGHT, Qnormal); | |
1905 } | |
1906 | |
1907 | |
1908 /* Return a numeric value for the swidth of the font whose XLFD font | |
1909 name fields are found in FONT. */ | |
1910 | |
1911 static INLINE int | |
1912 xlfd_numeric_swidth (font) | |
1913 struct font_name *font; | |
1914 { | |
1915 return xlfd_numeric_value (swidth_table, DIM (swidth_table), | |
1916 font, XLFD_SWIDTH, XLFD_SWIDTH_MEDIUM); | |
1917 } | |
1918 | |
1919 | |
1920 /* Return a symbolic value for the swidth of FONT. */ | |
1921 | |
1922 static INLINE Lisp_Object | |
1923 xlfd_symbolic_swidth (font) | |
1924 struct font_name *font; | |
1925 { | |
1926 return xlfd_symbolic_value (swidth_table, DIM (swidth_table), | |
1927 font, XLFD_SWIDTH, Qnormal); | |
1928 } | |
1929 | |
1930 | |
1931 /* Look up the entry of SYMBOL in the vector TABLE which has DIM | |
1932 entries. Value is a pointer to the matching table entry or null if | |
1933 no element of TABLE contains SYMBOL. */ | |
1934 | |
1935 static struct table_entry * | |
1936 face_value (table, dim, symbol) | |
1937 struct table_entry *table; | |
1938 int dim; | |
1939 Lisp_Object symbol; | |
1940 { | |
1941 int i; | |
1942 | |
1943 xassert (SYMBOLP (symbol)); | |
1944 | |
1945 for (i = 0; i < dim; ++i) | |
1946 if (EQ (*table[i].symbol, symbol)) | |
1947 break; | |
1948 | |
1949 return i < dim ? table + i : NULL; | |
1950 } | |
1951 | |
1952 | |
1953 /* Return a numeric value for SYMBOL in the vector TABLE which has DIM | |
1954 entries. Value is -1 if SYMBOL is not found in TABLE. */ | |
1955 | |
1956 static INLINE int | |
1957 face_numeric_value (table, dim, symbol) | |
1958 struct table_entry *table; | |
1959 int dim; | |
1960 Lisp_Object symbol; | |
1961 { | |
1962 struct table_entry *p = face_value (table, dim, symbol); | |
1963 return p ? p->numeric : -1; | |
1964 } | |
1965 | |
1966 | |
1967 /* Return a numeric value representing the weight specified by Lisp | |
1968 symbol WEIGHT. Value is one of the enumerators of enum | |
1969 xlfd_weight. */ | |
1970 | |
1971 static INLINE int | |
1972 face_numeric_weight (weight) | |
1973 Lisp_Object weight; | |
1974 { | |
1975 return face_numeric_value (weight_table, DIM (weight_table), weight); | |
1976 } | |
1977 | |
1978 | |
1979 /* Return a numeric value representing the slant specified by Lisp | |
1980 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */ | |
1981 | |
1982 static INLINE int | |
1983 face_numeric_slant (slant) | |
1984 Lisp_Object slant; | |
1985 { | |
1986 return face_numeric_value (slant_table, DIM (slant_table), slant); | |
1987 } | |
1988 | |
1989 | |
1990 /* Return a numeric value representing the swidth specified by Lisp | |
1991 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */ | |
1992 | |
1993 static int | |
1994 face_numeric_swidth (width) | |
1995 Lisp_Object width; | |
1996 { | |
1997 return face_numeric_value (swidth_table, DIM (swidth_table), width); | |
1998 } | |
1999 | |
2000 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2001 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2002 |
2003 /* Return non-zero if FONT is the name of a fixed-pitch font. */ | |
2004 | |
2005 static INLINE int | |
2006 xlfd_fixed_p (font) | |
2007 struct font_name *font; | |
2008 { | |
2009 /* Function split_font_name converts fields to lower-case, so there | |
2010 is no need to use tolower here. */ | |
2011 return *font->fields[XLFD_SPACING] != 'p'; | |
2012 } | |
2013 | |
2014 | |
2015 /* Return the point size of FONT on frame F, measured in 1/10 pt. | |
2016 | |
2017 The actual height of the font when displayed on F depends on the | |
2018 resolution of both the font and frame. For example, a 10pt font | |
2019 designed for a 100dpi display will display larger than 10pt on a | |
2020 75dpi display. (It's not unusual to use fonts not designed for the | |
2021 display one is using. For example, some intlfonts are available in | |
2022 72dpi versions, only.) | |
2023 | |
2024 Value is the real point size of FONT on frame F, or 0 if it cannot | |
2025 be determined. */ | |
2026 | |
2027 static INLINE int | |
2028 xlfd_point_size (f, font) | |
2029 struct frame *f; | |
2030 struct font_name *font; | |
2031 { | |
2032 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
2033 double font_resy = atoi (font->fields[XLFD_RESY]); | |
2034 double font_pt = atoi (font->fields[XLFD_POINT_SIZE]); | |
2035 int real_pt; | |
2036 | |
2037 if (font_resy == 0 || font_pt == 0) | |
2038 real_pt = 0; | |
2039 else | |
2040 real_pt = (font_resy / resy) * font_pt + 0.5; | |
2041 | |
2042 return real_pt; | |
2043 } | |
2044 | |
2045 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2046 /* 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
|
2047 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
|
2048 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
|
2049 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2050 static INLINE int |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2051 pixel_point_size (f, pixel) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2052 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2053 int pixel; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2054 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2055 double resy = FRAME_X_DISPLAY_INFO (f)->resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2056 double real_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2057 int int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2058 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2059 /* 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
|
2060 real_pt = pixel * 72 / resy; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2061 int_pt = real_pt + 0.5; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2062 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2063 return int_pt; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2064 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2065 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2066 |
24995 | 2067 /* Split XLFD font name FONT->name destructively into NUL-terminated, |
2068 lower-case fields in FONT->fields. NUMERIC_P non-zero means | |
2069 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH, | |
2070 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is | |
2071 zero if the font name doesn't have the format we expect. The | |
2072 expected format is a font name that starts with a `-' and has | |
2073 XLFD_LAST fields separated by `-'. (The XLFD specification allows | |
2074 forms of font names where certain field contents are enclosed in | |
2075 square brackets. We don't support that, for now. */ | |
2076 | |
2077 static int | |
2078 split_font_name (f, font, numeric_p) | |
2079 struct frame *f; | |
2080 struct font_name *font; | |
2081 int numeric_p; | |
2082 { | |
2083 int i = 0; | |
2084 int success_p; | |
2085 | |
2086 if (*font->name == '-') | |
2087 { | |
2088 char *p = xstrlwr (font->name) + 1; | |
2089 | |
2090 while (i < XLFD_LAST) | |
2091 { | |
2092 font->fields[i] = p; | |
2093 ++i; | |
2094 | |
2095 while (*p && *p != '-') | |
2096 ++p; | |
2097 | |
2098 if (*p != '-') | |
2099 break; | |
2100 | |
2101 *p++ = 0; | |
2102 } | |
2103 } | |
2104 | |
2105 success_p = i == XLFD_LAST; | |
2106 | |
2107 /* If requested, and font name was in the expected format, | |
2108 compute numeric values for some fields. */ | |
2109 if (numeric_p && success_p) | |
2110 { | |
2111 font->numeric[XLFD_POINT_SIZE] = xlfd_point_size (f, font); | |
2112 font->numeric[XLFD_RESY] = atoi (font->fields[XLFD_RESY]); | |
2113 font->numeric[XLFD_SLANT] = xlfd_numeric_slant (font); | |
2114 font->numeric[XLFD_WEIGHT] = xlfd_numeric_weight (font); | |
2115 font->numeric[XLFD_SWIDTH] = xlfd_numeric_swidth (font); | |
2116 } | |
2117 | |
2118 return success_p; | |
2119 } | |
2120 | |
2121 | |
2122 /* Build an XLFD font name from font name fields in FONT. Value is a | |
2123 pointer to the font name, which is allocated via xmalloc. */ | |
2124 | |
2125 static char * | |
2126 build_font_name (font) | |
2127 struct font_name *font; | |
2128 { | |
2129 int i; | |
2130 int size = 100; | |
2131 char *font_name = (char *) xmalloc (size); | |
2132 int total_length = 0; | |
2133 | |
2134 for (i = 0; i < XLFD_LAST; ++i) | |
2135 { | |
2136 /* Add 1 because of the leading `-'. */ | |
2137 int len = strlen (font->fields[i]) + 1; | |
2138 | |
2139 /* Reallocate font_name if necessary. Add 1 for the final | |
2140 NUL-byte. */ | |
2141 if (total_length + len + 1 >= size) | |
2142 { | |
2143 int new_size = max (2 * size, size + len + 1); | |
2144 int sz = new_size * sizeof *font_name; | |
2145 font_name = (char *) xrealloc (font_name, sz); | |
2146 size = new_size; | |
2147 } | |
2148 | |
2149 font_name[total_length] = '-'; | |
2150 bcopy (font->fields[i], font_name + total_length + 1, len - 1); | |
2151 total_length += len; | |
2152 } | |
2153 | |
2154 font_name[total_length] = 0; | |
2155 return font_name; | |
2156 } | |
2157 | |
2158 | |
2159 /* Free an array FONTS of N font_name structures. This frees FONTS | |
2160 itself and all `name' fields in its elements. */ | |
2161 | |
2162 static INLINE void | |
2163 free_font_names (fonts, n) | |
2164 struct font_name *fonts; | |
2165 int n; | |
2166 { | |
2167 while (n) | |
2168 xfree (fonts[--n].name); | |
2169 xfree (fonts); | |
2170 } | |
2171 | |
2172 | |
2173 /* Sort vector FONTS of font_name structures which contains NFONTS | |
2174 elements using qsort and comparison function CMPFN. F is the frame | |
2175 on which the fonts will be used. The global variable font_frame | |
2176 is temporarily set to F to make it available in CMPFN. */ | |
2177 | |
2178 static INLINE void | |
2179 sort_fonts (f, fonts, nfonts, cmpfn) | |
2180 struct frame *f; | |
2181 struct font_name *fonts; | |
2182 int nfonts; | |
2183 int (*cmpfn) P_ ((const void *, const void *)); | |
2184 { | |
2185 font_frame = f; | |
2186 qsort (fonts, nfonts, sizeof *fonts, cmpfn); | |
2187 font_frame = NULL; | |
3074
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2188 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
2189 |
24995 | 2190 |
2191 /* Get fonts matching PATTERN on frame F. If F is null, use the first | |
2192 display in x_display_list. FONTS is a pointer to a vector of | |
2193 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try | |
2194 alternative patterns from Valternate_fontname_alist if no fonts are | |
2195 found matching PATTERN. SCALABLE_FONTS_P non-zero means include | |
2196 scalable fonts. | |
2197 | |
2198 For all fonts found, set FONTS[i].name to the name of the font, | |
2199 allocated via xmalloc, and split font names into fields. Ignore | |
2200 fonts that we can't parse. Value is the number of fonts found. | |
2201 | |
2202 This is similar to x_list_fonts. The differences are: | |
2203 | |
2204 1. It avoids consing. | |
2205 2. It never calls XLoadQueryFont. */ | |
2206 | |
2207 static int | |
2208 x_face_list_fonts (f, pattern, fonts, nfonts, try_alternatives_p, | |
2209 scalable_fonts_p) | |
2210 struct frame *f; | |
2211 char *pattern; | |
2212 struct font_name *fonts; | |
2213 int nfonts, try_alternatives_p; | |
2214 int scalable_fonts_p; | |
2215 { | |
2216 int n, i, j; | |
2217 char **names; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2218 #ifdef HAVE_X_WINDOWS |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2219 Display *dpy = f ? FRAME_X_DISPLAY (f) : x_display_list->display; |
24995 | 2220 |
2221 /* Get the list of fonts matching PATTERN from the X server. */ | |
2222 BLOCK_INPUT; | |
2223 names = XListFonts (dpy, pattern, nfonts, &n); | |
2224 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2225 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2226 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2227 /* 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
|
2228 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
|
2229 Lisp_Object lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2230 Lisp_Object lpattern, tem; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2231 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2232 n = 0; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2233 names = NULL; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2234 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2235 lpattern = build_string (pattern); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2236 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2237 /* 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
|
2238 BLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2239 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
|
2240 UNBLOCK_INPUT; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2241 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2242 /* Count fonts returned */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2243 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
|
2244 n++; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2245 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2246 /* Allocate array. */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2247 if (n) |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2248 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
|
2249 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2250 /* 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
|
2251 tem = lfonts; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2252 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
|
2253 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2254 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
|
2255 tem = XCDR (tem); |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2256 } |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2257 #endif |
24995 | 2258 |
2259 if (names) | |
2260 { | |
2261 /* Make a copy of the font names we got from X, and | |
2262 split them into fields. */ | |
2263 for (i = j = 0; i < n; ++i) | |
2264 { | |
2265 /* Make a copy of the font name. */ | |
2266 fonts[j].name = xstrdup (names[i]); | |
2267 | |
2268 /* Ignore fonts having a name that we can't parse. */ | |
2269 if (!split_font_name (f, fonts + j, 1)) | |
2270 xfree (fonts[j].name); | |
2271 else if (font_scalable_p (fonts + j)) | |
2272 { | |
2273 #if SCALABLE_FONTS | |
2274 if (!scalable_fonts_p | |
2275 || !may_use_scalable_font_p (fonts + j, names[i])) | |
2276 xfree (fonts[j].name); | |
2277 else | |
2278 ++j; | |
2279 #else /* !SCALABLE_FONTS */ | |
2280 /* Always ignore scalable fonts. */ | |
2281 xfree (fonts[j].name); | |
2282 #endif /* !SCALABLE_FONTS */ | |
2283 } | |
2284 else | |
2285 ++j; | |
2286 } | |
2287 | |
2288 n = j; | |
2289 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2290 #ifdef HAVE_X_WINDOWS |
24995 | 2291 /* Free font names. */ |
2292 BLOCK_INPUT; | |
2293 XFreeFontNames (names); | |
2294 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2295 #endif |
24995 | 2296 } |
2297 | |
2298 | |
2299 /* If no fonts found, try patterns from Valternate_fontname_alist. */ | |
2300 if (n == 0 && try_alternatives_p) | |
2301 { | |
2302 Lisp_Object list = Valternate_fontname_alist; | |
2303 | |
2304 while (CONSP (list)) | |
2305 { | |
2306 Lisp_Object entry = XCAR (list); | |
2307 if (CONSP (entry) | |
2308 && STRINGP (XCAR (entry)) | |
2309 && strcmp (XSTRING (XCAR (entry))->data, pattern) == 0) | |
2310 break; | |
2311 list = XCDR (list); | |
2312 } | |
2313 | |
2314 if (CONSP (list)) | |
2315 { | |
2316 Lisp_Object patterns = XCAR (list); | |
2317 Lisp_Object name; | |
2318 | |
2319 while (CONSP (patterns) | |
2320 /* If list is screwed up, give up. */ | |
2321 && (name = XCAR (patterns), | |
2322 STRINGP (name)) | |
2323 /* Ignore patterns equal to PATTERN because we tried that | |
2324 already with no success. */ | |
2325 && (strcmp (XSTRING (name)->data, pattern) == 0 | |
2326 || (n = x_face_list_fonts (f, XSTRING (name)->data, | |
2327 fonts, nfonts, 0, | |
2328 scalable_fonts_p), | |
2329 n == 0))) | |
2330 patterns = XCDR (patterns); | |
2331 } | |
2332 } | |
2333 | |
2334 return n; | |
2335 } | |
2336 | |
2337 | |
2338 /* Determine the first font matching PATTERN on frame F. Return in | |
2339 *FONT the matching font name, split into fields. Value is non-zero | |
2340 if a match was found. */ | |
2341 | |
2342 static int | |
2343 first_font_matching (f, pattern, font) | |
2344 struct frame *f; | |
2345 char *pattern; | |
2346 struct font_name *font; | |
2347 { | |
2348 int nfonts = 100; | |
2349 struct font_name *fonts; | |
2350 | |
2351 fonts = (struct font_name *) xmalloc (nfonts * sizeof *fonts); | |
2352 nfonts = x_face_list_fonts (f, pattern, fonts, nfonts, 1, 0); | |
2353 | |
2354 if (nfonts > 0) | |
2355 { | |
2356 bcopy (&fonts[0], font, sizeof *font); | |
2357 | |
2358 fonts[0].name = NULL; | |
2359 free_font_names (fonts, nfonts); | |
2360 } | |
2361 | |
2362 return nfonts > 0; | |
2363 } | |
2364 | |
2365 | |
2366 /* Determine fonts matching PATTERN on frame F. Sort resulting fonts | |
2367 using comparison function CMPFN. Value is the number of fonts | |
2368 found. If value is non-zero, *FONTS is set to a vector of | |
2369 font_name structures allocated from the heap containing matching | |
2370 fonts. Each element of *FONTS contains a name member that is also | |
2371 allocated from the heap. Font names in these structures are split | |
2372 into fields. Use free_font_names to free such an array. */ | |
2373 | |
2374 static int | |
2375 sorted_font_list (f, pattern, cmpfn, fonts) | |
2376 struct frame *f; | |
2377 char *pattern; | |
2378 int (*cmpfn) P_ ((const void *, const void *)); | |
2379 struct font_name **fonts; | |
2380 { | |
2381 int nfonts; | |
2382 | |
2383 /* Get the list of fonts matching pattern. 100 should suffice. */ | |
25270 | 2384 nfonts = DEFAULT_FONT_LIST_LIMIT; |
2385 if (INTEGERP (Vfont_list_limit) && XINT (Vfont_list_limit) > 0) | |
2386 nfonts = XFASTINT (Vfont_list_limit); | |
2387 | |
24995 | 2388 *fonts = (struct font_name *) xmalloc (nfonts * sizeof **fonts); |
2389 #if SCALABLE_FONTS | |
2390 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1, 1); | |
2391 #else | |
2392 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1, 0); | |
2393 #endif | |
2394 | |
2395 /* Sort the resulting array and return it in *FONTS. If no | |
2396 fonts were found, make sure to set *FONTS to null. */ | |
2397 if (nfonts) | |
2398 sort_fonts (f, *fonts, nfonts, cmpfn); | |
2399 else | |
2400 { | |
2401 xfree (*fonts); | |
2402 *fonts = NULL; | |
2403 } | |
2404 | |
2405 return nfonts; | |
2406 } | |
2407 | |
2408 | |
2409 /* Compare two font_name structures *A and *B. Value is analogous to | |
2410 strcmp. Sort order is given by the global variable | |
2411 font_sort_order. Font names are sorted so that, everything else | |
2412 being equal, fonts with a resolution closer to that of the frame on | |
2413 which they are used are listed first. The global variable | |
2414 font_frame is the frame on which we operate. */ | |
2415 | |
2416 static int | |
2417 cmp_font_names (a, b) | |
2418 const void *a, *b; | |
2419 { | |
2420 struct font_name *x = (struct font_name *) a; | |
2421 struct font_name *y = (struct font_name *) b; | |
2422 int cmp; | |
2423 | |
2424 /* All strings have been converted to lower-case by split_font_name, | |
2425 so we can use strcmp here. */ | |
2426 cmp = strcmp (x->fields[XLFD_FAMILY], y->fields[XLFD_FAMILY]); | |
2427 if (cmp == 0) | |
2428 { | |
2429 int i; | |
2430 | |
2431 for (i = 0; i < DIM (font_sort_order) && cmp == 0; ++i) | |
2432 { | |
2433 int j = font_sort_order[i]; | |
2434 cmp = x->numeric[j] - y->numeric[j]; | |
2435 } | |
2436 | |
2437 if (cmp == 0) | |
2438 { | |
2439 /* Everything else being equal, we prefer fonts with an | |
2440 y-resolution closer to that of the frame. */ | |
2441 int resy = FRAME_X_DISPLAY_INFO (font_frame)->resy; | |
2442 int x_resy = x->numeric[XLFD_RESY]; | |
2443 int y_resy = y->numeric[XLFD_RESY]; | |
2444 cmp = abs (resy - x_resy) - abs (resy - y_resy); | |
2445 } | |
2446 } | |
2447 | |
2448 return cmp; | |
2449 } | |
2450 | |
2451 | |
2452 /* 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
|
2453 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
|
2454 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
|
2455 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
|
2456 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
|
2457 Value is the number of fonts found. */ |
24995 | 2458 |
2459 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2460 font_list (f, pattern, family, registry, fonts) |
24995 | 2461 struct frame *f; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2462 Lisp_Object pattern, family, registry; |
24995 | 2463 struct font_name **fonts; |
2464 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2465 char *pattern_str, *family_str, *registry_str; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2466 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2467 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2468 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2469 family_str = (NILP (family) ? "*" : (char *) XSTRING (family)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2470 registry_str = (NILP (registry) ? "*" : (char *) XSTRING (registry)->data); |
24995 | 2471 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2472 pattern_str = (char *) alloca (strlen (family_str) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2473 + strlen (registry_str) |
24995 | 2474 + 10); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2475 if (index (family_str, '-')) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2476 sprintf (pattern_str, "-%s-*-%s", family_str, registry_str); |
24995 | 2477 else |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2478 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
|
2479 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2480 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2481 pattern_str = (char *) XSTRING (pattern)->data; |
24995 | 2482 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2483 return sorted_font_list (f, pattern_str, cmp_font_names, fonts); |
24995 | 2484 } |
2485 | |
2486 | |
2487 /* 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
|
2488 x-family-fonts and x-font-family-list to remove duplicate font |
24995 | 2489 entries. */ |
2490 | |
2491 static void | |
2492 remove_duplicates (list) | |
2493 Lisp_Object list; | |
2494 { | |
2495 Lisp_Object tail = list; | |
2496 | |
2497 while (!NILP (tail) && !NILP (XCDR (tail))) | |
2498 { | |
2499 Lisp_Object next = XCDR (tail); | |
2500 if (!NILP (Fequal (XCAR (next), XCAR (tail)))) | |
2501 XCDR (tail) = XCDR (next); | |
2502 else | |
2503 tail = XCDR (tail); | |
2504 } | |
2505 } | |
2506 | |
2507 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
2508 DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0, |
24995 | 2509 "Return a list of available fonts of family FAMILY on FRAME.\n\ |
2510 If FAMILY is omitted or nil, list all families.\n\ | |
2511 Otherwise, FAMILY must be a string, possibly containing wildcards\n\ | |
2512 `?' and `*'.\n\ | |
2513 If FRAME is omitted or nil, use the selected frame.\n\ | |
2514 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT\n\ | |
25270 | 2515 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].\n\ |
24995 | 2516 FAMILY is the font family name. POINT-SIZE is the size of the\n\ |
2517 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the\n\ | |
2518 width, weight and slant of the font. These symbols are the same as for\n\ | |
2519 face attributes. FIXED-P is non-nil if the font is fixed-pitch.\n\ | |
25270 | 2520 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string\n\ |
2521 giving the registry and encoding of the font.\n\ | |
24995 | 2522 The result list is sorted according to the current setting of\n\ |
2523 the face font sort order.") | |
2524 (family, frame) | |
2525 Lisp_Object family, frame; | |
2526 { | |
2527 struct frame *f = check_x_frame (frame); | |
2528 struct font_name *fonts; | |
2529 int i, nfonts; | |
2530 Lisp_Object result; | |
2531 struct gcpro gcpro1; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2532 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2533 if (!NILP (family)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2534 CHECK_STRING (family, 1); |
24995 | 2535 |
2536 result = Qnil; | |
2537 GCPRO1 (result); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2538 nfonts = font_list (f, Qnil, family, Qnil, &fonts); |
24995 | 2539 for (i = nfonts - 1; i >= 0; --i) |
2540 { | |
25270 | 2541 Lisp_Object v = Fmake_vector (make_number (8), Qnil); |
2542 char *tem; | |
24995 | 2543 |
2544 #define ASET(VECTOR, IDX, VAL) (XVECTOR (VECTOR)->contents[IDX] = (VAL)) | |
2545 | |
2546 ASET (v, 0, build_string (fonts[i].fields[XLFD_FAMILY])); | |
2547 ASET (v, 1, xlfd_symbolic_swidth (fonts + i)); | |
2548 ASET (v, 2, make_number (xlfd_point_size (f, fonts + i))); | |
2549 ASET (v, 3, xlfd_symbolic_weight (fonts + i)); | |
2550 ASET (v, 4, xlfd_symbolic_slant (fonts + i)); | |
2551 ASET (v, 5, xlfd_fixed_p (fonts + i) ? Qt : Qnil); | |
25270 | 2552 tem = build_font_name (fonts + i); |
2553 ASET (v, 6, build_string (tem)); | |
2554 sprintf (tem, "%s-%s", fonts[i].fields[XLFD_REGISTRY], | |
2555 fonts[i].fields[XLFD_ENCODING]); | |
2556 ASET (v, 7, build_string (tem)); | |
2557 xfree (tem); | |
2558 | |
24995 | 2559 result = Fcons (v, result); |
2560 | |
2561 #undef ASET | |
2562 } | |
2563 | |
2564 remove_duplicates (result); | |
2565 free_font_names (fonts, nfonts); | |
2566 UNGCPRO; | |
2567 return result; | |
2568 } | |
2569 | |
2570 | |
2571 DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list, | |
2572 0, 1, 0, | |
2573 "Return a list of available font families on FRAME.\n\ | |
2574 If FRAME is omitted or nil, use the selected frame.\n\ | |
2575 Value is a list of conses (FAMILY . FIXED-P) where FAMILY\n\ | |
2576 is a font family, and FIXED-P is non-nil if fonts of that family\n\ | |
2577 are fixed-pitch.") | |
2578 (frame) | |
2579 Lisp_Object frame; | |
2580 { | |
2581 struct frame *f = check_x_frame (frame); | |
2582 int nfonts, i; | |
2583 struct font_name *fonts; | |
2584 Lisp_Object result; | |
2585 struct gcpro gcpro1; | |
25270 | 2586 int count = specpdl_ptr - specpdl; |
2587 int limit; | |
2588 | |
2589 /* Let's consider all fonts. Increase the limit for matching | |
2590 fonts until we have them all. */ | |
2591 for (limit = 500;;) | |
2592 { | |
2593 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
|
2594 nfonts = font_list (f, Qnil, Qnil, Qnil, &fonts); |
25270 | 2595 |
2596 if (nfonts == limit) | |
2597 { | |
2598 free_font_names (fonts, nfonts); | |
2599 limit *= 2; | |
2600 } | |
2601 else | |
2602 break; | |
2603 } | |
24995 | 2604 |
2605 result = Qnil; | |
2606 GCPRO1 (result); | |
2607 for (i = nfonts - 1; i >= 0; --i) | |
2608 result = Fcons (Fcons (build_string (fonts[i].fields[XLFD_FAMILY]), | |
2609 xlfd_fixed_p (fonts + i) ? Qt : Qnil), | |
2610 result); | |
2611 | |
2612 remove_duplicates (result); | |
2613 free_font_names (fonts, nfonts); | |
2614 UNGCPRO; | |
25270 | 2615 return unbind_to (count, result); |
24995 | 2616 } |
2617 | |
2618 | |
2619 DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0, | |
2620 "Return a list of the names of available fonts matching PATTERN.\n\ | |
2621 If optional arguments FACE and FRAME are specified, return only fonts\n\ | |
2622 the same size as FACE on FRAME.\n\ | |
2623 PATTERN is a string, perhaps with wildcard characters;\n\ | |
2624 the * character matches any substring, and\n\ | |
2625 the ? character matches any single character.\n\ | |
2626 PATTERN is case-insensitive.\n\ | |
2627 FACE is a face name--a symbol.\n\ | |
2628 \n\ | |
2629 The return value is a list of strings, suitable as arguments to\n\ | |
2630 set-face-font.\n\ | |
2631 \n\ | |
2632 Fonts Emacs can't use may or may not be excluded\n\ | |
2633 even if they match PATTERN and FACE.\n\ | |
2634 The optional fourth argument MAXIMUM sets a limit on how many\n\ | |
2635 fonts to match. The first MAXIMUM fonts are reported.\n\ | |
2636 The optional fifth argument WIDTH, if specified, is a number of columns\n\ | |
2637 occupied by a character of a font. In that case, return only fonts\n\ | |
2638 the WIDTH times as wide as FACE on FRAME.") | |
2639 (pattern, face, frame, maximum, width) | |
2640 Lisp_Object pattern, face, frame, maximum, width; | |
2641 { | |
2642 struct frame *f; | |
2643 int size; | |
2644 int maxnames; | |
2645 | |
2646 check_x (); | |
2647 CHECK_STRING (pattern, 0); | |
2648 | |
2649 if (NILP (maximum)) | |
2650 maxnames = 2000; | |
2651 else | |
2652 { | |
2653 CHECK_NATNUM (maximum, 0); | |
2654 maxnames = XINT (maximum); | |
2655 } | |
2656 | |
2657 if (!NILP (width)) | |
2658 CHECK_NUMBER (width, 4); | |
2659 | |
2660 /* We can't simply call check_x_frame because this function may be | |
2661 called before any frame is created. */ | |
2662 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
|
2663 if (!FRAME_WINDOW_P (f)) |
24995 | 2664 { |
2665 /* Perhaps we have not yet created any frame. */ | |
2666 f = NULL; | |
2667 face = Qnil; | |
2668 } | |
2669 | |
2670 /* Determine the width standard for comparison with the fonts we find. */ | |
2671 | |
2672 if (NILP (face)) | |
2673 size = 0; | |
2674 else | |
2675 { | |
2676 /* This is of limited utility since it works with character | |
2677 widths. Keep it for compatibility. --gerd. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2678 int face_id = lookup_named_face (f, face, 0); |
24995 | 2679 struct face *face = FACE_FROM_ID (f, face_id); |
2680 | |
2681 if (face->font) | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2682 size = FONT_WIDTH (face->font); |
24995 | 2683 else |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2684 size = FONT_WIDTH (FRAME_FONT (f)); |
24995 | 2685 |
2686 if (!NILP (width)) | |
2687 size *= XINT (width); | |
2688 } | |
2689 | |
2690 { | |
2691 Lisp_Object args[2]; | |
2692 | |
2693 args[0] = x_list_fonts (f, pattern, size, maxnames); | |
2694 if (f == NULL) | |
2695 /* We don't have to check fontsets. */ | |
2696 return args[0]; | |
2697 args[1] = list_fontsets (f, pattern, size); | |
2698 return Fnconc (2, args); | |
2699 } | |
2700 } | |
2701 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2702 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 2703 |
2704 | |
2705 | |
2706 /*********************************************************************** | |
2707 Lisp Faces | |
2708 ***********************************************************************/ | |
2709 | |
2710 /* Access face attributes of face FACE, a Lisp vector. */ | |
2711 | |
2712 #define LFACE_FAMILY(LFACE) \ | |
2713 XVECTOR (LFACE)->contents[LFACE_FAMILY_INDEX] | |
2714 #define LFACE_HEIGHT(LFACE) \ | |
2715 XVECTOR (LFACE)->contents[LFACE_HEIGHT_INDEX] | |
2716 #define LFACE_WEIGHT(LFACE) \ | |
2717 XVECTOR (LFACE)->contents[LFACE_WEIGHT_INDEX] | |
2718 #define LFACE_SLANT(LFACE) \ | |
2719 XVECTOR (LFACE)->contents[LFACE_SLANT_INDEX] | |
2720 #define LFACE_UNDERLINE(LFACE) \ | |
2721 XVECTOR (LFACE)->contents[LFACE_UNDERLINE_INDEX] | |
2722 #define LFACE_INVERSE(LFACE) \ | |
2723 XVECTOR (LFACE)->contents[LFACE_INVERSE_INDEX] | |
2724 #define LFACE_FOREGROUND(LFACE) \ | |
2725 XVECTOR (LFACE)->contents[LFACE_FOREGROUND_INDEX] | |
2726 #define LFACE_BACKGROUND(LFACE) \ | |
2727 XVECTOR (LFACE)->contents[LFACE_BACKGROUND_INDEX] | |
2728 #define LFACE_STIPPLE(LFACE) \ | |
2729 XVECTOR (LFACE)->contents[LFACE_STIPPLE_INDEX] | |
2730 #define LFACE_SWIDTH(LFACE) \ | |
2731 XVECTOR (LFACE)->contents[LFACE_SWIDTH_INDEX] | |
2732 #define LFACE_OVERLINE(LFACE) \ | |
2733 XVECTOR (LFACE)->contents[LFACE_OVERLINE_INDEX] | |
2734 #define LFACE_STRIKE_THROUGH(LFACE) \ | |
2735 XVECTOR (LFACE)->contents[LFACE_STRIKE_THROUGH_INDEX] | |
2736 #define LFACE_BOX(LFACE) \ | |
2737 XVECTOR (LFACE)->contents[LFACE_BOX_INDEX] | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2738 #define LFACE_FONT(LFACE) \ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2739 XVECTOR (LFACE)->contents[LFACE_FONT_INDEX] |
24995 | 2740 |
2741 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size | |
2742 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */ | |
2743 | |
2744 #define LFACEP(LFACE) \ | |
2745 (VECTORP (LFACE) \ | |
2746 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \ | |
2747 && EQ (XVECTOR (LFACE)->contents[0], Qface)) | |
2748 | |
2749 | |
2750 #if GLYPH_DEBUG | |
2751 | |
2752 /* Check consistency of Lisp face attribute vector ATTRS. */ | |
2753 | |
2754 static void | |
2755 check_lface_attrs (attrs) | |
2756 Lisp_Object *attrs; | |
2757 { | |
2758 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX]) | |
2759 || STRINGP (attrs[LFACE_FAMILY_INDEX])); | |
2760 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX]) | |
2761 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX])); | |
2762 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX]) | |
2763 || INTEGERP (attrs[LFACE_HEIGHT_INDEX])); | |
2764 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX]) | |
2765 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX])); | |
2766 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX]) | |
2767 || SYMBOLP (attrs[LFACE_SLANT_INDEX])); | |
2768 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX]) | |
2769 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX]) | |
2770 || STRINGP (attrs[LFACE_UNDERLINE_INDEX])); | |
2771 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX]) | |
2772 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX]) | |
2773 || STRINGP (attrs[LFACE_OVERLINE_INDEX])); | |
2774 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2775 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX]) | |
2776 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX])); | |
2777 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX]) | |
2778 || SYMBOLP (attrs[LFACE_BOX_INDEX]) | |
2779 || STRINGP (attrs[LFACE_BOX_INDEX]) | |
2780 || INTEGERP (attrs[LFACE_BOX_INDEX]) | |
2781 || CONSP (attrs[LFACE_BOX_INDEX])); | |
2782 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX]) | |
2783 || SYMBOLP (attrs[LFACE_INVERSE_INDEX])); | |
2784 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX]) | |
2785 || STRINGP (attrs[LFACE_FOREGROUND_INDEX])); | |
2786 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX]) | |
2787 || STRINGP (attrs[LFACE_BACKGROUND_INDEX])); | |
2788 #ifdef HAVE_WINDOW_SYSTEM | |
2789 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX]) | |
2790 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX]) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
2791 || !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
|
2792 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
|
2793 || NILP (attrs[LFACE_FONT_INDEX]) |
2f636fd2f714
(check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
Gerd Moellmann <gerd@gnu.org>
parents:
28230
diff
changeset
|
2794 || STRINGP (attrs[LFACE_FONT_INDEX])); |
24995 | 2795 #endif |
2796 } | |
2797 | |
2798 | |
2799 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */ | |
2800 | |
2801 static void | |
2802 check_lface (lface) | |
2803 Lisp_Object lface; | |
2804 { | |
2805 if (!NILP (lface)) | |
2806 { | |
2807 xassert (LFACEP (lface)); | |
2808 check_lface_attrs (XVECTOR (lface)->contents); | |
2809 } | |
2810 } | |
2811 | |
2812 #else /* GLYPH_DEBUG == 0 */ | |
2813 | |
2814 #define check_lface_attrs(attrs) (void) 0 | |
2815 #define check_lface(lface) (void) 0 | |
2816 | |
2817 #endif /* GLYPH_DEBUG == 0 */ | |
2818 | |
2819 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2820 /* 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
|
2821 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
|
2822 return that face's name. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2823 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2824 static Lisp_Object |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2825 resolve_face_name (face_name) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2826 Lisp_Object face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2827 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2828 Lisp_Object aliased; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2829 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2830 if (STRINGP (face_name)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2831 face_name = intern (XSTRING (face_name)->data); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2832 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2833 for (;;) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2834 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2835 aliased = Fget (face_name, Qface_alias); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2836 if (NILP (aliased)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2837 break; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2838 else |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2839 face_name = aliased; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2840 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2841 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2842 return face_name; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2843 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2844 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2845 |
24995 | 2846 /* Return the face definition of FACE_NAME on frame F. F null means |
2847 return the global definition. FACE_NAME may be a string or a | |
2848 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
|
2849 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
|
2850 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
|
2851 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
|
2852 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
|
2853 name. */ |
24995 | 2854 |
2855 static INLINE Lisp_Object | |
2856 lface_from_face_name (f, face_name, signal_p) | |
2857 struct frame *f; | |
2858 Lisp_Object face_name; | |
2859 int signal_p; | |
2860 { | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2861 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2862 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
2863 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
|
2864 |
24995 | 2865 if (f) |
2866 lface = assq_no_quit (face_name, f->face_alist); | |
2867 else | |
2868 lface = assq_no_quit (face_name, Vface_new_frame_defaults); | |
2869 | |
2870 if (CONSP (lface)) | |
2871 lface = XCDR (lface); | |
2872 else if (signal_p) | |
2873 signal_error ("Invalid face", face_name); | |
2874 | |
2875 check_lface (lface); | |
2876 return lface; | |
2877 } | |
2878 | |
2879 | |
2880 /* Get face attributes of face FACE_NAME from frame-local faces on | |
2881 frame F. Store the resulting attributes in ATTRS which must point | |
2882 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P | |
2883 is non-zero, signal an error if FACE_NAME does not name a face. | |
2884 Otherwise, value is zero if FACE_NAME is not a face. */ | |
2885 | |
2886 static INLINE int | |
2887 get_lface_attributes (f, face_name, attrs, signal_p) | |
2888 struct frame *f; | |
2889 Lisp_Object face_name; | |
2890 Lisp_Object *attrs; | |
2891 int signal_p; | |
2892 { | |
2893 Lisp_Object lface; | |
2894 int success_p; | |
2895 | |
2896 lface = lface_from_face_name (f, face_name, signal_p); | |
2897 if (!NILP (lface)) | |
2898 { | |
2899 bcopy (XVECTOR (lface)->contents, attrs, | |
2900 LFACE_VECTOR_SIZE * sizeof *attrs); | |
2901 success_p = 1; | |
2902 } | |
2903 else | |
2904 success_p = 0; | |
2905 | |
2906 return success_p; | |
2907 } | |
2908 | |
2909 | |
2910 /* Non-zero if all attributes in face attribute vector ATTRS are | |
2911 specified, i.e. are non-nil. */ | |
2912 | |
2913 static int | |
2914 lface_fully_specified_p (attrs) | |
2915 Lisp_Object *attrs; | |
2916 { | |
2917 int i; | |
2918 | |
2919 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
|
2920 if (UNSPECIFIEDP (attrs[i]) && i != LFACE_FONT_INDEX) |
24995 | 2921 break; |
2922 | |
2923 return i == LFACE_VECTOR_SIZE; | |
2924 } | |
2925 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
2926 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 2927 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2928 /* 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
|
2929 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
|
2930 unspecified attributes of LFACE. The exception is `font' |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2931 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
|
2932 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2933 If FONTNAME is not available on frame F, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2934 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
|
2935 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
|
2936 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
|
2937 in LFACE and return 1. |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2938 Otherwise, return 1. */ |
24995 | 2939 |
2940 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2941 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
|
2942 struct frame *f; |
24995 | 2943 Lisp_Object lface; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2944 Lisp_Object fontname; |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2945 int force_p, may_fail_p; |
24995 | 2946 { |
2947 struct font_name font; | |
2948 char *buffer; | |
2949 int pt; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2950 int have_xlfd_p; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2951 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2952 char *font_name = XSTRING (fontname)->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2953 struct font_info *font_info; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2954 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2955 /* If FONTNAME is 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
|
2956 fontset = fs_query_fontset (fontname, 0); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2957 if (fontset >= 0) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2958 font_name = XSTRING (fontset_ascii (fontset))->data; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2959 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2960 /* 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
|
2961 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
|
2962 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
|
2963 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
|
2964 later. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2965 BLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2966 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
|
2967 UNBLOCK_INPUT; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2968 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2969 if (!font_info) |
26594
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2970 { |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2971 if (may_fail_p) |
f24bdf26ad39
(set_lface_from_font_name): New parameter may_fail_p.
Gerd Moellmann <gerd@gnu.org>
parents:
26574
diff
changeset
|
2972 return 0; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2973 abort (); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2974 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2975 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2976 font.name = STRDUPA (font_info->full_name); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2977 have_xlfd_p = split_font_name (f, &font, 1); |
24995 | 2978 |
2979 /* 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
|
2980 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
|
2981 name conforming to XLFD, set normal values. */ |
24995 | 2982 |
2983 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface))) | |
2984 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2985 Lisp_Object val; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2986 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2987 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2988 buffer = (char *) alloca (strlen (font.fields[XLFD_FAMILY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2989 + strlen (font.fields[XLFD_FOUNDRY]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2990 + 2); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2991 sprintf (buffer, "%s-%s", font.fields[XLFD_FOUNDRY], |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2992 font.fields[XLFD_FAMILY]); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2993 val = build_string (buffer); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2994 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2995 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2996 val = build_string ("*"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
2997 LFACE_FAMILY (lface) = val; |
24995 | 2998 } |
2999 | |
3000 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface))) | |
3001 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3002 if (have_xlfd_p) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3003 pt = xlfd_point_size (f, &font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3004 else |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3005 pt = pixel_point_size (f, font_info->height * 10); |
24995 | 3006 xassert (pt > 0); |
3007 LFACE_HEIGHT (lface) = make_number (pt); | |
3008 } | |
3009 | |
3010 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3011 LFACE_SWIDTH (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3012 = have_xlfd_p ? xlfd_symbolic_swidth (&font) : Qnormal; |
24995 | 3013 |
3014 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3015 LFACE_WEIGHT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3016 = have_xlfd_p ? xlfd_symbolic_weight (&font) : Qnormal; |
24995 | 3017 |
3018 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3019 LFACE_SLANT (lface) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3020 = have_xlfd_p ? xlfd_symbolic_slant (&font) : Qnormal; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3021 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3022 LFACE_FONT (lface) = fontname; |
24995 | 3023 |
3024 return 1; | |
3025 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3026 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3027 |
3028 | |
3029 /* Merge two Lisp face attribute vectors FROM and TO and store the | |
3030 resulting attributes in TO. Every non-nil attribute of FROM | |
3031 overrides the corresponding attribute of TO. */ | |
3032 | |
3033 static INLINE void | |
3034 merge_face_vectors (from, to) | |
3035 Lisp_Object *from, *to; | |
3036 { | |
3037 int i; | |
3038 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3039 if (!UNSPECIFIEDP (from[i])) | |
3040 to[i] = from[i]; | |
3041 } | |
3042 | |
3043 | |
3044 /* Given a Lisp face attribute vector TO and a Lisp object PROP that | |
3045 is a face property, determine the resulting face attributes on | |
3046 frame F, and store them in TO. PROP may be a single face | |
3047 specification or a list of such specifications. Each face | |
3048 specification can be | |
3049 | |
3050 1. A symbol or string naming a Lisp face. | |
3051 | |
3052 2. A property list of the form (KEYWORD VALUE ...) where each | |
3053 KEYWORD is a face attribute name, and value is an appropriate value | |
3054 for that attribute. | |
3055 | |
3056 3. Conses or the form (FOREGROUND-COLOR . COLOR) or | |
3057 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is | |
3058 for compatibility with 20.2. | |
3059 | |
3060 Face specifications earlier in lists take precedence over later | |
3061 specifications. */ | |
3062 | |
3063 static void | |
3064 merge_face_vector_with_property (f, to, prop) | |
3065 struct frame *f; | |
3066 Lisp_Object *to; | |
3067 Lisp_Object prop; | |
3068 { | |
3069 if (CONSP (prop)) | |
3070 { | |
3071 Lisp_Object first = XCAR (prop); | |
3072 | |
3073 if (EQ (first, Qforeground_color) | |
3074 || EQ (first, Qbackground_color)) | |
3075 { | |
3076 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR | |
3077 . COLOR). COLOR must be a string. */ | |
3078 Lisp_Object color_name = XCDR (prop); | |
3079 Lisp_Object color = first; | |
3080 | |
3081 if (STRINGP (color_name)) | |
3082 { | |
3083 if (EQ (color, Qforeground_color)) | |
3084 to[LFACE_FOREGROUND_INDEX] = color_name; | |
3085 else | |
3086 to[LFACE_BACKGROUND_INDEX] = color_name; | |
3087 } | |
3088 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3089 add_to_log ("Invalid face color", color_name, Qnil); |
24995 | 3090 } |
3091 else if (SYMBOLP (first) | |
3092 && *XSYMBOL (first)->name->data == ':') | |
3093 { | |
3094 /* Assume this is the property list form. */ | |
3095 while (CONSP (prop) && CONSP (XCDR (prop))) | |
3096 { | |
3097 Lisp_Object keyword = XCAR (prop); | |
3098 Lisp_Object value = XCAR (XCDR (prop)); | |
3099 | |
3100 if (EQ (keyword, QCfamily)) | |
3101 { | |
3102 if (STRINGP (value)) | |
3103 to[LFACE_FAMILY_INDEX] = value; | |
3104 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3105 add_to_log ("Illegal face font family", value, Qnil); |
24995 | 3106 } |
3107 else if (EQ (keyword, QCheight)) | |
3108 { | |
3109 if (INTEGERP (value)) | |
3110 to[LFACE_HEIGHT_INDEX] = value; | |
3111 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3112 add_to_log ("Illegal face font height", value, Qnil); |
24995 | 3113 } |
3114 else if (EQ (keyword, QCweight)) | |
3115 { | |
3116 if (SYMBOLP (value) | |
3117 && face_numeric_weight (value) >= 0) | |
3118 to[LFACE_WEIGHT_INDEX] = value; | |
3119 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3120 add_to_log ("Illegal face weight", value, Qnil); |
24995 | 3121 } |
3122 else if (EQ (keyword, QCslant)) | |
3123 { | |
3124 if (SYMBOLP (value) | |
3125 && face_numeric_slant (value) >= 0) | |
3126 to[LFACE_SLANT_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 slant", value, Qnil); |
24995 | 3129 } |
3130 else if (EQ (keyword, QCunderline)) | |
3131 { | |
3132 if (EQ (value, Qt) | |
3133 || NILP (value) | |
3134 || STRINGP (value)) | |
3135 to[LFACE_UNDERLINE_INDEX] = value; | |
3136 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3137 add_to_log ("Illegal face underline", value, Qnil); |
24995 | 3138 } |
3139 else if (EQ (keyword, QCoverline)) | |
3140 { | |
3141 if (EQ (value, Qt) | |
3142 || NILP (value) | |
3143 || STRINGP (value)) | |
3144 to[LFACE_OVERLINE_INDEX] = value; | |
3145 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3146 add_to_log ("Illegal face overline", value, Qnil); |
24995 | 3147 } |
3148 else if (EQ (keyword, QCstrike_through)) | |
3149 { | |
3150 if (EQ (value, Qt) | |
3151 || NILP (value) | |
3152 || STRINGP (value)) | |
3153 to[LFACE_STRIKE_THROUGH_INDEX] = value; | |
3154 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3155 add_to_log ("Illegal face strike-through", value, Qnil); |
24995 | 3156 } |
3157 else if (EQ (keyword, QCbox)) | |
3158 { | |
3159 if (EQ (value, Qt)) | |
3160 value = make_number (1); | |
3161 if (INTEGERP (value) | |
3162 || STRINGP (value) | |
3163 || CONSP (value) | |
3164 || NILP (value)) | |
3165 to[LFACE_BOX_INDEX] = value; | |
3166 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3167 add_to_log ("Illegal face box", value, Qnil); |
24995 | 3168 } |
3169 else if (EQ (keyword, QCinverse_video) | |
3170 || EQ (keyword, QCreverse_video)) | |
3171 { | |
3172 if (EQ (value, Qt) || NILP (value)) | |
3173 to[LFACE_INVERSE_INDEX] = value; | |
3174 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3175 add_to_log ("Illegal face inverse-video", value, Qnil); |
24995 | 3176 } |
3177 else if (EQ (keyword, QCforeground)) | |
3178 { | |
3179 if (STRINGP (value)) | |
3180 to[LFACE_FOREGROUND_INDEX] = value; | |
3181 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3182 add_to_log ("Illegal face foreground", value, Qnil); |
24995 | 3183 } |
3184 else if (EQ (keyword, QCbackground)) | |
3185 { | |
3186 if (STRINGP (value)) | |
3187 to[LFACE_BACKGROUND_INDEX] = value; | |
3188 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3189 add_to_log ("Illegal face background", value, Qnil); |
24995 | 3190 } |
3191 else if (EQ (keyword, QCstipple)) | |
3192 { | |
3193 #ifdef HAVE_X_WINDOWS | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3194 Lisp_Object pixmap_p = Fbitmap_spec_p (value); |
24995 | 3195 if (!NILP (pixmap_p)) |
3196 to[LFACE_STIPPLE_INDEX] = value; | |
3197 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3198 add_to_log ("Illegal face stipple", value, Qnil); |
24995 | 3199 #endif |
3200 } | |
3201 else if (EQ (keyword, QCwidth)) | |
3202 { | |
3203 if (SYMBOLP (value) | |
3204 && face_numeric_swidth (value) >= 0) | |
3205 to[LFACE_SWIDTH_INDEX] = value; | |
3206 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3207 add_to_log ("Illegal face width", value, Qnil); |
24995 | 3208 } |
3209 else | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3210 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
|
3211 keyword, Qnil); |
24995 | 3212 |
3213 prop = XCDR (XCDR (prop)); | |
3214 } | |
3215 } | |
3216 else | |
3217 { | |
3218 /* This is a list of face specs. Specifications at the | |
3219 beginning of the list take precedence over later | |
3220 specifications, so we have to merge starting with the | |
3221 last specification. */ | |
3222 Lisp_Object next = XCDR (prop); | |
3223 if (!NILP (next)) | |
3224 merge_face_vector_with_property (f, to, next); | |
3225 merge_face_vector_with_property (f, to, first); | |
3226 } | |
3227 } | |
3228 else | |
3229 { | |
3230 /* PROP ought to be a face name. */ | |
3231 Lisp_Object lface = lface_from_face_name (f, prop, 0); | |
3232 if (NILP (lface)) | |
25799
1c370ec939da
(load_pixmap): Call add_to_log without frame parameter.
Gerd Moellmann <gerd@gnu.org>
parents:
25678
diff
changeset
|
3233 add_to_log ("Invalid face text property value: %s", prop, Qnil); |
24995 | 3234 else |
3235 merge_face_vectors (XVECTOR (lface)->contents, to); | |
3236 } | |
3237 } | |
3238 | |
3239 | |
3240 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face, | |
3241 Sinternal_make_lisp_face, 1, 2, 0, | |
3242 "Make FACE, a symbol, a Lisp face with all attributes nil.\n\ | |
3243 If FACE was not known as a face before, create a new one.\n\ | |
3244 If optional argument FRAME is specified, make a frame-local face\n\ | |
3245 for that frame. Otherwise operate on the global face definition.\n\ | |
3246 Value is a vector of face attributes.") | |
3247 (face, frame) | |
3248 Lisp_Object face, frame; | |
3249 { | |
3250 Lisp_Object global_lface, lface; | |
3251 struct frame *f; | |
3252 int i; | |
3253 | |
3254 CHECK_SYMBOL (face, 0); | |
3255 global_lface = lface_from_face_name (NULL, face, 0); | |
3256 | |
3257 if (!NILP (frame)) | |
3258 { | |
3259 CHECK_LIVE_FRAME (frame, 1); | |
3260 f = XFRAME (frame); | |
3261 lface = lface_from_face_name (f, face, 0); | |
3262 } | |
3263 else | |
3264 f = NULL, lface = Qnil; | |
3265 | |
3266 /* Add a global definition if there is none. */ | |
3267 if (NILP (global_lface)) | |
3268 { | |
3269 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3270 Qunspecified); | |
3271 XVECTOR (global_lface)->contents[0] = Qface; | |
3272 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface), | |
3273 Vface_new_frame_defaults); | |
3274 | |
3275 /* Assign the new Lisp face a unique ID. The mapping from Lisp | |
3276 face id to Lisp face is given by the vector lface_id_to_name. | |
3277 The mapping from Lisp face to Lisp face id is given by the | |
3278 property `face' of the Lisp face name. */ | |
3279 if (next_lface_id == lface_id_to_name_size) | |
3280 { | |
3281 int new_size = max (50, 2 * lface_id_to_name_size); | |
3282 int sz = new_size * sizeof *lface_id_to_name; | |
3283 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz); | |
3284 lface_id_to_name_size = new_size; | |
3285 } | |
3286 | |
3287 lface_id_to_name[next_lface_id] = face; | |
3288 Fput (face, Qface, make_number (next_lface_id)); | |
3289 ++next_lface_id; | |
3290 } | |
3291 else if (f == NULL) | |
3292 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3293 XVECTOR (global_lface)->contents[i] = Qunspecified; | |
3294 | |
3295 /* Add a frame-local definition. */ | |
3296 if (f) | |
3297 { | |
3298 if (NILP (lface)) | |
3299 { | |
3300 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE), | |
3301 Qunspecified); | |
3302 XVECTOR (lface)->contents[0] = Qface; | |
3303 f->face_alist = Fcons (Fcons (face, lface), f->face_alist); | |
3304 } | |
3305 else | |
3306 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
3307 XVECTOR (lface)->contents[i] = Qunspecified; | |
3308 } | |
3309 else | |
3310 lface = global_lface; | |
3311 | |
3312 xassert (LFACEP (lface)); | |
3313 check_lface (lface); | |
3314 return lface; | |
3315 } | |
3316 | |
3317 | |
3318 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p, | |
3319 Sinternal_lisp_face_p, 1, 2, 0, | |
3320 "Return non-nil if FACE names a face.\n\ | |
3321 If optional second parameter FRAME is non-nil, check for the\n\ | |
3322 existence of a frame-local face with name FACE on that frame.\n\ | |
3323 Otherwise check for the existence of a global face.") | |
3324 (face, frame) | |
3325 Lisp_Object face, frame; | |
3326 { | |
3327 Lisp_Object lface; | |
3328 | |
3329 if (!NILP (frame)) | |
3330 { | |
3331 CHECK_LIVE_FRAME (frame, 1); | |
3332 lface = lface_from_face_name (XFRAME (frame), face, 0); | |
3333 } | |
3334 else | |
3335 lface = lface_from_face_name (NULL, face, 0); | |
3336 | |
3337 return lface; | |
3338 } | |
3339 | |
3340 | |
3341 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face, | |
3342 Sinternal_copy_lisp_face, 4, 4, 0, | |
3343 "Copy face FROM to TO.\n\ | |
3344 If FRAME it t, copy the global face definition of FROM to the\n\ | |
3345 global face definition of TO. Otherwise, copy the frame-local\n\ | |
3346 definition of FROM on FRAME to the frame-local definition of TO\n\ | |
3347 on NEW-FRAME, or FRAME if NEW-FRAME is nil.\n\ | |
3348 \n\ | |
3349 Value is TO.") | |
3350 (from, to, frame, new_frame) | |
3351 Lisp_Object from, to, frame, new_frame; | |
3352 { | |
3353 Lisp_Object lface, copy; | |
3354 | |
3355 CHECK_SYMBOL (from, 0); | |
3356 CHECK_SYMBOL (to, 1); | |
3357 if (NILP (new_frame)) | |
3358 new_frame = frame; | |
3359 | |
3360 if (EQ (frame, Qt)) | |
3361 { | |
3362 /* Copy global definition of FROM. We don't make copies of | |
3363 strings etc. because 20.2 didn't do it either. */ | |
3364 lface = lface_from_face_name (NULL, from, 1); | |
3365 copy = Finternal_make_lisp_face (to, Qnil); | |
3366 } | |
3367 else | |
3368 { | |
3369 /* Copy frame-local definition of FROM. */ | |
3370 CHECK_LIVE_FRAME (frame, 2); | |
3371 CHECK_LIVE_FRAME (new_frame, 3); | |
3372 lface = lface_from_face_name (XFRAME (frame), from, 1); | |
3373 copy = Finternal_make_lisp_face (to, new_frame); | |
3374 } | |
3375 | |
3376 bcopy (XVECTOR (lface)->contents, XVECTOR (copy)->contents, | |
3377 LFACE_VECTOR_SIZE * sizeof (Lisp_Object)); | |
3378 | |
3379 return to; | |
3380 } | |
3381 | |
3382 | |
3383 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute, | |
3384 Sinternal_set_lisp_face_attribute, 3, 4, 0, | |
3385 "Set attribute ATTR of FACE to VALUE.\n\ | |
3386 If optional argument FRAME is given, set the face attribute of face FACE\n\ | |
3387 on that frame. If FRAME is t, set the attribute of the default for face\n\ | |
3388 FACE (for new frames). If FRAME is omitted or nil, use the selected\n\ | |
3389 frame.") | |
3390 (face, attr, value, frame) | |
3391 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
|
3392 { |
24995 | 3393 Lisp_Object lface; |
3394 Lisp_Object old_value = Qnil; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3395 /* Set 1 if ATTR is QCfont. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3396 int font_attr_p = 0; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3397 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */ |
24995 | 3398 int font_related_attr_p = 0; |
3399 | |
3400 CHECK_SYMBOL (face, 0); | |
3401 CHECK_SYMBOL (attr, 1); | |
3402 | |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3403 face = resolve_face_name (face); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3404 |
24995 | 3405 /* Set lface to the Lisp attribute vector of FACE. */ |
3406 if (EQ (frame, Qt)) | |
3407 lface = lface_from_face_name (NULL, face, 1); | |
3408 else | |
3409 { | |
3410 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3411 frame = selected_frame; |
24995 | 3412 |
3413 CHECK_LIVE_FRAME (frame, 3); | |
3414 lface = lface_from_face_name (XFRAME (frame), face, 0); | |
3415 | |
3416 /* If a frame-local face doesn't exist yet, create one. */ | |
3417 if (NILP (lface)) | |
3418 lface = Finternal_make_lisp_face (face, frame); | |
3419 } | |
3420 | |
3421 if (EQ (attr, QCfamily)) | |
3422 { | |
3423 if (!UNSPECIFIEDP (value)) | |
3424 { | |
3425 CHECK_STRING (value, 3); | |
3426 if (XSTRING (value)->size == 0) | |
3427 signal_error ("Invalid face family", value); | |
3428 } | |
3429 old_value = LFACE_FAMILY (lface); | |
3430 LFACE_FAMILY (lface) = value; | |
3431 font_related_attr_p = 1; | |
3432 } | |
3433 else if (EQ (attr, QCheight)) | |
3434 { | |
3435 if (!UNSPECIFIEDP (value)) | |
3436 { | |
3437 CHECK_NUMBER (value, 3); | |
3438 if (XINT (value) <= 0) | |
3439 signal_error ("Invalid face height", value); | |
3440 } | |
3441 old_value = LFACE_HEIGHT (lface); | |
3442 LFACE_HEIGHT (lface) = value; | |
3443 font_related_attr_p = 1; | |
3444 } | |
3445 else if (EQ (attr, QCweight)) | |
3446 { | |
3447 if (!UNSPECIFIEDP (value)) | |
3448 { | |
3449 CHECK_SYMBOL (value, 3); | |
3450 if (face_numeric_weight (value) < 0) | |
3451 signal_error ("Invalid face weight", value); | |
3452 } | |
3453 old_value = LFACE_WEIGHT (lface); | |
3454 LFACE_WEIGHT (lface) = value; | |
3455 font_related_attr_p = 1; | |
3456 } | |
3457 else if (EQ (attr, QCslant)) | |
3458 { | |
3459 if (!UNSPECIFIEDP (value)) | |
3460 { | |
3461 CHECK_SYMBOL (value, 3); | |
3462 if (face_numeric_slant (value) < 0) | |
3463 signal_error ("Invalid face slant", value); | |
3464 } | |
3465 old_value = LFACE_SLANT (lface); | |
3466 LFACE_SLANT (lface) = value; | |
3467 font_related_attr_p = 1; | |
3468 } | |
3469 else if (EQ (attr, QCunderline)) | |
3470 { | |
3471 if (!UNSPECIFIEDP (value)) | |
3472 if ((SYMBOLP (value) | |
3473 && !EQ (value, Qt) | |
3474 && !EQ (value, Qnil)) | |
3475 /* Underline color. */ | |
3476 || (STRINGP (value) | |
3477 && XSTRING (value)->size == 0)) | |
3478 signal_error ("Invalid face underline", value); | |
3479 | |
3480 old_value = LFACE_UNDERLINE (lface); | |
3481 LFACE_UNDERLINE (lface) = value; | |
3482 } | |
3483 else if (EQ (attr, QCoverline)) | |
3484 { | |
3485 if (!UNSPECIFIEDP (value)) | |
3486 if ((SYMBOLP (value) | |
3487 && !EQ (value, Qt) | |
3488 && !EQ (value, Qnil)) | |
3489 /* Overline color. */ | |
3490 || (STRINGP (value) | |
3491 && XSTRING (value)->size == 0)) | |
3492 signal_error ("Invalid face overline", value); | |
3493 | |
3494 old_value = LFACE_OVERLINE (lface); | |
3495 LFACE_OVERLINE (lface) = value; | |
3496 } | |
3497 else if (EQ (attr, QCstrike_through)) | |
3498 { | |
3499 if (!UNSPECIFIEDP (value)) | |
3500 if ((SYMBOLP (value) | |
3501 && !EQ (value, Qt) | |
3502 && !EQ (value, Qnil)) | |
3503 /* Strike-through color. */ | |
3504 || (STRINGP (value) | |
3505 && XSTRING (value)->size == 0)) | |
3506 signal_error ("Invalid face strike-through", value); | |
3507 | |
3508 old_value = LFACE_STRIKE_THROUGH (lface); | |
3509 LFACE_STRIKE_THROUGH (lface) = value; | |
3510 } | |
3511 else if (EQ (attr, QCbox)) | |
3512 { | |
3513 int valid_p; | |
3514 | |
3515 /* Allow t meaning a simple box of width 1 in foreground color | |
3516 of the face. */ | |
3517 if (EQ (value, Qt)) | |
3518 value = make_number (1); | |
3519 | |
3520 if (UNSPECIFIEDP (value)) | |
3521 valid_p = 1; | |
3522 else if (NILP (value)) | |
3523 valid_p = 1; | |
3524 else if (INTEGERP (value)) | |
3525 valid_p = XINT (value) > 0; | |
3526 else if (STRINGP (value)) | |
3527 valid_p = XSTRING (value)->size > 0; | |
3528 else if (CONSP (value)) | |
3529 { | |
3530 Lisp_Object tem; | |
3531 | |
3532 tem = value; | |
3533 while (CONSP (tem)) | |
3534 { | |
3535 Lisp_Object k, v; | |
3536 | |
3537 k = XCAR (tem); | |
3538 tem = XCDR (tem); | |
3539 if (!CONSP (tem)) | |
3540 break; | |
3541 v = XCAR (tem); | |
3542 tem = XCDR (tem); | |
3543 | |
3544 if (EQ (k, QCline_width)) | |
3545 { | |
3546 if (!INTEGERP (v) || XINT (v) <= 0) | |
3547 break; | |
3548 } | |
3549 else if (EQ (k, QCcolor)) | |
3550 { | |
3551 if (!STRINGP (v) || XSTRING (v)->size == 0) | |
3552 break; | |
3553 } | |
3554 else if (EQ (k, QCstyle)) | |
3555 { | |
3556 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button)) | |
3557 break; | |
3558 } | |
3559 else | |
3560 break; | |
3561 } | |
3562 | |
3563 valid_p = NILP (tem); | |
3564 } | |
3565 else | |
3566 valid_p = 0; | |
3567 | |
3568 if (!valid_p) | |
3569 signal_error ("Invalid face box", value); | |
3570 | |
3571 old_value = LFACE_BOX (lface); | |
3572 LFACE_BOX (lface) = value; | |
3573 } | |
3574 else if (EQ (attr, QCinverse_video) | |
3575 || EQ (attr, QCreverse_video)) | |
3576 { | |
3577 if (!UNSPECIFIEDP (value)) | |
3578 { | |
3579 CHECK_SYMBOL (value, 3); | |
3580 if (!EQ (value, Qt) && !NILP (value)) | |
3581 signal_error ("Invalid inverse-video face attribute value", value); | |
3582 } | |
3583 old_value = LFACE_INVERSE (lface); | |
3584 LFACE_INVERSE (lface) = value; | |
3585 } | |
3586 else if (EQ (attr, QCforeground)) | |
3587 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3588 if (!UNSPECIFIEDP (value)) |
24995 | 3589 { |
3590 /* Don't check for valid color names here because it depends | |
3591 on the frame (display) whether the color will be valid | |
3592 when the face is realized. */ | |
3593 CHECK_STRING (value, 3); | |
3594 if (XSTRING (value)->size == 0) | |
3595 signal_error ("Empty foreground color value", value); | |
3596 } | |
3597 old_value = LFACE_FOREGROUND (lface); | |
3598 LFACE_FOREGROUND (lface) = value; | |
3599 } | |
3600 else if (EQ (attr, QCbackground)) | |
3601 { | |
27114
4efa5e54e9a9
(Qunspecified_fg, Qunspecified_bg): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
27100
diff
changeset
|
3602 if (!UNSPECIFIEDP (value)) |
24995 | 3603 { |
3604 /* Don't check for valid color names here because it depends | |
3605 on the frame (display) whether the color will be valid | |
3606 when the face is realized. */ | |
3607 CHECK_STRING (value, 3); | |
3608 if (XSTRING (value)->size == 0) | |
3609 signal_error ("Empty background color value", value); | |
3610 } | |
3611 old_value = LFACE_BACKGROUND (lface); | |
3612 LFACE_BACKGROUND (lface) = value; | |
3613 } | |
3614 else if (EQ (attr, QCstipple)) | |
3615 { | |
3616 #ifdef HAVE_X_WINDOWS | |
3617 if (!UNSPECIFIEDP (value) | |
3618 && !NILP (value) | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
3619 && NILP (Fbitmap_spec_p (value))) |
24995 | 3620 signal_error ("Invalid stipple attribute", value); |
3621 old_value = LFACE_STIPPLE (lface); | |
3622 LFACE_STIPPLE (lface) = value; | |
3623 #endif /* HAVE_X_WINDOWS */ | |
3624 } | |
3625 else if (EQ (attr, QCwidth)) | |
3626 { | |
3627 if (!UNSPECIFIEDP (value)) | |
3628 { | |
3629 CHECK_SYMBOL (value, 3); | |
3630 if (face_numeric_swidth (value) < 0) | |
3631 signal_error ("Invalid face width", value); | |
3632 } | |
3633 old_value = LFACE_SWIDTH (lface); | |
3634 LFACE_SWIDTH (lface) = value; | |
3635 font_related_attr_p = 1; | |
3636 } | |
3637 else if (EQ (attr, QCfont)) | |
3638 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3639 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3640 /* Set font-related attributes of the Lisp face from an |
3641 XLFD font name. */ | |
3642 struct frame *f; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3643 Lisp_Object tmp; |
24995 | 3644 |
3645 CHECK_STRING (value, 3); | |
3646 if (EQ (frame, Qt)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
3647 f = SELECTED_FRAME (); |
24995 | 3648 else |
3649 f = check_x_frame (frame); | |
3650 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3651 /* 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
|
3652 a case, use the base fontset name. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3653 tmp = Fquery_fontset (value, Qnil); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3654 if (!NILP (tmp)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3655 value = tmp; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3656 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3657 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
|
3658 signal_error ("Invalid font or fontset name", value); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3659 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3660 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
|
3661 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3662 } |
3663 else if (EQ (attr, QCbold)) | |
3664 { | |
3665 old_value = LFACE_WEIGHT (lface); | |
3666 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold; | |
3667 font_related_attr_p = 1; | |
3668 } | |
3669 else if (EQ (attr, QCitalic)) | |
3670 { | |
3671 old_value = LFACE_SLANT (lface); | |
3672 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic; | |
3673 font_related_attr_p = 1; | |
3674 } | |
3675 else | |
3676 signal_error ("Invalid face attribute name", attr); | |
3677 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3678 if (font_related_attr_p |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3679 && !UNSPECIFIEDP (value)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3680 /* 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
|
3681 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
|
3682 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
|
3683 selection mechanism doesn't use it. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3684 LFACE_FONT (lface) = Qnil; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3685 |
24995 | 3686 /* Changing a named face means that all realized faces depending on |
3687 that face are invalid. Since we cannot tell which realized faces | |
3688 depend on the face, make sure they are all removed. This is done | |
3689 by incrementing face_change_count. The next call to | |
3690 init_iterator will then free realized faces. */ | |
3691 if (!EQ (frame, Qt) | |
3692 && (EQ (attr, QCfont) | |
3693 || NILP (Fequal (old_value, value)))) | |
3694 { | |
3695 ++face_change_count; | |
3696 ++windows_or_buffers_changed; | |
3697 } | |
3698 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3699 #ifdef HAVE_WINDOW_SYSTEM |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3700 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3701 if (!EQ (frame, Qt) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3702 && !UNSPECIFIEDP (value) |
24995 | 3703 && NILP (Fequal (old_value, value))) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3704 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3705 Lisp_Object param; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3706 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3707 param = Qnil; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3708 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3709 if (EQ (face, Qdefault)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3710 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3711 /* 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
|
3712 reflected in changed `font' frame parameters. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3713 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
|
3714 && lface_fully_specified_p (XVECTOR (lface)->contents)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3715 set_font_frame_param (frame, lface); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3716 else if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3717 param = Qforeground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3718 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3719 param = Qbackground_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3720 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3721 #ifndef WINDOWSNT |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3722 else if (EQ (face, Qscroll_bar)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3723 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3724 /* 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
|
3725 `scroll-bar-foreground' and `scroll-bar-background'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3726 if (EQ (attr, QCforeground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3727 param = Qscroll_bar_foreground; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3728 else if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3729 param = Qscroll_bar_background; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3730 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3731 #endif |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3732 else if (EQ (face, Qborder)) |
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 /* Changing background color of `border' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3735 `border-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3736 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3737 param = Qborder_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3738 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3739 else if (EQ (face, Qcursor)) |
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 /* Changing background color of `cursor' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3742 `cursor-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3743 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3744 param = Qcursor_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3745 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3746 else if (EQ (face, Qmouse)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3747 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3748 /* Changing background color of `mouse' sets frame parameter |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3749 `mouse-color'. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3750 if (EQ (attr, QCbackground)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3751 param = Qmouse_color; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3752 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3753 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3754 if (!NILP (param)) |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3755 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
|
3756 } |
24995 | 3757 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3758 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3759 |
3760 return face; | |
3761 } | |
3762 | |
3763 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3764 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 3765 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3766 /* 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
|
3767 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
|
3768 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
|
3769 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
|
3770 there's no matching font, signals an error. */ |
24995 | 3771 |
3772 static void | |
3773 set_font_frame_param (frame, lface) | |
3774 Lisp_Object frame, lface; | |
3775 { | |
3776 struct frame *f = XFRAME (frame); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3777 Lisp_Object font_name; |
24995 | 3778 char *font; |
3779 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3780 if (STRINGP (LFACE_FONT (lface))) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3781 font_name = LFACE_FONT (lface); |
24995 | 3782 else |
3783 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3784 /* 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
|
3785 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
|
3786 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
|
3787 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
|
3788 if (!font) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3789 error ("No font matches the specified attribute"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3790 font_name = build_string (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3791 xfree (font); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3792 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
3793 store_frame_param (f, Qfont, font_name); |
24995 | 3794 } |
3795 | |
3796 | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3797 /* 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
|
3798 has been assigned the value NEW_VALUE. */ |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3799 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3800 void |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3801 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
|
3802 struct frame *f; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3803 Lisp_Object param, new_value; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3804 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3805 Lisp_Object lface; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3806 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3807 /* 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
|
3808 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
|
3809 face-set-after-frame-defaults. */ |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3810 if (NILP (f->face_alist)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3811 return; |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3812 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3813 if (EQ (param, Qforeground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3814 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3815 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3816 LFACE_FOREGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3817 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3818 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3819 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3820 else if (EQ (param, Qbackground_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3821 { |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3822 Lisp_Object frame; |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3823 |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3824 /* 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
|
3825 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
|
3826 frame-update-face-colors to do that. */ |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3827 XSETFRAME (frame, f); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3828 call1 (Qframe_update_face_colors, frame); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
3829 |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3830 lface = lface_from_face_name (f, Qdefault, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3831 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3832 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3833 realize_basic_faces (f); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3834 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3835 if (EQ (param, Qborder_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3836 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3837 lface = lface_from_face_name (f, Qborder, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3838 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3839 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3840 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3841 else if (EQ (param, Qcursor_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3842 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3843 lface = lface_from_face_name (f, Qcursor, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3844 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3845 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3846 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3847 else if (EQ (param, Qmouse_color)) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3848 { |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3849 lface = lface_from_face_name (f, Qmouse, 1); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3850 LFACE_BACKGROUND (lface) = (STRINGP (new_value) |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3851 ? new_value : Qunspecified); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3852 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3853 } |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3854 |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3855 |
24995 | 3856 /* Get the value of X resource RESOURCE, class CLASS for the display |
3857 of frame FRAME. This is here because ordinary `x-get-resource' | |
3858 doesn't take a frame argument. */ | |
3859 | |
3860 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource, | |
3861 Sinternal_face_x_get_resource, 3, 3, 0, "") | |
3862 (resource, class, frame) | |
3863 Lisp_Object resource, class, frame; | |
3864 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3865 Lisp_Object value = Qnil; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3866 #ifndef WINDOWSNT |
24995 | 3867 CHECK_STRING (resource, 0); |
3868 CHECK_STRING (class, 1); | |
3869 CHECK_LIVE_FRAME (frame, 2); | |
3870 BLOCK_INPUT; | |
3871 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)), | |
3872 resource, class, Qnil, Qnil); | |
3873 UNBLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3874 #endif |
24995 | 3875 return value; |
3876 } | |
3877 | |
3878 | |
3879 /* Return resource string VALUE as a boolean value, i.e. nil, or t. | |
3880 If VALUE is "on" or "true", return t. If VALUE is "off" or | |
3881 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an | |
3882 error; if SIGNAL_P is zero, return 0. */ | |
3883 | |
3884 static Lisp_Object | |
3885 face_boolean_x_resource_value (value, signal_p) | |
3886 Lisp_Object value; | |
3887 int signal_p; | |
3888 { | |
3889 Lisp_Object result = make_number (0); | |
3890 | |
3891 xassert (STRINGP (value)); | |
3892 | |
3893 if (xstricmp (XSTRING (value)->data, "on") == 0 | |
3894 || xstricmp (XSTRING (value)->data, "true") == 0) | |
3895 result = Qt; | |
3896 else if (xstricmp (XSTRING (value)->data, "off") == 0 | |
3897 || xstricmp (XSTRING (value)->data, "false") == 0) | |
3898 result = Qnil; | |
3899 else if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
3900 result = Qunspecified; | |
3901 else if (signal_p) | |
3902 signal_error ("Invalid face attribute value from X resource", value); | |
3903 | |
3904 return result; | |
3905 } | |
3906 | |
3907 | |
3908 DEFUN ("internal-set-lisp-face-attribute-from-resource", | |
3909 Finternal_set_lisp_face_attribute_from_resource, | |
3910 Sinternal_set_lisp_face_attribute_from_resource, | |
3911 3, 4, 0, "") | |
3912 (face, attr, value, frame) | |
3913 Lisp_Object face, attr, value, frame; | |
3914 { | |
3915 CHECK_SYMBOL (face, 0); | |
3916 CHECK_SYMBOL (attr, 1); | |
3917 CHECK_STRING (value, 2); | |
3918 | |
3919 if (xstricmp (XSTRING (value)->data, "unspecified") == 0) | |
3920 value = Qunspecified; | |
3921 else if (EQ (attr, QCheight)) | |
3922 { | |
3923 value = Fstring_to_number (value, make_number (10)); | |
3924 if (XINT (value) <= 0) | |
3925 signal_error ("Invalid face height from X resource", value); | |
3926 } | |
3927 else if (EQ (attr, QCbold) || EQ (attr, QCitalic)) | |
3928 value = face_boolean_x_resource_value (value, 1); | |
3929 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth)) | |
3930 value = intern (XSTRING (value)->data); | |
3931 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video)) | |
3932 value = face_boolean_x_resource_value (value, 1); | |
3933 else if (EQ (attr, QCunderline) | |
3934 || EQ (attr, QCoverline) | |
3935 || EQ (attr, QCstrike_through) | |
3936 || EQ (attr, QCbox)) | |
3937 { | |
3938 Lisp_Object boolean_value; | |
3939 | |
3940 /* If the result of face_boolean_x_resource_value is t or nil, | |
3941 VALUE does NOT specify a color. */ | |
3942 boolean_value = face_boolean_x_resource_value (value, 0); | |
3943 if (SYMBOLP (boolean_value)) | |
3944 value = boolean_value; | |
3945 } | |
3946 | |
3947 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
|
3948 } |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
3949 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3950 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 3951 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3952 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
3953 #ifdef HAVE_X_WINDOWS |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3954 /*********************************************************************** |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3955 Menu face |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3956 ***********************************************************************/ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3957 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3958 #ifdef USE_X_TOOLKIT |
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 /* 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
|
3961 XtApplyToWidgets. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3962 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3963 struct x_resources |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3964 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3965 Arg *av; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3966 int ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3967 }; |
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 #ifdef USE_MOTIF |
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 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
|
3973 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
|
3974 |
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 /* 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
|
3977 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
|
3978 submenu. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3979 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3980 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3981 xm_apply_resources (w, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3982 Widget w; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3983 XtPointer p; |
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 Widget submenu = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3986 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
|
3987 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3988 XtSetValues (w, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3989 XtVaGetValues (w, XmNsubMenuId, &submenu, NULL); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3990 if (submenu) |
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 XtSetValues (submenu, res->av, res->ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3993 XtApplyToWidgets (submenu, xm_apply_resources, p); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3994 } |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3997 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
3998 /* 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
|
3999 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
|
4000 following problems: |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4001 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4002 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
|
4003 somewhere in LessTif. */ |
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 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4006 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
|
4007 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4008 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4009 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4010 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4011 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4012 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4013 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4014 XmFontList fl = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4015 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4016 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
|
4017 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
|
4018 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4019 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4020 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4021 XtSetArg (av[ac], XmNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4022 ++ac; |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4025 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
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 XtSetArg (av[ac], XmNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4028 ++ac; |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4031 /* 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
|
4032 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4033 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4034 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4035 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4036 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4037 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4038 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4039 #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
|
4040 in LessTif during geometry computation. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4041 XmFontListEntry fe; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4042 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
|
4043 fl = XmFontListAppendEntry (NULL, fe); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4044 XtSetArg (av[ac], XmNfontList, fl); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4045 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4046 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4047 } |
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 xassert (ac <= sizeof av / sizeof *av); |
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 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4052 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4053 struct x_resources res; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4054 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4055 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4056 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4057 XtApplyToWidgets (widget, xm_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4058 if (fl) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4059 XmFontListFree (fl); |
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 |
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 #endif /* USE_MOTIF */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4065 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4066 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4067 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4068 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
|
4069 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
|
4070 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4071 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4072 /* 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
|
4073 structure. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4074 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4075 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4076 xl_apply_resources (widget, p) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4077 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4078 XtPointer p; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4079 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4080 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
|
4081 XtSetValues (widget, res->av, res->ac); |
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 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4084 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4085 /* 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
|
4086 This is the Lucid version. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4087 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4088 static void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4089 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
|
4090 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4091 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4092 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4093 struct face *face; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4094 Lisp_Object lface; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4095 Arg av[3]; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4096 int ac = 0; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4097 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4098 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
|
4099 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
|
4100 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4101 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4102 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4103 XtSetArg (av[ac], XtNforeground, face->foreground); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4104 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4105 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4106 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4107 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4108 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4109 XtSetArg (av[ac], XtNbackground, face->background); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4110 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4111 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4112 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4113 if (face->font |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4114 && (!UNSPECIFIEDP (LFACE_FAMILY (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4115 || !UNSPECIFIEDP (LFACE_SWIDTH (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4116 || !UNSPECIFIEDP (LFACE_WEIGHT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4117 || !UNSPECIFIEDP (LFACE_SLANT (lface)) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4118 || !UNSPECIFIEDP (LFACE_HEIGHT (lface)))) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4119 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4120 XtSetArg (av[ac], XtNfont, face->font); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4121 ++ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4122 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4123 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4124 if (ac) |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4125 { |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4126 struct x_resources res; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4127 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4128 XtSetValues (widget, av, ac); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4129 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4130 /* 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
|
4131 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
|
4132 is a function from lwlib. */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4133 res.av = av, res.ac = ac; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4134 XtApplyToWidgets (widget, xl_apply_resources, &res); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4135 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4136 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4137 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4138 #endif /* USE_LUCID */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4139 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4140 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4141 /* 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
|
4142 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4143 void |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4144 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
|
4145 struct frame *f; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4146 Widget widget; |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4147 { |
26759
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4148 /* 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
|
4149 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
|
4150 will need the `menu' face. */ |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4151 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
|
4152 recompute_basic_faces (f); |
01f067d61668
(x_set_menu_resources_from_menu_face): Make sure
Gerd Moellmann <gerd@gnu.org>
parents:
26740
diff
changeset
|
4153 |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4154 #ifdef USE_LUCID |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4155 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
|
4156 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4157 #ifdef USE_MOTIF |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4158 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
|
4159 #endif |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4160 } |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4161 |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4162 #endif /* USE_X_TOOLKIT */ |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
4163 |
24995 | 4164 #endif /* HAVE_X_WINDOWS */ |
4165 | |
4166 | |
4167 | |
4168 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute, | |
4169 Sinternal_get_lisp_face_attribute, | |
4170 2, 3, 0, | |
4171 "Return face attribute KEYWORD of face SYMBOL.\n\ | |
4172 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid\n\ | |
4173 face attribute name, signal an error.\n\ | |
4174 If the optional argument FRAME is given, report on face FACE in that\n\ | |
4175 frame. If FRAME is t, report on the defaults for face FACE (for new\n\ | |
4176 frames). If FRAME is omitted or nil, use the selected frame.") | |
4177 (symbol, keyword, frame) | |
4178 Lisp_Object symbol, keyword, frame; | |
4179 { | |
4180 Lisp_Object lface, value = Qnil; | |
4181 | |
4182 CHECK_SYMBOL (symbol, 0); | |
4183 CHECK_SYMBOL (keyword, 1); | |
4184 | |
4185 if (EQ (frame, Qt)) | |
4186 lface = lface_from_face_name (NULL, symbol, 1); | |
4187 else | |
4188 { | |
4189 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4190 frame = selected_frame; |
24995 | 4191 CHECK_LIVE_FRAME (frame, 2); |
4192 lface = lface_from_face_name (XFRAME (frame), symbol, 1); | |
4193 } | |
4194 | |
4195 if (EQ (keyword, QCfamily)) | |
4196 value = LFACE_FAMILY (lface); | |
4197 else if (EQ (keyword, QCheight)) | |
4198 value = LFACE_HEIGHT (lface); | |
4199 else if (EQ (keyword, QCweight)) | |
4200 value = LFACE_WEIGHT (lface); | |
4201 else if (EQ (keyword, QCslant)) | |
4202 value = LFACE_SLANT (lface); | |
4203 else if (EQ (keyword, QCunderline)) | |
4204 value = LFACE_UNDERLINE (lface); | |
4205 else if (EQ (keyword, QCoverline)) | |
4206 value = LFACE_OVERLINE (lface); | |
4207 else if (EQ (keyword, QCstrike_through)) | |
4208 value = LFACE_STRIKE_THROUGH (lface); | |
4209 else if (EQ (keyword, QCbox)) | |
4210 value = LFACE_BOX (lface); | |
4211 else if (EQ (keyword, QCinverse_video) | |
4212 || EQ (keyword, QCreverse_video)) | |
4213 value = LFACE_INVERSE (lface); | |
4214 else if (EQ (keyword, QCforeground)) | |
4215 value = LFACE_FOREGROUND (lface); | |
4216 else if (EQ (keyword, QCbackground)) | |
4217 value = LFACE_BACKGROUND (lface); | |
4218 else if (EQ (keyword, QCstipple)) | |
4219 value = LFACE_STIPPLE (lface); | |
4220 else if (EQ (keyword, QCwidth)) | |
4221 value = LFACE_SWIDTH (lface); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4222 else if (EQ (keyword, QCfont)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4223 value = LFACE_FONT (lface); |
24995 | 4224 else |
4225 signal_error ("Invalid face attribute name", keyword); | |
4226 | |
4227 return value; | |
4228 } | |
4229 | |
4230 | |
4231 DEFUN ("internal-lisp-face-attribute-values", | |
4232 Finternal_lisp_face_attribute_values, | |
4233 Sinternal_lisp_face_attribute_values, 1, 1, 0, | |
4234 "Return a list of valid discrete values for face attribute ATTR.\n\ | |
4235 Value is nil if ATTR doesn't have a discrete set of valid values.") | |
4236 (attr) | |
4237 Lisp_Object attr; | |
4238 { | |
4239 Lisp_Object result = Qnil; | |
4240 | |
4241 CHECK_SYMBOL (attr, 0); | |
4242 | |
4243 if (EQ (attr, QCweight) | |
4244 || EQ (attr, QCslant) | |
4245 || EQ (attr, QCwidth)) | |
4246 { | |
4247 /* Extract permissible symbols from tables. */ | |
4248 struct table_entry *table; | |
4249 int i, dim; | |
4250 | |
4251 if (EQ (attr, QCweight)) | |
4252 table = weight_table, dim = DIM (weight_table); | |
4253 else if (EQ (attr, QCslant)) | |
4254 table = slant_table, dim = DIM (slant_table); | |
4255 else | |
4256 table = swidth_table, dim = DIM (swidth_table); | |
4257 | |
4258 for (i = 0; i < dim; ++i) | |
4259 { | |
4260 Lisp_Object symbol = *table[i].symbol; | |
4261 Lisp_Object tail = result; | |
4262 | |
4263 while (!NILP (tail) | |
4264 && !EQ (XCAR (tail), symbol)) | |
4265 tail = XCDR (tail); | |
4266 | |
4267 if (NILP (tail)) | |
4268 result = Fcons (symbol, result); | |
4269 } | |
4270 } | |
4271 else if (EQ (attr, QCunderline)) | |
4272 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4273 else if (EQ (attr, QCoverline)) | |
4274 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4275 else if (EQ (attr, QCstrike_through)) | |
4276 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4277 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video)) | |
4278 result = Fcons (Qt, Fcons (Qnil, Qnil)); | |
4279 | |
4280 return result; | |
4281 } | |
4282 | |
4283 | |
4284 DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face, | |
4285 Sinternal_merge_in_global_face, 2, 2, 0, | |
4286 "Add attributes from frame-default definition of FACE to FACE on FRAME.") | |
4287 (face, frame) | |
4288 Lisp_Object face, frame; | |
4289 { | |
4290 Lisp_Object global_lface, local_lface; | |
4291 CHECK_LIVE_FRAME (frame, 1); | |
4292 global_lface = lface_from_face_name (NULL, face, 1); | |
4293 local_lface = lface_from_face_name (XFRAME (frame), face, 0); | |
4294 if (NILP (local_lface)) | |
4295 local_lface = Finternal_make_lisp_face (face, frame); | |
4296 merge_face_vectors (XVECTOR (global_lface)->contents, | |
4297 XVECTOR (local_lface)->contents); | |
4298 return face; | |
4299 } | |
4300 | |
4301 | |
4302 /* The following function is implemented for compatibility with 20.2. | |
4303 The function is used in x-resolve-fonts when it is asked to | |
4304 return fonts with the same size as the font of a face. This is | |
4305 done in fontset.el. */ | |
4306 | |
4307 DEFUN ("face-font", Fface_font, Sface_font, 1, 2, 0, | |
4308 "Return the font name of face FACE, or nil if it is unspecified.\n\ | |
4309 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4310 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4311 The font default for a face is either nil, or a list\n\ | |
4312 of the form (bold), (italic) or (bold italic).\n\ | |
4313 If FRAME is omitted or nil, use the selected frame.") | |
4314 (face, frame) | |
4315 Lisp_Object face, frame; | |
4316 { | |
4317 if (EQ (frame, Qt)) | |
4318 { | |
4319 Lisp_Object result = Qnil; | |
4320 Lisp_Object lface = lface_from_face_name (NULL, face, 1); | |
4321 | |
4322 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface)) | |
4323 && !EQ (LFACE_WEIGHT (lface), Qnormal)) | |
4324 result = Fcons (Qbold, result); | |
4325 | |
4326 if (!NILP (LFACE_SLANT (lface)) | |
4327 && !EQ (LFACE_SLANT (lface), Qnormal)) | |
4328 result = Fcons (Qitalic, result); | |
4329 | |
4330 return result; | |
4331 } | |
4332 else | |
4333 { | |
4334 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
|
4335 int face_id = lookup_named_face (f, face, 0); |
24995 | 4336 struct face *face = FACE_FROM_ID (f, face_id); |
4337 return build_string (face->font_name); | |
4338 } | |
4339 } | |
4340 | |
4341 | |
4342 /* Compare face vectors V1 and V2 for equality. Value is non-zero if | |
4343 all attributes are `equal'. Tries to be fast because this function | |
4344 is called quite often. */ | |
4345 | |
4346 static INLINE int | |
4347 lface_equal_p (v1, v2) | |
4348 Lisp_Object *v1, *v2; | |
4349 { | |
4350 int i, equal_p = 1; | |
4351 | |
4352 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i) | |
4353 { | |
4354 Lisp_Object a = v1[i]; | |
4355 Lisp_Object b = v2[i]; | |
4356 | |
4357 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil, | |
4358 and the other is specified. */ | |
4359 equal_p = XTYPE (a) == XTYPE (b); | |
4360 if (!equal_p) | |
4361 break; | |
4362 | |
4363 if (!EQ (a, b)) | |
4364 { | |
4365 switch (XTYPE (a)) | |
4366 { | |
4367 case Lisp_String: | |
4368 equal_p = (XSTRING (a)->size == XSTRING (b)->size | |
4369 && bcmp (XSTRING (a)->data, XSTRING (b)->data, | |
4370 XSTRING (a)->size) == 0); | |
4371 break; | |
4372 | |
4373 case Lisp_Int: | |
4374 case Lisp_Symbol: | |
4375 equal_p = 0; | |
4376 break; | |
4377 | |
4378 default: | |
4379 equal_p = !NILP (Fequal (a, b)); | |
4380 break; | |
4381 } | |
4382 } | |
4383 } | |
4384 | |
4385 return equal_p; | |
4386 } | |
4387 | |
4388 | |
4389 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p, | |
4390 Sinternal_lisp_face_equal_p, 2, 3, 0, | |
4391 "True if FACE1 and FACE2 are equal.\n\ | |
4392 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4393 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4394 If FRAME is omitted or nil, use the selected frame.") | |
4395 (face1, face2, frame) | |
4396 Lisp_Object face1, face2, frame; | |
4397 { | |
4398 int equal_p; | |
4399 struct frame *f; | |
4400 Lisp_Object lface1, lface2; | |
4401 | |
4402 if (EQ (frame, Qt)) | |
4403 f = NULL; | |
4404 else | |
4405 /* Don't use check_x_frame here because this function is called | |
4406 before X frames exist. At that time, if FRAME is nil, | |
4407 selected_frame will be used which is the frame dumped with | |
4408 Emacs. That frame is not an X frame. */ | |
4409 f = frame_or_selected_frame (frame, 2); | |
4410 | |
4411 lface1 = lface_from_face_name (NULL, face1, 1); | |
4412 lface2 = lface_from_face_name (NULL, face2, 1); | |
4413 equal_p = lface_equal_p (XVECTOR (lface1)->contents, | |
4414 XVECTOR (lface2)->contents); | |
4415 return equal_p ? Qt : Qnil; | |
4416 } | |
4417 | |
4418 | |
4419 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p, | |
4420 Sinternal_lisp_face_empty_p, 1, 2, 0, | |
4421 "True if FACE has no attribute specified.\n\ | |
4422 If the optional argument FRAME is given, report on face FACE in that frame.\n\ | |
4423 If FRAME is t, report on the defaults for face FACE (for new frames).\n\ | |
4424 If FRAME is omitted or nil, use the selected frame.") | |
4425 (face, frame) | |
4426 Lisp_Object face, frame; | |
4427 { | |
4428 struct frame *f; | |
4429 Lisp_Object lface; | |
4430 int i; | |
4431 | |
4432 if (NILP (frame)) | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4433 frame = selected_frame; |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4434 CHECK_LIVE_FRAME (frame, 0); |
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
4435 f = XFRAME (frame); |
24995 | 4436 |
4437 if (EQ (frame, Qt)) | |
4438 lface = lface_from_face_name (NULL, face, 1); | |
4439 else | |
4440 lface = lface_from_face_name (f, face, 1); | |
4441 | |
4442 for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | |
4443 if (!UNSPECIFIEDP (XVECTOR (lface)->contents[i])) | |
4444 break; | |
4445 | |
4446 return i == LFACE_VECTOR_SIZE ? Qt : Qnil; | |
4447 } | |
4448 | |
4449 | |
4450 DEFUN ("frame-face-alist", Fframe_face_alist, Sframe_face_alist, | |
4451 0, 1, 0, | |
4452 "Return an alist of frame-local faces defined on FRAME.\n\ | |
4453 For internal use only.") | |
4454 (frame) | |
4455 Lisp_Object frame; | |
4456 { | |
4457 struct frame *f = frame_or_selected_frame (frame, 0); | |
4458 return f->face_alist; | |
4459 } | |
4460 | |
4461 | |
4462 /* Return a hash code for Lisp string STRING with case ignored. Used | |
4463 below in computing a hash value for a Lisp face. */ | |
4464 | |
4465 static INLINE unsigned | |
4466 hash_string_case_insensitive (string) | |
4467 Lisp_Object string; | |
4468 { | |
4469 unsigned char *s; | |
4470 unsigned hash = 0; | |
4471 xassert (STRINGP (string)); | |
4472 for (s = XSTRING (string)->data; *s; ++s) | |
4473 hash = (hash << 1) ^ tolower (*s); | |
4474 return hash; | |
4475 } | |
4476 | |
4477 | |
4478 /* Return a hash code for face attribute vector V. */ | |
4479 | |
4480 static INLINE unsigned | |
4481 lface_hash (v) | |
4482 Lisp_Object *v; | |
4483 { | |
4484 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX]) | |
4485 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX]) | |
4486 ^ hash_string_case_insensitive (v[LFACE_BACKGROUND_INDEX]) | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
4487 ^ XFASTINT (v[LFACE_WEIGHT_INDEX]) |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
4488 ^ XFASTINT (v[LFACE_SLANT_INDEX]) |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28461
diff
changeset
|
4489 ^ XFASTINT (v[LFACE_SWIDTH_INDEX]) |
24995 | 4490 ^ XFASTINT (v[LFACE_HEIGHT_INDEX])); |
4491 } | |
4492 | |
4493 | |
4494 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without | |
4495 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
|
4496 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
|
4497 and LFACE2 must be fully-specified. */ |
24995 | 4498 |
4499 static INLINE int | |
4500 lface_same_font_attributes_p (lface1, lface2) | |
4501 Lisp_Object *lface1, *lface2; | |
4502 { | |
4503 xassert (lface_fully_specified_p (lface1) | |
4504 && lface_fully_specified_p (lface2)); | |
4505 return (xstricmp (XSTRING (lface1[LFACE_FAMILY_INDEX])->data, | |
4506 XSTRING (lface2[LFACE_FAMILY_INDEX])->data) == 0 | |
4507 && (XFASTINT (lface1[LFACE_HEIGHT_INDEX]) | |
4508 == XFASTINT (lface2[LFACE_HEIGHT_INDEX])) | |
4509 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX]) | |
4510 && 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
|
4511 && 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
|
4512 && (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
|
4513 || (STRINGP (lface1[LFACE_FONT_INDEX]) |
28263
73181b84ea57
(lface_same_font_attributes_p): Compare font attributes
Gerd Moellmann <gerd@gnu.org>
parents:
28237
diff
changeset
|
4514 && STRINGP (lface2[LFACE_FONT_INDEX]) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4515 && xstricmp (XSTRING (lface1[LFACE_FONT_INDEX])->data, |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4516 XSTRING (lface2[LFACE_FONT_INDEX])->data)))); |
24995 | 4517 } |
4518 | |
4519 | |
4520 | |
4521 /*********************************************************************** | |
4522 Realized Faces | |
4523 ***********************************************************************/ | |
4524 | |
4525 /* 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
|
4526 vector ATTR. */ |
24995 | 4527 |
4528 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4529 make_realized_face (attr) |
24995 | 4530 Lisp_Object *attr; |
4531 { | |
4532 struct face *face = (struct face *) xmalloc (sizeof *face); | |
4533 bzero (face, sizeof *face); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4534 face->ascii_face = face; |
24995 | 4535 bcopy (attr, face->lface, sizeof face->lface); |
4536 return face; | |
4537 } | |
4538 | |
4539 | |
4540 /* Free realized face FACE, including its X resources. FACE may | |
4541 be null. */ | |
4542 | |
4543 static void | |
4544 free_realized_face (f, face) | |
4545 struct frame *f; | |
4546 struct face *face; | |
4547 { | |
4548 if (face) | |
4549 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4550 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4551 if (FRAME_WINDOW_P (f)) |
24995 | 4552 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4553 /* 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
|
4554 if (face->fontset >= 0 && face == face->ascii_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4555 free_face_fontset (f, face); |
24995 | 4556 if (face->gc) |
4557 { | |
4558 x_free_gc (f, face->gc); | |
4559 face->gc = 0; | |
4560 } | |
4561 | |
4562 free_face_colors (f, face); | |
4563 x_destroy_bitmap (f, face->stipple); | |
4564 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4565 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4566 |
4567 xfree (face); | |
4568 } | |
4569 } | |
4570 | |
4571 | |
4572 /* Prepare face FACE for subsequent display on frame F. This | |
4573 allocated GCs if they haven't been allocated yet or have been freed | |
4574 by clearing the face cache. */ | |
4575 | |
4576 void | |
4577 prepare_face_for_display (f, face) | |
4578 struct frame *f; | |
4579 struct face *face; | |
4580 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4581 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4582 xassert (FRAME_WINDOW_P (f)); |
24995 | 4583 |
4584 if (face->gc == 0) | |
4585 { | |
4586 XGCValues xgcv; | |
4587 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures; | |
4588 | |
4589 xgcv.foreground = face->foreground; | |
4590 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
|
4591 #ifdef HAVE_X_WINDOWS |
24995 | 4592 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
|
4593 #endif |
24995 | 4594 /* The font of FACE may be null if we couldn't load it. */ |
4595 if (face->font) | |
4596 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4597 #ifdef HAVE_X_WINDOWS |
24995 | 4598 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
|
4599 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4600 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4601 xgcv.font = face->font; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4602 #endif |
24995 | 4603 mask |= GCFont; |
4604 } | |
4605 | |
4606 BLOCK_INPUT; | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4607 #ifdef HAVE_X_WINDOWS |
24995 | 4608 if (face->stipple) |
4609 { | |
25092
79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25062
diff
changeset
|
4610 xgcv.fill_style = FillOpaqueStippled; |
24995 | 4611 xgcv.stipple = x_bitmap_pixmap (f, face->stipple); |
4612 mask |= GCFillStyle | GCStipple; | |
4613 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4614 #endif |
24995 | 4615 face->gc = x_create_gc (f, mask, &xgcv); |
4616 UNBLOCK_INPUT; | |
4617 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4618 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4619 } |
4620 | |
4621 | |
4622 /*********************************************************************** | |
4623 Face Cache | |
4624 ***********************************************************************/ | |
4625 | |
4626 /* Return a new face cache for frame F. */ | |
4627 | |
4628 static struct face_cache * | |
4629 make_face_cache (f) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4630 struct frame *f; |
24995 | 4631 { |
4632 struct face_cache *c; | |
4633 int size; | |
4634 | |
4635 c = (struct face_cache *) xmalloc (sizeof *c); | |
4636 bzero (c, sizeof *c); | |
4637 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4638 c->buckets = (struct face **) xmalloc (size); | |
4639 bzero (c->buckets, size); | |
4640 c->size = 50; | |
4641 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id); | |
4642 c->f = f; | |
4643 return c; | |
4644 } | |
4645 | |
4646 | |
4647 /* Clear out all graphics contexts for all realized faces, except for | |
4648 the basic faces. This should be done from time to time just to avoid | |
4649 keeping too many graphics contexts that are no longer needed. */ | |
4650 | |
4651 static void | |
4652 clear_face_gcs (c) | |
4653 struct face_cache *c; | |
4654 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4655 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
|
4656 { |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4657 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 4658 int i; |
4659 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i) | |
4660 { | |
4661 struct face *face = c->faces_by_id[i]; | |
4662 if (face && face->gc) | |
4663 { | |
4664 x_free_gc (c->f, face->gc); | |
4665 face->gc = 0; | |
4666 } | |
4667 } | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4668 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 4669 } |
4670 } | |
4671 | |
4672 | |
4673 /* Free all realized faces in face cache C, including basic faces. C | |
4674 may be null. If faces are freed, make sure the frame's current | |
4675 matrix is marked invalid, so that a display caused by an expose | |
4676 event doesn't try to use faces we destroyed. */ | |
4677 | |
4678 static void | |
4679 free_realized_faces (c) | |
4680 struct face_cache *c; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4681 { |
24995 | 4682 if (c && c->used) |
4683 { | |
4684 int i, size; | |
4685 struct frame *f = c->f; | |
4686 | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4687 /* We must block input here because we can't process X events |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4688 safely while only some faces are freed, or when the frame's |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4689 current matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4690 BLOCK_INPUT; |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4691 |
24995 | 4692 for (i = 0; i < c->used; ++i) |
4693 { | |
4694 free_realized_face (f, c->faces_by_id[i]); | |
4695 c->faces_by_id[i] = NULL; | |
4696 } | |
4697 | |
4698 c->used = 0; | |
4699 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; | |
4700 bzero (c->buckets, size); | |
4701 | |
4702 /* Must do a thorough redisplay the next time. Mark current | |
4703 matrices as invalid because they will reference faces freed | |
4704 above. This function is also called when a frame is | |
4705 destroyed. In this case, the root window of F is nil. */ | |
4706 if (WINDOWP (f->root_window)) | |
4707 { | |
4708 clear_current_matrices (f); | |
4709 ++windows_or_buffers_changed; | |
4710 } | |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4711 |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4712 UNBLOCK_INPUT; |
24995 | 4713 } |
4714 } | |
4715 | |
4716 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4717 /* 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
|
4718 has FONTSET. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4719 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4720 void |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4721 free_realized_multibyte_face (f, fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4722 struct frame *f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4723 int fontset; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4724 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4725 struct face_cache *cache = FRAME_FACE_CACHE (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4726 struct face *face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4727 int i; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4728 |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4729 /* We must block input here because we can't process X events safely |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4730 while only some faces are freed, or when the frame's current |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4731 matrix still references freed faces. */ |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4732 BLOCK_INPUT; |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4733 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4734 for (i = 0; i < cache->used; i++) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4735 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4736 face = cache->faces_by_id[i]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4737 if (face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4738 && face != face->ascii_face |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4739 && face->fontset == fontset) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4740 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4741 uncache_face (cache, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4742 free_realized_face (f, face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4743 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4744 } |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4745 |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4746 /* Must do a thorough redisplay the next time. Mark current |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4747 matrices as invalid because they will reference faces freed |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4748 above. This function is also called when a frame is destroyed. |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4749 In this case, the root window of F is nil. */ |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4750 if (WINDOWP (f->root_window)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4751 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4752 clear_current_matrices (f); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4753 ++windows_or_buffers_changed; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4754 } |
29284
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4755 |
d458dee20518
(free_realized_faces): Block/unblock input.
Gerd Moellmann <gerd@gnu.org>
parents:
28753
diff
changeset
|
4756 UNBLOCK_INPUT; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4757 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4758 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4759 |
24995 | 4760 /* Free all realized faces on FRAME or on all frames if FRAME is nil. |
4761 This is done after attributes of a named face have been changed, | |
4762 because we can't tell which realized faces depend on that face. */ | |
4763 | |
4764 void | |
4765 free_all_realized_faces (frame) | |
4766 Lisp_Object frame; | |
4767 { | |
4768 if (NILP (frame)) | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4769 { |
24995 | 4770 Lisp_Object rest; |
4771 FOR_EACH_FRAME (rest, frame) | |
4772 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
4773 } | |
4774 else | |
4775 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame))); | |
4776 } | |
4777 | |
4778 | |
4779 /* Free face cache C and faces in it, including their X resources. */ | |
4780 | |
4781 static void | |
4782 free_face_cache (c) | |
4783 struct face_cache *c; | |
4784 { | |
4785 if (c) | |
4786 { | |
4787 free_realized_faces (c); | |
4788 xfree (c->buckets); | |
4789 xfree (c->faces_by_id); | |
4790 xfree (c); | |
4791 } | |
4792 } | |
4793 | |
4794 | |
4795 /* Cache realized face FACE in face cache C. HASH is the hash value | |
4796 of FACE. If FACE->fontset >= 0, add the new face to the end of the | |
4797 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
|
4798 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
|
4799 faces with the same attributes but for specific characters exist. */ |
24995 | 4800 |
4801 static void | |
4802 cache_face (c, face, hash) | |
4803 struct face_cache *c; | |
4804 struct face *face; | |
4805 unsigned hash; | |
4806 { | |
4807 int i = hash % FACE_CACHE_BUCKETS_SIZE; | |
4808 | |
4809 face->hash = hash; | |
4810 | |
4811 if (face->fontset >= 0) | |
4812 { | |
4813 struct face *last = c->buckets[i]; | |
4814 if (last) | |
4815 { | |
4816 while (last->next) | |
4817 last = last->next; | |
4818 last->next = face; | |
4819 face->prev = last; | |
4820 face->next = NULL; | |
4821 } | |
4822 else | |
4823 { | |
4824 c->buckets[i] = face; | |
4825 face->prev = face->next = NULL; | |
4826 } | |
4827 } | |
4828 else | |
4829 { | |
4830 face->prev = NULL; | |
4831 face->next = c->buckets[i]; | |
4832 if (face->next) | |
4833 face->next->prev = face; | |
4834 c->buckets[i] = face; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4835 } |
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4836 |
24995 | 4837 /* Find a free slot in C->faces_by_id and use the index of the free |
4838 slot as FACE->id. */ | |
4839 for (i = 0; i < c->used; ++i) | |
4840 if (c->faces_by_id[i] == NULL) | |
4841 break; | |
4842 face->id = i; | |
4843 | |
4844 /* Maybe enlarge C->faces_by_id. */ | |
4845 if (i == c->used && c->used == c->size) | |
4846 { | |
4847 int new_size = 2 * c->size; | |
4848 int sz = new_size * sizeof *c->faces_by_id; | |
4849 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz); | |
4850 c->size = new_size; | |
4851 } | |
4852 | |
4853 #if GLYPH_DEBUG | |
4854 /* Check that FACE got a unique id. */ | |
4855 { | |
4856 int j, n; | |
4857 struct face *face; | |
4858 | |
4859 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j) | |
4860 for (face = c->buckets[j]; face; face = face->next) | |
4861 if (face->id == i) | |
4862 ++n; | |
4863 | |
4864 xassert (n == 1); | |
4865 } | |
4866 #endif /* GLYPH_DEBUG */ | |
4867 | |
4868 c->faces_by_id[i] = face; | |
4869 if (i == c->used) | |
4870 ++c->used; | |
4871 } | |
4872 | |
4873 | |
4874 /* Remove face FACE from cache C. */ | |
4875 | |
4876 static void | |
4877 uncache_face (c, face) | |
4878 struct face_cache *c; | |
4879 struct face *face; | |
4880 { | |
4881 int i = face->hash % FACE_CACHE_BUCKETS_SIZE; | |
4882 | |
4883 if (face->prev) | |
4884 face->prev->next = face->next; | |
4885 else | |
4886 c->buckets[i] = face->next; | |
4887 | |
4888 if (face->next) | |
4889 face->next->prev = face->prev; | |
4890 | |
4891 c->faces_by_id[face->id] = NULL; | |
4892 if (face->id == c->used) | |
4893 --c->used; | |
4894 } | |
4895 | |
4896 | |
4897 /* 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
|
4898 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
|
4899 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
|
4900 a new one. In that case, if C is a multibyte character, BASE_FACE |
28753
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
4901 is a face that has the same attributes. */ |
24995 | 4902 |
4903 INLINE int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4904 lookup_face (f, attr, c, base_face) |
24995 | 4905 struct frame *f; |
4906 Lisp_Object *attr; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4907 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4908 struct face *base_face; |
24995 | 4909 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4910 struct face_cache *cache = FRAME_FACE_CACHE (f); |
24995 | 4911 unsigned hash; |
4912 int i; | |
4913 struct face *face; | |
4914 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4915 xassert (cache != NULL); |
24995 | 4916 check_lface_attrs (attr); |
4917 | |
4918 /* Look up ATTR in the face cache. */ | |
4919 hash = lface_hash (attr); | |
4920 i = hash % FACE_CACHE_BUCKETS_SIZE; | |
4921 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4922 for (face = cache->buckets[i]; face; face = face->next) |
24995 | 4923 if (face->hash == hash |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
4924 && (!FRAME_WINDOW_P (f) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4925 || FACE_SUITABLE_FOR_CHAR_P (face, c)) |
24995 | 4926 && lface_equal_p (face->lface, attr)) |
4927 break; | |
4928 | |
4929 /* If not found, realize a new face. */ | |
4930 if (face == NULL) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4931 face = realize_face (cache, attr, c, base_face, -1); |
24995 | 4932 |
4933 #if GLYPH_DEBUG | |
4934 xassert (face == FACE_FROM_ID (f, face->id)); | |
28409 | 4935 |
4936 /* When this function is called from face_for_char (in this case, C is | |
4937 a multibyte character), a fontset of a face returned by | |
4938 realize_face is not yet set, i.e. FACE_SUITABLE_FOR_CHAR_P (FACE, | |
4939 C) is not sutisfied. The fontset is set for this face by | |
4940 face_for_char later. */ | |
28349
26f2a2e9a2b5
(lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P.
Gerd Moellmann <gerd@gnu.org>
parents:
28263
diff
changeset
|
4941 #if 0 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
4942 if (FRAME_WINDOW_P (f)) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4943 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c)); |
28349
26f2a2e9a2b5
(lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P.
Gerd Moellmann <gerd@gnu.org>
parents:
28263
diff
changeset
|
4944 #endif |
24995 | 4945 #endif /* GLYPH_DEBUG */ |
4946 | |
4947 return face->id; | |
8472
0d0b32e78a5b
(compute_glyph_face_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8119
diff
changeset
|
4948 } |
24995 | 4949 |
4950 | |
4951 /* 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
|
4952 frame F suitable for displaying character C. */ |
24995 | 4953 |
4954 int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4955 lookup_named_face (f, symbol, c) |
24995 | 4956 struct frame *f; |
4957 Lisp_Object symbol; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4958 int c; |
24995 | 4959 { |
4960 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
4961 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
4962 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
4963 | |
4964 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
4965 bcopy (default_face->lface, attrs, sizeof attrs); | |
4966 merge_face_vectors (symbol_attrs, attrs); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
4967 return lookup_face (f, attrs, c, NULL); |
24995 | 4968 } |
4969 | |
4970 | |
4971 /* Return the ID of the realized ASCII face of Lisp face with ID | |
4972 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */ | |
4973 | |
4974 int | |
4975 ascii_face_of_lisp_face (f, lface_id) | |
4976 struct frame *f; | |
4977 int lface_id; | |
4978 { | |
4979 int face_id; | |
4980 | |
4981 if (lface_id >= 0 && lface_id < lface_id_to_name_size) | |
4982 { | |
4983 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
|
4984 face_id = lookup_named_face (f, face_name, 0); |
24995 | 4985 } |
4986 else | |
4987 face_id = -1; | |
4988 | |
4989 return face_id; | |
4990 } | |
4991 | |
4992 | |
4993 /* Return a face for charset ASCII that is like the face with id | |
4994 FACE_ID on frame F, but has a font that is STEPS steps smaller. | |
4995 STEPS < 0 means larger. Value is the id of the face. */ | |
4996 | |
4997 int | |
4998 smaller_face (f, face_id, steps) | |
4999 struct frame *f; | |
5000 int face_id, steps; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5001 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5002 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5003 struct face *face; |
5004 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5005 int pt, last_pt, last_height; | |
5006 int delta; | |
5007 int new_face_id; | |
5008 struct face *new_face; | |
5009 | |
5010 /* If not called for an X frame, just return the original face. */ | |
5011 if (FRAME_TERMCAP_P (f)) | |
5012 return face_id; | |
5013 | |
5014 /* Try in increments of 1/2 pt. */ | |
5015 delta = steps < 0 ? 5 : -5; | |
5016 steps = abs (steps); | |
5017 | |
5018 face = FACE_FROM_ID (f, face_id); | |
5019 bcopy (face->lface, attrs, sizeof attrs); | |
5020 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5021 new_face_id = face_id; | |
5022 last_height = FONT_HEIGHT (face->font); | |
5023 | |
5024 while (steps | |
5025 && pt + delta > 0 | |
5026 /* Give up if we cannot find a font within 10pt. */ | |
5027 && abs (last_pt - pt) < 100) | |
5028 { | |
5029 /* Look up a face for a slightly smaller/larger font. */ | |
5030 pt += delta; | |
5031 attrs[LFACE_HEIGHT_INDEX] = make_number (pt); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5032 new_face_id = lookup_face (f, attrs, 0, NULL); |
24995 | 5033 new_face = FACE_FROM_ID (f, new_face_id); |
5034 | |
5035 /* If height changes, count that as one step. */ | |
5036 if (FONT_HEIGHT (new_face->font) != last_height) | |
5037 { | |
5038 --steps; | |
5039 last_height = FONT_HEIGHT (new_face->font); | |
5040 last_pt = pt; | |
5041 } | |
5042 } | |
5043 | |
5044 return new_face_id; | |
5045 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5046 #else /* not HAVE_WINDOW_SYSTEM */ |
24995 | 5047 |
5048 return face_id; | |
5049 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5050 #endif /* not HAVE_WINDOW_SYSTEM */ |
24995 | 5051 } |
5052 | |
5053 | |
5054 /* Return a face for charset ASCII that is like the face with id | |
5055 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
|
5056 |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
5057 int |
24995 | 5058 face_with_height (f, face_id, height) |
5059 struct frame *f; | |
5060 int face_id; | |
5061 int height; | |
5062 { | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5063 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5064 struct face *face; |
5065 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5066 | |
5067 if (FRAME_TERMCAP_P (f) | |
5068 || height <= 0) | |
5069 return face_id; | |
5070 | |
5071 face = FACE_FROM_ID (f, face_id); | |
5072 bcopy (face->lface, attrs, sizeof attrs); | |
5073 attrs[LFACE_HEIGHT_INDEX] = make_number (height); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5074 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
|
5075 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5076 |
5077 return face_id; | |
5078 } | |
5079 | |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5080 /* 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
|
5081 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
|
5082 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
|
5083 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
|
5084 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
|
5085 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
|
5086 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5087 int |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5088 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
|
5089 struct frame *f; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5090 Lisp_Object symbol; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5091 int c; |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5092 int face_id; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5093 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5094 Lisp_Object attrs[LFACE_VECTOR_SIZE]; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5095 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
|
5096 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
|
5097 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5098 if (!default_face) |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5099 abort (); |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5100 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5101 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
|
5102 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
|
5103 merge_face_vectors (symbol_attrs, attrs); |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5104 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
|
5105 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5106 |
24995 | 5107 |
5108 | |
5109 /*********************************************************************** | |
5110 Font selection | |
5111 ***********************************************************************/ | |
5112 | |
5113 DEFUN ("internal-set-font-selection-order", | |
5114 Finternal_set_font_selection_order, | |
5115 Sinternal_set_font_selection_order, 1, 1, 0, | |
5116 "Set font selection order for face font selection to ORDER.\n\ | |
5117 ORDER must be a list of length 4 containing the symbols `:width',\n\ | |
5118 `:height', `:weight', and `:slant'. Face attributes appearing\n\ | |
5119 first in ORDER are matched first, e.g. if `:height' appears before\n\ | |
5120 `:weight' in ORDER, font selection first tries to find a font with\n\ | |
5121 a suitable height, and then tries to match the font weight.\n\ | |
5122 Value is ORDER.") | |
5123 (order) | |
5124 Lisp_Object order; | |
5125 { | |
5126 Lisp_Object list; | |
5127 int i; | |
5128 int indices[4]; | |
5129 | |
5130 CHECK_LIST (order, 0); | |
5131 bzero (indices, sizeof indices); | |
5132 i = 0; | |
5133 | |
5134 for (list = order; | |
5135 CONSP (list) && i < DIM (indices); | |
5136 list = XCDR (list), ++i) | |
5137 { | |
5138 Lisp_Object attr = XCAR (list); | |
5139 int xlfd; | |
5140 | |
5141 if (EQ (attr, QCwidth)) | |
5142 xlfd = XLFD_SWIDTH; | |
5143 else if (EQ (attr, QCheight)) | |
5144 xlfd = XLFD_POINT_SIZE; | |
5145 else if (EQ (attr, QCweight)) | |
5146 xlfd = XLFD_WEIGHT; | |
5147 else if (EQ (attr, QCslant)) | |
5148 xlfd = XLFD_SLANT; | |
5149 else | |
5150 break; | |
5151 | |
5152 if (indices[i] != 0) | |
5153 break; | |
5154 indices[i] = xlfd; | |
5155 } | |
5156 | |
5157 if (!NILP (list) | |
5158 || i != DIM (indices) | |
5159 || indices[0] == 0 | |
5160 || indices[1] == 0 | |
5161 || indices[2] == 0 | |
5162 || indices[3] == 0) | |
5163 signal_error ("Invalid font sort order", order); | |
5164 | |
5165 if (bcmp (indices, font_sort_order, sizeof indices) != 0) | |
5166 { | |
5167 bcopy (indices, font_sort_order, sizeof font_sort_order); | |
5168 free_all_realized_faces (Qnil); | |
5169 } | |
5170 | |
5171 return Qnil; | |
5172 } | |
5173 | |
5174 | |
5175 DEFUN ("internal-set-alternative-font-family-alist", | |
5176 Finternal_set_alternative_font_family_alist, | |
5177 Sinternal_set_alternative_font_family_alist, 1, 1, 0, | |
5178 "Define alternative font families to try in face font selection.\n\ | |
5179 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.\n\ | |
5180 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can\n\ | |
5181 be found. Value is ALIST.") | |
5182 (alist) | |
5183 Lisp_Object alist; | |
5184 { | |
5185 CHECK_LIST (alist, 0); | |
5186 Vface_alternative_font_family_alist = alist; | |
5187 free_all_realized_faces (Qnil); | |
5188 return alist; | |
5189 } | |
5190 | |
5191 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5192 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5193 |
5194 /* Value is non-zero if FONT is the name of a scalable font. The | |
5195 X11R6 XLFD spec says that point size, pixel size, and average width | |
5196 are zero for scalable fonts. Intlfonts contain at least one | |
5197 scalable font ("*-muleindian-1") for which this isn't true, so we | |
5198 just test average width. */ | |
5199 | |
5200 static int | |
5201 font_scalable_p (font) | |
5202 struct font_name *font; | |
5203 { | |
5204 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
|
5205 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
|
5206 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5207 /* 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
|
5208 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
|
5209 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
|
5210 || *s == '*' |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5211 #endif |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5212 ; |
24995 | 5213 } |
5214 | |
5215 | |
5216 /* Value is non-zero if FONT1 is a better match for font attributes | |
5217 VALUES than FONT2. VALUES is an array of face attribute values in | |
5218 font sort order. COMPARE_PT_P zero means don't compare point | |
5219 sizes. */ | |
5220 | |
5221 static int | |
5222 better_font_p (values, font1, font2, compare_pt_p) | |
5223 int *values; | |
5224 struct font_name *font1, *font2; | |
5225 int compare_pt_p; | |
5226 { | |
5227 int i; | |
5228 | |
5229 for (i = 0; i < 4; ++i) | |
5230 { | |
5231 int xlfd_idx = font_sort_order[i]; | |
5232 | |
5233 if (compare_pt_p || xlfd_idx != XLFD_POINT_SIZE) | |
5234 { | |
5235 int delta1 = abs (values[i] - font1->numeric[xlfd_idx]); | |
5236 int delta2 = abs (values[i] - font2->numeric[xlfd_idx]); | |
5237 | |
5238 if (delta1 > delta2) | |
5239 return 0; | |
5240 else if (delta1 < delta2) | |
5241 return 1; | |
5242 else | |
5243 { | |
5244 /* The difference may be equal because, e.g., the face | |
5245 specifies `italic' but we have only `regular' and | |
5246 `oblique'. Prefer `oblique' in this case. */ | |
5247 if ((xlfd_idx == XLFD_WEIGHT || xlfd_idx == XLFD_SLANT) | |
5248 && font1->numeric[xlfd_idx] > values[i] | |
5249 && font2->numeric[xlfd_idx] < values[i]) | |
5250 return 1; | |
5251 } | |
5252 } | |
5253 } | |
5254 | |
5255 return 0; | |
5256 } | |
5257 | |
5258 | |
5259 #if SCALABLE_FONTS | |
5260 | |
5261 /* Value is non-zero if FONT is an exact match for face attributes in | |
5262 SPECIFIED. SPECIFIED is an array of face attribute values in font | |
5263 sort order. */ | |
5264 | |
5265 static int | |
5266 exact_face_match_p (specified, font) | |
5267 int *specified; | |
5268 struct font_name *font; | |
5269 { | |
5270 int i; | |
5271 | |
5272 for (i = 0; i < 4; ++i) | |
5273 if (specified[i] != font->numeric[font_sort_order[i]]) | |
5274 break; | |
5275 | |
5276 return i == 4; | |
5277 } | |
5278 | |
5279 | |
5280 /* Value is the name of a scaled font, generated from scalable font | |
5281 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to. | |
5282 Value is allocated from heap. */ | |
5283 | |
5284 static char * | |
5285 build_scalable_font_name (f, font, specified_pt) | |
5286 struct frame *f; | |
5287 struct font_name *font; | |
5288 int specified_pt; | |
5289 { | |
5290 char point_size[20], pixel_size[20]; | |
5291 int pixel_value; | |
5292 double resy = FRAME_X_DISPLAY_INFO (f)->resy; | |
5293 double pt; | |
5294 | |
5295 /* If scalable font is for a specific resolution, compute | |
5296 the point size we must specify from the resolution of | |
5297 the display and the specified resolution of the font. */ | |
5298 if (font->numeric[XLFD_RESY] != 0) | |
5299 { | |
5300 pt = resy / font->numeric[XLFD_RESY] * specified_pt + 0.5; | |
5301 pixel_value = font->numeric[XLFD_RESY] / 720.0 * pt; | |
5302 } | |
5303 else | |
5304 { | |
5305 pt = specified_pt; | |
5306 pixel_value = resy / 720.0 * pt; | |
5307 } | |
5308 | |
5309 /* Set point size of the font. */ | |
5310 sprintf (point_size, "%d", (int) pt); | |
5311 font->fields[XLFD_POINT_SIZE] = point_size; | |
5312 font->numeric[XLFD_POINT_SIZE] = pt; | |
5313 | |
5314 /* Set pixel size. */ | |
5315 sprintf (pixel_size, "%d", pixel_value); | |
5316 font->fields[XLFD_PIXEL_SIZE] = pixel_size; | |
5317 font->numeric[XLFD_PIXEL_SIZE] = pixel_value; | |
5318 | |
5319 /* If font doesn't specify its resolution, use the | |
5320 resolution of the display. */ | |
5321 if (font->numeric[XLFD_RESY] == 0) | |
5322 { | |
5323 char buffer[20]; | |
5324 sprintf (buffer, "%d", (int) resy); | |
5325 font->fields[XLFD_RESY] = buffer; | |
5326 font->numeric[XLFD_RESY] = resy; | |
5327 } | |
5328 | |
5329 if (strcmp (font->fields[XLFD_RESX], "0") == 0) | |
5330 { | |
5331 char buffer[20]; | |
5332 int resx = FRAME_X_DISPLAY_INFO (f)->resx; | |
5333 sprintf (buffer, "%d", resx); | |
5334 font->fields[XLFD_RESX] = buffer; | |
5335 font->numeric[XLFD_RESX] = resx; | |
5336 } | |
5337 | |
5338 return build_font_name (font); | |
5339 } | |
5340 | |
5341 | |
5342 /* Value is non-zero if we are allowed to use scalable font FONT. We | |
5343 can't run a Lisp function here since this function may be called | |
5344 with input blocked. */ | |
5345 | |
5346 static int | |
5347 may_use_scalable_font_p (font, name) | |
5348 struct font_name *font; | |
5349 char *name; | |
5350 { | |
5351 if (EQ (Vscalable_fonts_allowed, Qt)) | |
5352 return 1; | |
5353 else if (CONSP (Vscalable_fonts_allowed)) | |
5354 { | |
5355 Lisp_Object tail, regexp; | |
5356 | |
5357 for (tail = Vscalable_fonts_allowed; CONSP (tail); tail = XCDR (tail)) | |
5358 { | |
5359 regexp = XCAR (tail); | |
5360 if (STRINGP (regexp) | |
5361 && fast_c_string_match_ignore_case (regexp, name) >= 0) | |
5362 return 1; | |
5363 } | |
5364 } | |
5365 | |
5366 return 0; | |
5367 } | |
5368 | |
5369 #endif /* SCALABLE_FONTS != 0 */ | |
5370 | |
5371 | |
5372 /* Return the name of the best matching font for face attributes | |
5373 ATTRS in the array of font_name structures FONTS which contains | |
5374 NFONTS elements. Value is a font name which is allocated from | |
5375 the heap. FONTS is freed by this function. */ | |
5376 | |
5377 static char * | |
5378 best_matching_font (f, attrs, fonts, nfonts) | |
5379 struct frame *f; | |
5380 Lisp_Object *attrs; | |
5381 struct font_name *fonts; | |
5382 int nfonts; | |
5383 { | |
5384 char *font_name; | |
5385 struct font_name *best; | |
5386 int i, pt; | |
5387 int specified[4]; | |
5388 int exact_p; | |
5389 | |
5390 if (nfonts == 0) | |
5391 return NULL; | |
5392 | |
5393 /* Make specified font attributes available in `specified', | |
5394 indexed by sort order. */ | |
5395 for (i = 0; i < DIM (font_sort_order); ++i) | |
5396 { | |
5397 int xlfd_idx = font_sort_order[i]; | |
5398 | |
5399 if (xlfd_idx == XLFD_SWIDTH) | |
5400 specified[i] = face_numeric_swidth (attrs[LFACE_SWIDTH_INDEX]); | |
5401 else if (xlfd_idx == XLFD_POINT_SIZE) | |
5402 specified[i] = pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]); | |
5403 else if (xlfd_idx == XLFD_WEIGHT) | |
5404 specified[i] = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
5405 else if (xlfd_idx == XLFD_SLANT) | |
5406 specified[i] = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
5407 else | |
5408 abort (); | |
5409 } | |
5410 | |
5411 #if SCALABLE_FONTS | |
5412 | |
5413 /* Set to 1 */ | |
5414 exact_p = 0; | |
5415 | |
5416 /* Start with the first non-scalable font in the list. */ | |
5417 for (i = 0; i < nfonts; ++i) | |
5418 if (!font_scalable_p (fonts + i)) | |
5419 break; | |
5420 | |
5421 /* Find the best match among the non-scalable fonts. */ | |
5422 if (i < nfonts) | |
5423 { | |
5424 best = fonts + i; | |
5425 | |
5426 for (i = 1; i < nfonts; ++i) | |
5427 if (!font_scalable_p (fonts + i) | |
5428 && better_font_p (specified, fonts + i, best, 1)) | |
5429 { | |
5430 best = fonts + i; | |
5431 | |
5432 exact_p = exact_face_match_p (specified, best); | |
5433 if (exact_p) | |
5434 break; | |
5435 } | |
5436 | |
5437 } | |
5438 else | |
5439 best = NULL; | |
5440 | |
5441 /* Unless we found an exact match among non-scalable fonts, see if | |
5442 we can find a better match among scalable fonts. */ | |
5443 if (!exact_p) | |
5444 { | |
5445 /* A scalable font is better if | |
5446 | |
5447 1. its weight, slant, swidth attributes are better, or. | |
5448 | |
5449 2. the best non-scalable font doesn't have the required | |
5450 point size, and the scalable fonts weight, slant, swidth | |
5451 isn't worse. */ | |
5452 | |
5453 int non_scalable_has_exact_height_p; | |
5454 | |
5455 if (best && best->numeric[XLFD_POINT_SIZE] == pt) | |
5456 non_scalable_has_exact_height_p = 1; | |
5457 else | |
5458 non_scalable_has_exact_height_p = 0; | |
5459 | |
5460 for (i = 0; i < nfonts; ++i) | |
5461 if (font_scalable_p (fonts + i)) | |
5462 { | |
5463 if (best == NULL | |
5464 || better_font_p (specified, fonts + i, best, 0) | |
5465 || (!non_scalable_has_exact_height_p | |
5466 && !better_font_p (specified, best, fonts + i, 0))) | |
5467 best = fonts + i; | |
5468 } | |
5469 } | |
5470 | |
5471 if (font_scalable_p (best)) | |
5472 font_name = build_scalable_font_name (f, best, pt); | |
5473 else | |
5474 font_name = build_font_name (best); | |
5475 | |
5476 #else /* !SCALABLE_FONTS */ | |
5477 | |
5478 /* Find the best non-scalable font. */ | |
5479 best = fonts; | |
5480 | |
5481 for (i = 1; i < nfonts; ++i) | |
5482 { | |
5483 xassert (!font_scalable_p (fonts + i)); | |
5484 if (better_font_p (specified, fonts + i, best, 1)) | |
5485 best = fonts + i; | |
5486 } | |
5487 | |
5488 font_name = build_font_name (best); | |
5489 | |
5490 #endif /* !SCALABLE_FONTS */ | |
5491 | |
5492 /* Free font_name structures. */ | |
5493 free_font_names (fonts, nfonts); | |
5494 | |
5495 return font_name; | |
5496 } | |
5497 | |
5498 | |
5499 /* Try to get a list of fonts on frame F with font family FAMILY and | |
5500 registry/encoding REGISTRY. Return in *FONTS a pointer to a vector | |
5501 of font_name structures for the fonts matched. Value is the number | |
5502 of fonts found. */ | |
5503 | |
5504 static int | |
5505 try_font_list (f, attrs, pattern, family, registry, fonts) | |
5506 struct frame *f; | |
5507 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5508 Lisp_Object pattern, family, registry; |
24995 | 5509 struct font_name **fonts; |
5510 { | |
5511 int nfonts; | |
5512 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5513 if (NILP (family) && STRINGP (attrs[LFACE_FAMILY_INDEX])) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5514 family = attrs[LFACE_FAMILY_INDEX]; |
24995 | 5515 |
5516 nfonts = font_list (f, pattern, family, registry, fonts); | |
5517 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5518 if (nfonts == 0 && !NILP (family)) |
24995 | 5519 { |
5520 Lisp_Object alter; | |
5521 | |
5522 /* Try alternative font families from | |
5523 Vface_alternative_font_family_alist. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5524 alter = Fassoc (family, Vface_alternative_font_family_alist); |
24995 | 5525 if (CONSP (alter)) |
5526 for (alter = XCDR (alter); | |
5527 CONSP (alter) && nfonts == 0; | |
5528 alter = XCDR (alter)) | |
5529 { | |
5530 if (STRINGP (XCAR (alter))) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5531 nfonts = font_list (f, Qnil, XCAR (alter), registry, fonts); |
24995 | 5532 } |
5533 | |
5534 /* Try font family of the default face or "fixed". */ | |
5535 if (nfonts == 0) | |
5536 { | |
5537 struct face *dflt = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5538 if (dflt) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5539 family = dflt->lface[LFACE_FAMILY_INDEX]; |
24995 | 5540 else |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5541 family = build_string ("fixed"); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5542 nfonts = font_list (f, Qnil, family, registry, fonts); |
24995 | 5543 } |
5544 | |
5545 /* Try any family with the given registry. */ | |
5546 if (nfonts == 0) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5547 nfonts = font_list (f, Qnil, Qnil, registry, fonts); |
24995 | 5548 } |
5549 | |
5550 return nfonts; | |
5551 } | |
5552 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5553 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5554 /* 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
|
5555 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
|
5556 attribute of ATTRS doesn't name a fontset. */ |
24995 | 5557 |
5558 static int | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5559 face_fontset (attrs) |
24995 | 5560 Lisp_Object *attrs; |
5561 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5562 Lisp_Object name; |
24995 | 5563 int fontset; |
5564 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5565 name = attrs[LFACE_FONT_INDEX]; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5566 if (!STRINGP (name)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5567 return -1; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5568 return fs_query_fontset (name, 0); |
24995 | 5569 } |
5570 | |
5571 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5572 /* 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
|
5573 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
|
5574 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
|
5575 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
|
5576 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
|
5577 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
|
5578 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
|
5579 character. */ |
24995 | 5580 |
5581 static char * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5582 choose_face_font (f, attrs, fontset, c) |
24995 | 5583 struct frame *f; |
5584 Lisp_Object *attrs; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5585 int fontset, c; |
24995 | 5586 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5587 Lisp_Object pattern; |
24995 | 5588 char *font_name = NULL; |
5589 struct font_name *fonts; | |
5590 int nfonts; | |
5591 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5592 /* 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
|
5593 a font for C. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5594 pattern = fontset_font_pattern (f, fontset, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5595 if (NILP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5596 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5597 xassert (!SINGLE_BYTE_CHAR_P (c)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5598 return NULL; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5599 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5600 /* 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
|
5601 if (STRINGP (pattern)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5602 return xstrdup (XSTRING (pattern)->data); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5603 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5604 /* 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
|
5605 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
|
5606 character. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5607 if (STRINGP (attrs[LFACE_FAMILY_INDEX]) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5608 && SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5609 XCAR (pattern) = Qnil; |
24995 | 5610 |
5611 /* Get a list of fonts matching that pattern and choose the | |
5612 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
|
5613 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
|
5614 &fonts); |
24995 | 5615 font_name = best_matching_font (f, attrs, fonts, nfonts); |
5616 return font_name; | |
5617 } | |
5618 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5619 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5620 |
5621 | |
5622 | |
5623 /*********************************************************************** | |
5624 Face Realization | |
5625 ***********************************************************************/ | |
5626 | |
5627 /* Realize basic faces on frame F. Value is zero if frame parameters | |
5628 of F don't contain enough information needed to realize the default | |
5629 face. */ | |
5630 | |
5631 static int | |
5632 realize_basic_faces (f) | |
2342 | 5633 struct frame *f; |
24995 | 5634 { |
5635 int success_p = 0; | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5636 |
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5637 /* Block input there so that we won't be surprised by an X expose |
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5638 event, for instance without having the faces set up. */ |
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5639 BLOCK_INPUT; |
24995 | 5640 |
5641 if (realize_default_face (f)) | |
5642 { | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
5643 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
|
5644 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
|
5645 realize_named_face (f, Qfringe, BITMAP_AREA_FACE_ID); |
25546 | 5646 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
|
5647 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
|
5648 realize_named_face (f, Qborder, BORDER_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5649 realize_named_face (f, Qcursor, CURSOR_FACE_ID); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
5650 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
|
5651 realize_named_face (f, Qmenu, MENU_FACE_ID); |
24995 | 5652 success_p = 1; |
5653 } | |
5654 | |
28461
b6b552188c57
(realize_basic_faces): Block input while realizing
Gerd Moellmann <gerd@gnu.org>
parents:
28412
diff
changeset
|
5655 UNBLOCK_INPUT; |
24995 | 5656 return success_p; |
5657 } | |
5658 | |
5659 | |
5660 /* Realize the default face on frame F. If the face is not fully | |
5661 specified, make it fully-specified. Attributes of the default face | |
5662 that are not explicitly specified are taken from frame parameters. */ | |
5663 | |
5664 static int | |
5665 realize_default_face (f) | |
5666 struct frame *f; | |
5667 { | |
5668 struct face_cache *c = FRAME_FACE_CACHE (f); | |
5669 Lisp_Object lface; | |
5670 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5671 Lisp_Object frame_font; | |
5672 struct face *face; | |
5673 int fontset; | |
5674 | |
5675 /* If the `default' face is not yet known, create it. */ | |
5676 lface = lface_from_face_name (f, Qdefault, 0); | |
5677 if (NILP (lface)) | |
5678 { | |
5679 Lisp_Object frame; | |
5680 XSETFRAME (frame, f); | |
5681 lface = Finternal_make_lisp_face (Qdefault, frame); | |
5682 } | |
5683 | |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5684 #ifdef HAVE_WINDOW_SYSTEM |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5685 if (FRAME_WINDOW_P (f)) |
24995 | 5686 { |
5687 /* Set frame_font to the value of the `font' frame parameter. */ | |
5688 frame_font = Fassq (Qfont, f->param_alist); | |
5689 xassert (CONSP (frame_font) && STRINGP (XCDR (frame_font))); | |
5690 frame_font = XCDR (frame_font); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5691 set_lface_from_font_name (f, lface, frame_font, 0, 1); |
24995 | 5692 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5693 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5694 |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
5695 if (!FRAME_WINDOW_P (f)) |
24995 | 5696 { |
5697 LFACE_FAMILY (lface) = build_string ("default"); | |
5698 LFACE_SWIDTH (lface) = Qnormal; | |
5699 LFACE_HEIGHT (lface) = make_number (1); | |
5700 LFACE_WEIGHT (lface) = Qnormal; | |
5701 LFACE_SLANT (lface) = Qnormal; | |
5702 } | |
5703 | |
5704 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface))) | |
5705 LFACE_UNDERLINE (lface) = Qnil; | |
5706 | |
5707 if (UNSPECIFIEDP (LFACE_OVERLINE (lface))) | |
5708 LFACE_OVERLINE (lface) = Qnil; | |
5709 | |
5710 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface))) | |
5711 LFACE_STRIKE_THROUGH (lface) = Qnil; | |
5712 | |
5713 if (UNSPECIFIEDP (LFACE_BOX (lface))) | |
5714 LFACE_BOX (lface) = Qnil; | |
5715 | |
5716 if (UNSPECIFIEDP (LFACE_INVERSE (lface))) | |
5717 LFACE_INVERSE (lface) = Qnil; | |
5718 | |
5719 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface))) | |
5720 { | |
5721 /* This function is called so early that colors are not yet | |
5722 set in the frame parameter list. */ | |
5723 Lisp_Object color = Fassq (Qforeground_color, f->param_alist); | |
5724 | |
5725 if (CONSP (color) && STRINGP (XCDR (color))) | |
5726 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
|
5727 else if (FRAME_WINDOW_P (f)) |
24995 | 5728 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5729 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
|
5730 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
|
5731 else |
24995 | 5732 abort (); |
5733 } | |
5734 | |
5735 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface))) | |
5736 { | |
5737 /* This function is called so early that colors are not yet | |
5738 set in the frame parameter list. */ | |
5739 Lisp_Object color = Fassq (Qbackground_color, f->param_alist); | |
5740 if (CONSP (color) && STRINGP (XCDR (color))) | |
5741 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
|
5742 else if (FRAME_WINDOW_P (f)) |
24995 | 5743 return 0; |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
5744 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
|
5745 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
|
5746 else |
24995 | 5747 abort (); |
5748 } | |
5749 | |
5750 if (UNSPECIFIEDP (LFACE_STIPPLE (lface))) | |
5751 LFACE_STIPPLE (lface) = Qnil; | |
5752 | |
5753 /* Realize the face; it must be fully-specified now. */ | |
5754 xassert (lface_fully_specified_p (XVECTOR (lface)->contents)); | |
5755 check_lface (lface); | |
5756 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs); | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5757 face = realize_face (c, attrs, 0, NULL, DEFAULT_FACE_ID); |
24995 | 5758 return 1; |
5759 } | |
5760 | |
5761 | |
5762 /* Realize basic faces other than the default face in face cache C. | |
5763 SYMBOL is the face name, ID is the face id the realized face must | |
5764 have. The default face must have been realized already. */ | |
5765 | |
5766 static void | |
5767 realize_named_face (f, symbol, id) | |
5768 struct frame *f; | |
5769 Lisp_Object symbol; | |
5770 int id; | |
5771 { | |
5772 struct face_cache *c = FRAME_FACE_CACHE (f); | |
5773 Lisp_Object lface = lface_from_face_name (f, symbol, 0); | |
5774 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
5775 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE]; | |
5776 struct face *new_face; | |
5777 | |
5778 /* The default face must exist and be fully specified. */ | |
5779 get_lface_attributes (f, Qdefault, attrs, 1); | |
5780 check_lface_attrs (attrs); | |
5781 xassert (lface_fully_specified_p (attrs)); | |
5782 | |
5783 /* If SYMBOL isn't know as a face, create it. */ | |
5784 if (NILP (lface)) | |
5785 { | |
5786 Lisp_Object frame; | |
5787 XSETFRAME (frame, f); | |
5788 lface = Finternal_make_lisp_face (symbol, frame); | |
5789 } | |
5790 | |
5791 /* Merge SYMBOL's face with the default face. */ | |
5792 get_lface_attributes (f, symbol, symbol_attrs, 1); | |
5793 merge_face_vectors (symbol_attrs, attrs); | |
5794 | |
5795 /* Realize the face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5796 new_face = realize_face (c, attrs, 0, NULL, id); |
24995 | 5797 } |
5798 | |
5799 | |
5800 /* 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
|
5801 cache CACHE for character C. If C is a multibyte character, |
28753
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5802 BASE_FACE is a face that has the same attributes. Otherwise, |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5803 BASE_FACE is ignored. If FORMER_FACE_ID is non-negative, it is an |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5804 ID of face to remove before caching the new face. Value is a |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5805 pointer to the newly created realized face. */ |
24995 | 5806 |
5807 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5808 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
|
5809 struct face_cache *cache; |
24995 | 5810 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5811 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5812 struct face *base_face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5813 int former_face_id; |
24995 | 5814 { |
5815 struct face *face; | |
5816 | |
5817 /* LFACE must be fully specified. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5818 xassert (cache != NULL); |
24995 | 5819 check_lface_attrs (attrs); |
5820 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5821 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
|
5822 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5823 /* Remove the former face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5824 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
|
5825 uncache_face (cache, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5826 free_realized_face (cache->f, former_face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5827 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5828 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5829 if (FRAME_WINDOW_P (cache->f)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5830 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
|
5831 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
|
5832 face = realize_tty_face (cache, attrs, c); |
24995 | 5833 else |
5834 abort (); | |
5835 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5836 /* Insert the new face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5837 cache_face (cache, face, lface_hash (attrs)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5838 #ifdef HAVE_WINDOW_SYSTEM |
28544
b42146066357
(realize_face): Change FRAME_X_P to FRAME_WINDOW_P.
Jason Rumney <jasonr@gnu.org>
parents:
28529
diff
changeset
|
5839 if (FRAME_WINDOW_P (cache->f) && face->font == NULL) |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5840 load_face_font (cache->f, face, c); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5841 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 5842 return face; |
5843 } | |
5844 | |
5845 | |
5846 /* 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
|
5847 cache CACHE for character C. Do it for X frame CACHE->f. If C is |
28753
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5848 a multibyte character, BASE_FACE is a face that has the same |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5849 attributes. Otherwise, BASE_FACE is ignored. If the new face |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5850 doesn't share font with the default face, a fontname is allocated |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5851 from the heap and set in `font_name' of the new face, but it is not |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5852 yet loaded here. Value is a pointer to the newly created realized |
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5853 face. */ |
24995 | 5854 |
5855 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5856 realize_x_face (cache, attrs, c, base_face) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5857 struct face_cache *cache; |
24995 | 5858 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5859 int c; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5860 struct face *base_face; |
24995 | 5861 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
5862 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 5863 struct face *face, *default_face; |
26875
d6aa11f2a4af
(choose_face_fontset_font): Delete codes for a
Kenichi Handa <handa@m17n.org>
parents:
26759
diff
changeset
|
5864 struct frame *f; |
24995 | 5865 Lisp_Object stipple, overline, strike_through, box; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5866 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5867 xassert (FRAME_WINDOW_P (cache->f)); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5868 xassert (SINGLE_BYTE_CHAR_P (c) |
28753
582ba7ff96f7
(realize_x_face): Fix the argument of the second
Kenichi Handa <handa@m17n.org>
parents:
28620
diff
changeset
|
5869 || base_face); |
24995 | 5870 |
5871 /* Allocate a new realized face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5872 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5873 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5874 f = cache->f; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5875 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5876 /* 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
|
5877 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
|
5878 different font. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5879 if (!SINGLE_BYTE_CHAR_P (c)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5880 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5881 bcopy (base_face, face, sizeof *face); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5882 face->gc = 0; |
29394
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5883 |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5884 /* Don't try to free the colors copied bitwise from BASE_FACE. */ |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5885 face->foreground_defaulted_p = 1; |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5886 face->background_defaulted_p = 1; |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5887 face->underline_defaulted_p = 1; |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5888 face->overline_color_defaulted_p = 1; |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5889 face->strike_through_color_defaulted_p = 1; |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5890 face->box_color_defaulted_p = 1; |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5891 |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5892 /* to force realize_face to load font */ |
84489c72fb8e
(realize_x_face): When copying BASE_FACE bitwise to the
Gerd Moellmann <gerd@gnu.org>
parents:
29284
diff
changeset
|
5893 face->font = NULL; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5894 return face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5895 } |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5896 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5897 /* 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
|
5898 |
24995 | 5899 /* Determine the font to use. Most of the time, the font will be |
5900 the same as the font of the default face, so try that first. */ | |
5901 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
5902 if (default_face | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5903 && FACE_SUITABLE_FOR_CHAR_P (default_face, c) |
24995 | 5904 && lface_same_font_attributes_p (default_face->lface, attrs)) |
5905 { | |
5906 face->font = default_face->font; | |
5907 face->fontset = default_face->fontset; | |
5908 face->font_info_id = default_face->font_info_id; | |
5909 face->font_name = default_face->font_name; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5910 face->ascii_face = face; |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5911 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5912 /* 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
|
5913 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
|
5914 face. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5915 face->fontset |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5916 = make_fontset_for_ascii_face (f, default_face->fontset); |
24995 | 5917 } |
5918 else | |
5919 { | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5920 /* 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
|
5921 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
|
5922 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
|
5923 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
|
5924 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
|
5925 constructed from ATTRS. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5926 face->fontset |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
5927 = 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
|
5928 face->font = NULL; /* to force realize_face to load font */ |
24995 | 5929 } |
5930 | |
5931 /* Load colors, and set remaining attributes. */ | |
5932 | |
5933 load_face_colors (f, face, attrs); | |
5934 | |
5935 /* Set up box. */ | |
5936 box = attrs[LFACE_BOX_INDEX]; | |
5937 if (STRINGP (box)) | |
5938 { | |
5939 /* A simple box of line width 1 drawn in color given by | |
5940 the string. */ | |
5941 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX], | |
5942 LFACE_BOX_INDEX); | |
5943 face->box = FACE_SIMPLE_BOX; | |
5944 face->box_line_width = 1; | |
5945 } | |
5946 else if (INTEGERP (box)) | |
5947 { | |
5948 /* Simple box of specified line width in foreground color of the | |
5949 face. */ | |
5950 xassert (XINT (box) > 0); | |
5951 face->box = FACE_SIMPLE_BOX; | |
5952 face->box_line_width = XFASTINT (box); | |
5953 face->box_color = face->foreground; | |
5954 face->box_color_defaulted_p = 1; | |
5955 } | |
5956 else if (CONSP (box)) | |
5957 { | |
5958 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW | |
5959 being one of `raised' or `sunken'. */ | |
5960 face->box = FACE_SIMPLE_BOX; | |
5961 face->box_color = face->foreground; | |
5962 face->box_color_defaulted_p = 1; | |
5963 face->box_line_width = 1; | |
5964 | |
5965 while (CONSP (box)) | |
5966 { | |
5967 Lisp_Object keyword, value; | |
5968 | |
5969 keyword = XCAR (box); | |
5970 box = XCDR (box); | |
5971 | |
5972 if (!CONSP (box)) | |
5973 break; | |
5974 value = XCAR (box); | |
5975 box = XCDR (box); | |
5976 | |
5977 if (EQ (keyword, QCline_width)) | |
5978 { | |
5979 if (INTEGERP (value) && XINT (value) > 0) | |
5980 face->box_line_width = XFASTINT (value); | |
5981 } | |
5982 else if (EQ (keyword, QCcolor)) | |
5983 { | |
5984 if (STRINGP (value)) | |
5985 { | |
5986 face->box_color = load_color (f, face, value, | |
5987 LFACE_BOX_INDEX); | |
5988 face->use_box_color_for_shadows_p = 1; | |
5989 } | |
5990 } | |
5991 else if (EQ (keyword, QCstyle)) | |
5992 { | |
5993 if (EQ (value, Qreleased_button)) | |
5994 face->box = FACE_RAISED_BOX; | |
5995 else if (EQ (value, Qpressed_button)) | |
5996 face->box = FACE_SUNKEN_BOX; | |
5997 } | |
5998 } | |
5999 } | |
6000 | |
6001 /* Text underline, overline, strike-through. */ | |
6002 | |
6003 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt)) | |
6004 { | |
6005 /* Use default color (same as foreground color). */ | |
6006 face->underline_p = 1; | |
6007 face->underline_defaulted_p = 1; | |
6008 face->underline_color = 0; | |
6009 } | |
6010 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX])) | |
6011 { | |
6012 /* Use specified color. */ | |
6013 face->underline_p = 1; | |
6014 face->underline_defaulted_p = 0; | |
6015 face->underline_color | |
6016 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX], | |
6017 LFACE_UNDERLINE_INDEX); | |
6018 } | |
6019 else if (NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6020 { | |
6021 face->underline_p = 0; | |
6022 face->underline_defaulted_p = 0; | |
6023 face->underline_color = 0; | |
6024 } | |
6025 | |
6026 overline = attrs[LFACE_OVERLINE_INDEX]; | |
6027 if (STRINGP (overline)) | |
6028 { | |
6029 face->overline_color | |
6030 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX], | |
6031 LFACE_OVERLINE_INDEX); | |
6032 face->overline_p = 1; | |
6033 } | |
6034 else if (EQ (overline, Qt)) | |
6035 { | |
6036 face->overline_color = face->foreground; | |
6037 face->overline_color_defaulted_p = 1; | |
6038 face->overline_p = 1; | |
6039 } | |
6040 | |
6041 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX]; | |
6042 if (STRINGP (strike_through)) | |
6043 { | |
6044 face->strike_through_color | |
6045 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX], | |
6046 LFACE_STRIKE_THROUGH_INDEX); | |
6047 face->strike_through_p = 1; | |
6048 } | |
6049 else if (EQ (strike_through, Qt)) | |
6050 { | |
6051 face->strike_through_color = face->foreground; | |
6052 face->strike_through_color_defaulted_p = 1; | |
6053 face->strike_through_p = 1; | |
6054 } | |
6055 | |
6056 stipple = attrs[LFACE_STIPPLE_INDEX]; | |
6057 if (!NILP (stipple)) | |
6058 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h); | |
6059 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6060 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c)); |
24995 | 6061 return face; |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6062 #endif /* HAVE_WINDOW_SYSTEM */ |
24995 | 6063 } |
6064 | |
6065 | |
6066 /* 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
|
6067 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
|
6068 pointer to the newly created realized face. */ |
24995 | 6069 |
6070 static struct face * | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6071 realize_tty_face (cache, attrs, c) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6072 struct face_cache *cache; |
24995 | 6073 Lisp_Object *attrs; |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6074 int c; |
24995 | 6075 { |
6076 struct face *face; | |
6077 int weight, slant; | |
6078 Lisp_Object color; | |
28412
1a817fd04b31
(realize_tty_face): Use find_symbol_value instead
Gerd Moellmann <gerd@gnu.org>
parents:
28409
diff
changeset
|
6079 Lisp_Object tty_defined_color_alist |
1a817fd04b31
(realize_tty_face): Use find_symbol_value instead
Gerd Moellmann <gerd@gnu.org>
parents:
28409
diff
changeset
|
6080 = find_symbol_value (intern ("tty-defined-color-alist")); |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6081 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
|
6082 Lisp_Object frame; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6083 int face_colors_defaulted = 0; |
24995 | 6084 |
6085 /* Frame must be a termcap frame. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6086 xassert (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f)); |
24995 | 6087 |
6088 /* Allocate a new realized face. */ | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6089 face = make_realized_face (attrs); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6090 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty"; |
24995 | 6091 |
6092 /* Map face attributes to TTY appearances. We map slant to | |
6093 dimmed text because we want italic text to appear differently | |
6094 and because dimmed text is probably used infrequently. */ | |
6095 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]); | |
6096 slant = face_numeric_slant (attrs[LFACE_SLANT_INDEX]); | |
6097 | |
6098 if (weight > XLFD_WEIGHT_MEDIUM) | |
6099 face->tty_bold_p = 1; | |
6100 if (weight < XLFD_WEIGHT_MEDIUM || slant != XLFD_SLANT_ROMAN) | |
6101 face->tty_dim_p = 1; | |
6102 if (!NILP (attrs[LFACE_UNDERLINE_INDEX])) | |
6103 face->tty_underline_p = 1; | |
6104 if (!NILP (attrs[LFACE_INVERSE_INDEX])) | |
6105 face->tty_reverse_p = 1; | |
6106 | |
6107 /* 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
|
6108 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
|
6109 face->background = FACE_TTY_DEFAULT_BG_COLOR; |
24995 | 6110 |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6111 XSETFRAME (frame, cache->f); |
24995 | 6112 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
|
6113 if (STRINGP (color) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6114 && XSTRING (color)->size |
28412
1a817fd04b31
(realize_tty_face): Use find_symbol_value instead
Gerd Moellmann <gerd@gnu.org>
parents:
28409
diff
changeset
|
6115 && CONSP (tty_defined_color_alist) |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6116 && (color = Fassoc (color, call1 (tty_color_alist, frame)), |
24995 | 6117 CONSP (color))) |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6118 /* 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
|
6119 (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
|
6120 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
|
6121 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6122 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
|
6123 && STRINGP (attrs[LFACE_FOREGROUND_INDEX])) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6124 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6125 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
|
6126 attrs[LFACE_FOREGROUND_INDEX], |
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6127 LFACE_FOREGROUND_INDEX); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6128 |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6129 #if defined (MSDOS) || defined (WINDOWSNT) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6130 /* 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
|
6131 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
|
6132 #ifdef MSDOS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6133 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
|
6134 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6135 #endif /* MSDOS */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6136 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6137 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
|
6138 || face->foreground == FACE_TTY_DEFAULT_COLOR) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6139 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6140 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
|
6141 attrs[LFACE_FOREGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6142 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
|
6143 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6144 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6145 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
|
6146 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6147 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
|
6148 attrs[LFACE_FOREGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6149 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
|
6150 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6151 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6152 #ifdef MSDOS |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6153 } |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6154 #endif |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6155 #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
|
6156 } |
25114
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6157 |
24995 | 6158 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
|
6159 if (STRINGP (color) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6160 && XSTRING (color)->size |
28412
1a817fd04b31
(realize_tty_face): Use find_symbol_value instead
Gerd Moellmann <gerd@gnu.org>
parents:
28409
diff
changeset
|
6161 && CONSP (tty_defined_color_alist) |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6162 && (color = Fassoc (color, call1 (tty_color_alist, frame)), |
24995 | 6163 CONSP (color))) |
27088
23bd823f11f4
(tty_defined_color): Pass frame to tty-color-desc. The
Eli Zaretskii <eliz@gnu.org>
parents:
26976
diff
changeset
|
6164 /* 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
|
6165 (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
|
6166 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
|
6167 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6168 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
|
6169 && STRINGP (attrs[LFACE_BACKGROUND_INDEX])) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6170 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6171 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
|
6172 attrs[LFACE_BACKGROUND_INDEX], |
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6173 LFACE_BACKGROUND_INDEX); |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6174 #if defined (MSDOS) || defined (WINDOWSNT) |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6175 /* 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
|
6176 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
|
6177 #ifdef MSDOS |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6178 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
|
6179 { |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6180 #endif /* MSDOS */ |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6181 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6182 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
|
6183 || face->background == FACE_TTY_DEFAULT_COLOR) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6184 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6185 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
|
6186 attrs[LFACE_BACKGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6187 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
|
6188 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6189 } |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6190 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
|
6191 { |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6192 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
|
6193 attrs[LFACE_BACKGROUND_INDEX] = |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6194 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
|
6195 face_colors_defaulted = 1; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26875
diff
changeset
|
6196 } |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6197 #ifdef MSDOS |
25213
11d01c90da6d
(realize_default_face) [MSDOS]: Don't take default
Eli Zaretskii <eliz@gnu.org>
parents:
25114
diff
changeset
|
6198 } |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6199 #endif |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6200 #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
|
6201 } |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6202 |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6203 /* 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
|
6204 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
|
6205 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
|
6206 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
|
6207 { |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6208 unsigned long tem = face->foreground; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6209 |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6210 face->foreground = face->background; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6211 face->background = tem; |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6212 } |
be5d3e21fbd7
(load_color): Remove static from definition and remove
Eli Zaretskii <eliz@gnu.org>
parents:
25092
diff
changeset
|
6213 |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6214 if (tty_suppress_bold_inverse_default_colors_p |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6215 && face->tty_bold_p |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6216 && face->background == FACE_TTY_DEFAULT_FG_COLOR |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6217 && face->foreground == FACE_TTY_DEFAULT_BG_COLOR) |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6218 face->tty_bold_p = 0; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6219 |
24995 | 6220 return face; |
6221 } | |
6222 | |
6223 | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6224 DEFUN ("tty-suppress-bold-inverse-default-colors", |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6225 Ftty_suppress_bold_inverse_default_colors, |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6226 Stty_suppress_bold_inverse_default_colors, 1, 1, 0, |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6227 "Suppress/allow boldness of faces with inverse default colors.\n\ |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6228 SUPPRESS non-nil means suppress it.\n\ |
28620
8208dba7c326
(Ftty_suppress_bold_inverse_default_colors): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
28544
diff
changeset
|
6229 This affects bold faces on TTYs whose foreground is the default background\n\ |
8208dba7c326
(Ftty_suppress_bold_inverse_default_colors): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
28544
diff
changeset
|
6230 color of the display and whose background is the default foreground color.\n\ |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6231 For such faces, no bold text will be displayed.") |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6232 (suppress) |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6233 Lisp_Object suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6234 { |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6235 tty_suppress_bold_inverse_default_colors_p = !NILP (suppress); |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6236 ++face_change_count; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6237 return suppress; |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6238 } |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6239 |
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6240 |
24995 | 6241 |
6242 /*********************************************************************** | |
6243 Computing Faces | |
6244 ***********************************************************************/ | |
6245 | |
6246 /* Return the ID of the face to use to display character CH with face | |
6247 property PROP on frame F in current_buffer. */ | |
6248 | |
6249 int | |
6250 compute_char_face (f, ch, prop) | |
6251 struct frame *f; | |
6252 int ch; | |
6253 Lisp_Object prop; | |
6254 { | |
6255 int face_id; | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6256 |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6257 if (NILP (current_buffer->enable_multibyte_characters)) |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6258 ch = -1; |
24995 | 6259 |
6260 if (NILP (prop)) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6261 { |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6262 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
|
6263 face_id = FACE_FOR_CHAR (f, face, ch); |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6264 } |
24995 | 6265 else |
6266 { | |
6267 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6268 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); | |
6269 bcopy (default_face->lface, attrs, sizeof attrs); | |
6270 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
|
6271 face_id = lookup_face (f, attrs, ch, NULL); |
24995 | 6272 } |
6273 | |
6274 return face_id; | |
6275 } | |
6276 | |
6277 | |
6278 /* Return the face ID associated with buffer position POS for | |
6279 displaying ASCII characters. Return in *ENDPTR the position at | |
6280 which a different face is needed, as far as text properties and | |
6281 overlays are concerned. W is a window displaying current_buffer. | |
6282 | |
6283 REGION_BEG, REGION_END delimit the region, so it can be | |
6284 highlighted. | |
6285 | |
6286 LIMIT is a position not to scan beyond. That is to limit the time | |
6287 this function can take. | |
6288 | |
6289 If MOUSE is non-zero, use the character's mouse-face, not its face. | |
6290 | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6291 The face returned is suitable for displaying ASCII characters. */ |
24995 | 6292 |
6293 int | |
6294 face_at_buffer_position (w, pos, region_beg, region_end, | |
6295 endptr, limit, mouse) | |
2391 | 6296 struct window *w; |
2342 | 6297 int pos; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6298 int region_beg, region_end; |
2342 | 6299 int *endptr; |
5084
863e092a5891
(compute_char_face): Accept new arg LIMIT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6300 int limit; |
6615
96ddf85642d1
(compute_char_face): New arg MOUSE.
Richard M. Stallman <rms@gnu.org>
parents:
5858
diff
changeset
|
6301 int mouse; |
2342 | 6302 { |
24995 | 6303 struct frame *f = XFRAME (w->frame); |
6304 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
|
6305 Lisp_Object prop, position; |
24995 | 6306 int i, noverlays; |
2342 | 6307 Lisp_Object *overlay_vec; |
2391 | 6308 Lisp_Object frame; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6309 int endpos; |
24995 | 6310 Lisp_Object propname = mouse ? Qmouse_face : Qface; |
6311 Lisp_Object limit1, end; | |
6312 struct face *default_face; | |
6313 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
|
6314 |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6315 /* 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
|
6316 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
|
6317 /* xassert (XBUFFER (w->buffer) == current_buffer); */ |
2391 | 6318 |
9284
a969e0eefaf5
(compute_char_face): Use new accessor macros instead of calling XSET directly.
Karl Heuer <kwzh@gnu.org>
parents:
9186
diff
changeset
|
6319 XSETFRAME (frame, f); |
24995 | 6320 XSETFASTINT (position, pos); |
2342 | 6321 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6322 endpos = ZV; |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6323 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
|
6324 endpos = region_beg; |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6325 |
24995 | 6326 /* Get the `face' or `mouse_face' text property at POS, and |
6327 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
|
6328 prop = Fget_text_property (position, propname, w->buffer); |
24995 | 6329 XSETFASTINT (limit1, (limit < endpos ? limit : endpos)); |
6330 end = Fnext_single_property_change (position, propname, w->buffer, limit1); | |
6331 if (INTEGERP (end)) | |
6332 endpos = XINT (end); | |
6333 | |
6334 /* 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
|
6335 { |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6336 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
|
6337 int len; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6338 |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6339 /* 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
|
6340 len = 40; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6341 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
|
6342 noverlays = overlays_at (pos, 0, &overlay_vec, &len, |
24995 | 6343 &next_overlay, NULL); |
6344 | |
6345 /* If there are more than 40, make enough space for all, and try | |
6346 again. */ | |
2838
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6347 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
|
6348 { |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6349 len = noverlays; |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6350 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
|
6351 noverlays = overlays_at (pos, 0, &overlay_vec, &len, |
24995 | 6352 &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
|
6353 } |
5f6a2d52d2ef
(compute_char_face): Pass 0 as EXTEND arg to overlays_at.
Richard M. Stallman <rms@gnu.org>
parents:
2821
diff
changeset
|
6354 |
2784
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6355 if (next_overlay < endpos) |
f8c6796b7777
* xfaces.c (compute_char_face): When merging the overlays,
Jim Blandy <jimb@redhat.com>
parents:
2767
diff
changeset
|
6356 endpos = next_overlay; |
2767
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6357 } |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6358 |
482fa0725db6
* xfaces.c (intern_frame_face): Exchange order of arguments, to
Jim Blandy <jimb@redhat.com>
parents:
2743
diff
changeset
|
6359 *endptr = endpos; |
2342 | 6360 |
24995 | 6361 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); |
6362 | |
6363 /* Optimize common cases where we can use the default face. */ | |
6364 if (noverlays == 0 | |
6365 && NILP (prop) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6366 && !(pos >= region_beg && pos < region_end)) |
24995 | 6367 return DEFAULT_FACE_ID; |
6368 | |
6369 /* Begin with attributes from the default face. */ | |
6370 bcopy (default_face->lface, attrs, sizeof attrs); | |
6371 | |
6372 /* Merge in attributes specified via text properties. */ | |
6373 if (!NILP (prop)) | |
6374 merge_face_vector_with_property (f, attrs, prop); | |
6375 | |
6376 /* 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
|
6377 noverlays = sort_overlays (overlay_vec, noverlays, w); |
2342 | 6378 for (i = 0; i < noverlays; i++) |
6379 { | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6380 Lisp_Object oend; |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6381 int oendpos; |
9186
45bac5feb065
(compute_char_face): Handle list as overlay face property.
Richard M. Stallman <rms@gnu.org>
parents:
9184
diff
changeset
|
6382 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6383 prop = Foverlay_get (overlay_vec[i], propname); |
24995 | 6384 if (!NILP (prop)) |
6385 merge_face_vector_with_property (f, attrs, prop); | |
2342 | 6386 |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6387 oend = OVERLAY_END (overlay_vec[i]); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6388 oendpos = OVERLAY_POSITION (oend); |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6389 if (oendpos < endpos) |
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6390 endpos = oendpos; |
2342 | 6391 } |
6392 | |
24995 | 6393 /* 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
|
6394 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
|
6395 { |
24995 | 6396 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
6397 merge_face_vectors (XVECTOR (region_face)->contents, attrs); | |
6398 | |
2795
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6399 if (region_end < endpos) |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6400 endpos = region_end; |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6401 } |
e97e96fb0cb8
(compute_char_face): New args REGION_BEG, REGION_END.
Richard M. Stallman <rms@gnu.org>
parents:
2784
diff
changeset
|
6402 |
2342 | 6403 *endptr = endpos; |
6404 | |
24995 | 6405 /* 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
|
6406 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6407 return lookup_face (f, attrs, 0, NULL); |
2342 | 6408 } |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6409 |
24995 | 6410 |
6411 /* 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
|
6412 window W, for ASCII characters. |
24995 | 6413 |
6414 If STRING is an overlay string, it comes from position BUFPOS in | |
6415 current_buffer, otherwise BUFPOS is zero to indicate that STRING is | |
6416 not an overlay string. W must display the current buffer. | |
6417 REGION_BEG and REGION_END give the start and end positions of the | |
6418 region; both are -1 if no region is visible. BASE_FACE_ID is the | |
6419 id of the basic face to merge with. It is usually equal to | |
25546 | 6420 DEFAULT_FACE_ID but can be MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID |
24995 | 6421 for strings displayed in the mode or top line. |
6422 | |
6423 Set *ENDPTR to the next position where to check for faces in | |
6424 STRING; -1 if the face is constant from POS to the end of the | |
6425 string. | |
6426 | |
6427 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
|
6428 for displaying ASCII characters. */ |
24995 | 6429 |
6430 int | |
6431 face_at_string_position (w, string, pos, bufpos, region_beg, | |
6432 region_end, endptr, base_face_id) | |
6433 struct window *w; | |
6434 Lisp_Object string; | |
6435 int pos, bufpos; | |
6436 int region_beg, region_end; | |
6437 int *endptr; | |
6438 enum face_id base_face_id; | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6439 { |
24995 | 6440 Lisp_Object prop, position, end, limit; |
6441 struct frame *f = XFRAME (WINDOW_FRAME (w)); | |
6442 Lisp_Object attrs[LFACE_VECTOR_SIZE]; | |
6443 struct face *base_face; | |
6444 int multibyte_p = STRING_MULTIBYTE (string); | |
6445 | |
6446 /* Get the value of the face property at the current position within | |
6447 STRING. Value is nil if there is no face property. */ | |
6448 XSETFASTINT (position, pos); | |
6449 prop = Fget_text_property (position, Qface, string); | |
6450 | |
6451 /* Get the next position at which to check for faces. Value of end | |
6452 is nil if face is constant all the way to the end of the string. | |
6453 Otherwise it is a string position where to check faces next. | |
6454 Limit is the maximum position up to which to check for property | |
6455 changes in Fnext_single_property_change. Strings are usually | |
6456 short, so set the limit to the end of the string. */ | |
6457 XSETFASTINT (limit, XSTRING (string)->size); | |
6458 end = Fnext_single_property_change (position, Qface, string, limit); | |
6459 if (INTEGERP (end)) | |
6460 *endptr = XFASTINT (end); | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6461 else |
24995 | 6462 *endptr = -1; |
6463 | |
6464 base_face = FACE_FROM_ID (f, base_face_id); | |
6465 xassert (base_face); | |
6466 | |
6467 /* Optimize the default case that there is no face property and we | |
6468 are not in the region. */ | |
6469 if (NILP (prop) | |
6470 && (base_face_id != DEFAULT_FACE_ID | |
6471 /* BUFPOS <= 0 means STRING is not an overlay string, so | |
6472 that the region doesn't have to be taken into account. */ | |
6473 || bufpos <= 0 | |
6474 || bufpos < region_beg | |
6475 || bufpos >= region_end) | |
6476 && (multibyte_p | |
6477 /* We can't realize faces for different charsets differently | |
6478 if we don't have fonts, so we can stop here if not working | |
6479 on a window-system frame. */ | |
6480 || !FRAME_WINDOW_P (f) | |
28230
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6481 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0))) |
24995 | 6482 return base_face->id; |
6483 | |
6484 /* Begin with attributes from the base face. */ | |
6485 bcopy (base_face->lface, attrs, sizeof attrs); | |
6486 | |
6487 /* Merge in attributes specified via text properties. */ | |
6488 if (!NILP (prop)) | |
6489 merge_face_vector_with_property (f, attrs, prop); | |
6490 | |
6491 /* If in the region, merge in the region face. */ | |
6492 if (bufpos | |
6493 && bufpos >= region_beg | |
6494 && bufpos < region_end) | |
19128
e789b647f15b
(merge_face_list): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18723
diff
changeset
|
6495 { |
24995 | 6496 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0); |
6497 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
|
6498 } |
24995 | 6499 |
6500 /* 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
|
6501 or realize a new one for ASCII characters. */ |
8e330f701881
(Qx_charset_registry, Vface_default_registry):
Kenichi Handa <handa@m17n.org>
parents:
27984
diff
changeset
|
6502 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
|
6503 } |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6504 |
96b4623fdeb3
* xterm.h: New section for declarations for xfaces.c.
Jim Blandy <jimb@redhat.com>
parents:
3065
diff
changeset
|
6505 |
2336 | 6506 |
24995 | 6507 /*********************************************************************** |
6508 Tests | |
6509 ***********************************************************************/ | |
6510 | |
6511 #if GLYPH_DEBUG | |
6512 | |
6513 /* Print the contents of the realized face FACE to stderr. */ | |
6514 | |
6515 static void | |
6516 dump_realized_face (face) | |
6517 struct face *face; | |
2336 | 6518 { |
24995 | 6519 fprintf (stderr, "ID: %d\n", face->id); |
6520 #ifdef HAVE_X_WINDOWS | |
6521 fprintf (stderr, "gc: %d\n", (int) face->gc); | |
6522 #endif | |
6523 fprintf (stderr, "foreground: 0x%lx (%s)\n", | |
6524 face->foreground, | |
6525 XSTRING (face->lface[LFACE_FOREGROUND_INDEX])->data); | |
6526 fprintf (stderr, "background: 0x%lx (%s)\n", | |
6527 face->background, | |
6528 XSTRING (face->lface[LFACE_BACKGROUND_INDEX])->data); | |
6529 fprintf (stderr, "font_name: %s (%s)\n", | |
6530 face->font_name, | |
6531 XSTRING (face->lface[LFACE_FAMILY_INDEX])->data); | |
6532 #ifdef HAVE_X_WINDOWS | |
6533 fprintf (stderr, "font = %p\n", face->font); | |
6534 #endif | |
6535 fprintf (stderr, "font_info_id = %d\n", face->font_info_id); | |
6536 fprintf (stderr, "fontset: %d\n", face->fontset); | |
6537 fprintf (stderr, "underline: %d (%s)\n", | |
6538 face->underline_p, | |
6539 XSTRING (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))->data); | |
6540 fprintf (stderr, "hash: %d\n", face->hash); | |
6541 fprintf (stderr, "charset: %d\n", face->charset); | |
6542 } | |
6543 | |
6544 | |
6545 DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, "") | |
6546 (n) | |
6547 Lisp_Object n; | |
6548 { | |
6549 if (NILP (n)) | |
2336 | 6550 { |
24995 | 6551 int i; |
6552 | |
6553 fprintf (stderr, "font selection order: "); | |
6554 for (i = 0; i < DIM (font_sort_order); ++i) | |
6555 fprintf (stderr, "%d ", font_sort_order[i]); | |
6556 fprintf (stderr, "\n"); | |
6557 | |
6558 fprintf (stderr, "alternative fonts: "); | |
6559 debug_print (Vface_alternative_font_family_alist); | |
6560 fprintf (stderr, "\n"); | |
6561 | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6562 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i) |
24995 | 6563 Fdump_face (make_number (i)); |
2336 | 6564 } |
24995 | 6565 else |
6566 { | |
6567 struct face *face; | |
6568 CHECK_NUMBER (n, 0); | |
25678
1878f7ae0df5
(frame_or_selected_frame): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents:
25661
diff
changeset
|
6569 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n)); |
24995 | 6570 if (face == NULL) |
6571 error ("Not a valid face"); | |
6572 dump_realized_face (face); | |
6573 } | |
6574 | |
2336 | 6575 return Qnil; |
6576 } | |
6577 | |
6578 | |
24995 | 6579 DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources, |
6580 0, 0, 0, "") | |
6581 () | |
2336 | 6582 { |
24995 | 6583 fprintf (stderr, "number of colors = %d\n", ncolors_allocated); |
6584 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated); | |
6585 fprintf (stderr, "number of GCs = %d\n", ngcs); | |
2336 | 6586 return Qnil; |
6587 } | |
24995 | 6588 |
6589 #endif /* GLYPH_DEBUG != 0 */ | |
6590 | |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6591 |
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6592 |
24995 | 6593 /*********************************************************************** |
6594 Initialization | |
6595 ***********************************************************************/ | |
2730
139740855fa6
* xfaces.c (Fmake_face_internal): Do nothing for non-X frames.
Jim Blandy <jimb@redhat.com>
parents:
2538
diff
changeset
|
6596 |
2336 | 6597 void |
2391 | 6598 syms_of_xfaces () |
2336 | 6599 { |
2391 | 6600 Qface = intern ("face"); |
6601 staticpro (&Qface); | |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6602 Qbitmap_spec_p = intern ("bitmap-spec-p"); |
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6603 staticpro (&Qbitmap_spec_p); |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6604 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
|
6605 staticpro (&Qframe_update_face_colors); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6606 |
24995 | 6607 /* Lisp face attribute keywords. */ |
6608 QCfamily = intern (":family"); | |
6609 staticpro (&QCfamily); | |
6610 QCheight = intern (":height"); | |
6611 staticpro (&QCheight); | |
6612 QCweight = intern (":weight"); | |
6613 staticpro (&QCweight); | |
6614 QCslant = intern (":slant"); | |
6615 staticpro (&QCslant); | |
6616 QCunderline = intern (":underline"); | |
6617 staticpro (&QCunderline); | |
6618 QCinverse_video = intern (":inverse-video"); | |
6619 staticpro (&QCinverse_video); | |
6620 QCreverse_video = intern (":reverse-video"); | |
6621 staticpro (&QCreverse_video); | |
6622 QCforeground = intern (":foreground"); | |
6623 staticpro (&QCforeground); | |
6624 QCbackground = intern (":background"); | |
6625 staticpro (&QCbackground); | |
6626 QCstipple = intern (":stipple");; | |
6627 staticpro (&QCstipple); | |
6628 QCwidth = intern (":width"); | |
6629 staticpro (&QCwidth); | |
6630 QCfont = intern (":font"); | |
6631 staticpro (&QCfont); | |
6632 QCbold = intern (":bold"); | |
6633 staticpro (&QCbold); | |
6634 QCitalic = intern (":italic"); | |
6635 staticpro (&QCitalic); | |
6636 QCoverline = intern (":overline"); | |
6637 staticpro (&QCoverline); | |
6638 QCstrike_through = intern (":strike-through"); | |
6639 staticpro (&QCstrike_through); | |
6640 QCbox = intern (":box"); | |
6641 staticpro (&QCbox); | |
6642 | |
6643 /* Symbols used for Lisp face attribute values. */ | |
6644 QCcolor = intern (":color"); | |
6645 staticpro (&QCcolor); | |
6646 QCline_width = intern (":line-width"); | |
6647 staticpro (&QCline_width); | |
6648 QCstyle = intern (":style"); | |
6649 staticpro (&QCstyle); | |
6650 Qreleased_button = intern ("released-button"); | |
6651 staticpro (&Qreleased_button); | |
6652 Qpressed_button = intern ("pressed-button"); | |
6653 staticpro (&Qpressed_button); | |
6654 Qnormal = intern ("normal"); | |
6655 staticpro (&Qnormal); | |
6656 Qultra_light = intern ("ultra-light"); | |
6657 staticpro (&Qultra_light); | |
6658 Qextra_light = intern ("extra-light"); | |
6659 staticpro (&Qextra_light); | |
6660 Qlight = intern ("light"); | |
6661 staticpro (&Qlight); | |
6662 Qsemi_light = intern ("semi-light"); | |
6663 staticpro (&Qsemi_light); | |
6664 Qsemi_bold = intern ("semi-bold"); | |
6665 staticpro (&Qsemi_bold); | |
6666 Qbold = intern ("bold"); | |
6667 staticpro (&Qbold); | |
6668 Qextra_bold = intern ("extra-bold"); | |
6669 staticpro (&Qextra_bold); | |
6670 Qultra_bold = intern ("ultra-bold"); | |
6671 staticpro (&Qultra_bold); | |
6672 Qoblique = intern ("oblique"); | |
6673 staticpro (&Qoblique); | |
6674 Qitalic = intern ("italic"); | |
6675 staticpro (&Qitalic); | |
6676 Qreverse_oblique = intern ("reverse-oblique"); | |
6677 staticpro (&Qreverse_oblique); | |
6678 Qreverse_italic = intern ("reverse-italic"); | |
6679 staticpro (&Qreverse_italic); | |
6680 Qultra_condensed = intern ("ultra-condensed"); | |
6681 staticpro (&Qultra_condensed); | |
6682 Qextra_condensed = intern ("extra-condensed"); | |
6683 staticpro (&Qextra_condensed); | |
6684 Qcondensed = intern ("condensed"); | |
6685 staticpro (&Qcondensed); | |
6686 Qsemi_condensed = intern ("semi-condensed"); | |
6687 staticpro (&Qsemi_condensed); | |
6688 Qsemi_expanded = intern ("semi-expanded"); | |
6689 staticpro (&Qsemi_expanded); | |
6690 Qexpanded = intern ("expanded"); | |
6691 staticpro (&Qexpanded); | |
6692 Qextra_expanded = intern ("extra-expanded"); | |
6693 staticpro (&Qextra_expanded); | |
6694 Qultra_expanded = intern ("ultra-expanded"); | |
6695 staticpro (&Qultra_expanded); | |
6696 Qbackground_color = intern ("background-color"); | |
6697 staticpro (&Qbackground_color); | |
6698 Qforeground_color = intern ("foreground-color"); | |
6699 staticpro (&Qforeground_color); | |
6700 Qunspecified = intern ("unspecified"); | |
6701 staticpro (&Qunspecified); | |
6702 | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6703 Qface_alias = intern ("face-alias"); |
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6704 staticpro (&Qface_alias); |
24995 | 6705 Qdefault = intern ("default"); |
6706 staticpro (&Qdefault); | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25389
diff
changeset
|
6707 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
|
6708 staticpro (&Qtool_bar); |
24995 | 6709 Qregion = intern ("region"); |
6710 staticpro (&Qregion); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6711 Qfringe = intern ("fringe"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6712 staticpro (&Qfringe); |
25546 | 6713 Qheader_line = intern ("header-line"); |
6714 staticpro (&Qheader_line); | |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6715 Qscroll_bar = intern ("scroll-bar"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6716 staticpro (&Qscroll_bar); |
25883
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
6717 Qmenu = intern ("menu"); |
2955c353186a
(toplevel) [USE_MOTIF]: Include some Motif headers.
Gerd Moellmann <gerd@gnu.org>
parents:
25799
diff
changeset
|
6718 staticpro (&Qmenu); |
25592
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6719 Qcursor = intern ("cursor"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6720 staticpro (&Qcursor); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6721 Qborder = intern ("border"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6722 staticpro (&Qborder); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6723 Qmouse = intern ("mouse"); |
c6be980d15a6
(recompute_basic_faces): Clear face cache.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6724 staticpro (&Qmouse); |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6725 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
|
6726 staticpro (&Qtty_color_desc); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26601
diff
changeset
|
6727 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
|
6728 staticpro (&Qtty_color_by_index); |
24995 | 6729 |
6730 defsubr (&Sinternal_make_lisp_face); | |
6731 defsubr (&Sinternal_lisp_face_p); | |
6732 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
|
6733 #ifdef HAVE_WINDOW_SYSTEM |
24995 | 6734 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
|
6735 #endif |
27120
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
6736 defsubr (&Scolor_gray_p); |
24a08208cf3a
(syms_of_xfaces): Change Sface_color_gray_p to
Gerd Moellmann <gerd@gnu.org>
parents:
27114
diff
changeset
|
6737 defsubr (&Scolor_supported_p); |
24995 | 6738 defsubr (&Sinternal_get_lisp_face_attribute); |
6739 defsubr (&Sinternal_lisp_face_attribute_values); | |
6740 defsubr (&Sinternal_lisp_face_equal_p); | |
6741 defsubr (&Sinternal_lisp_face_empty_p); | |
6742 defsubr (&Sinternal_copy_lisp_face); | |
6743 defsubr (&Sinternal_merge_in_global_face); | |
6744 defsubr (&Sface_font); | |
6745 defsubr (&Sframe_face_alist); | |
6746 defsubr (&Sinternal_set_font_selection_order); | |
6747 defsubr (&Sinternal_set_alternative_font_family_alist); | |
6748 #if GLYPH_DEBUG | |
6749 defsubr (&Sdump_face); | |
6750 defsubr (&Sshow_face_resources); | |
6751 #endif /* GLYPH_DEBUG */ | |
6752 defsubr (&Sclear_face_cache); | |
28529
b8ac36c58391
(tty_suppress_bold_inverse_default_colors_p): New
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6753 defsubr (&Stty_suppress_bold_inverse_default_colors); |
24995 | 6754 |
29711
913fab478495
(syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
Gerd Moellmann <gerd@gnu.org>
parents:
29599
diff
changeset
|
6755 #if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS |
29599
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
6756 defsubr (&Sdump_colors); |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
6757 #endif |
8a2e32f7717e
(Fdump_colors) [DEBUG_X_COLORS]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
29394
diff
changeset
|
6758 |
25270 | 6759 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit, |
6760 "*Limit for font matching.\n\ | |
6761 If an integer > 0, font matching functions won't load more than\n\ | |
6762 that number of fonts when searching for a matching font."); | |
6763 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT); | |
6764 | |
24995 | 6765 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults, |
6766 "List of global face definitions (for internal use only.)"); | |
6767 Vface_new_frame_defaults = Qnil; | |
6768 | |
6769 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple, | |
6770 "*Default stipple pattern used on monochrome displays.\n\ | |
6771 This stipple pattern is used on monochrome displays\n\ | |
6772 instead of shades of gray for a face background color.\n\ | |
6773 See `set-face-stipple' for possible values for this variable."); | |
6774 Vface_default_stipple = build_string ("gray3"); | |
6775 | |
6776 DEFVAR_LISP ("face-alternative-font-family-alist", | |
6777 &Vface_alternative_font_family_alist, ""); | |
6778 Vface_alternative_font_family_alist = Qnil; | |
6779 | |
6780 #if SCALABLE_FONTS | |
6781 | |
6782 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed, | |
6783 "Allowed scalable fonts.\n\ | |
6784 A value of nil means don't allow any scalable fonts.\n\ | |
6785 A value of t means allow any scalable font.\n\ | |
6786 Otherwise, value must be a list of regular expressions. A font may be\n\ | |
6787 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
|
6788 #ifdef WINDOWSNT |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6789 /* 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
|
6790 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
|
6791 Vscalable_fonts_allowed = Qt; |
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6792 #else |
24995 | 6793 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
|
6794 #endif |
24995 | 6795 #endif /* SCALABLE_FONTS */ |
18083
c361afa561c5
Include frame.h unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
17047
diff
changeset
|
6796 |
27982
86de01dd01eb
Change many FRAME_X... macros to FRAME_WINDOW... or other
Jason Rumney <jasonr@gnu.org>
parents:
27960
diff
changeset
|
6797 #ifdef HAVE_WINDOW_SYSTEM |
25890
b10a34d40b55
(Qbitmap_spec_p): Replaces Qpixmap_spec_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25883
diff
changeset
|
6798 defsubr (&Sbitmap_spec_p); |
24995 | 6799 defsubr (&Sx_list_fonts); |
6800 defsubr (&Sinternal_face_x_get_resource); | |
25661
a6e2ae7964fb
(Fx_family_fonts): Replaces Fx_font_list.
Gerd Moellmann <gerd@gnu.org>
parents:
25592
diff
changeset
|
6801 defsubr (&Sx_family_fonts); |
24995 | 6802 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
|
6803 #endif /* HAVE_WINDOW_SYSTEM */ |
2336 | 6804 } |