428
|
1 /* "Face" primitives
|
|
2 Copyright (C) 1994 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
|
793
|
4 Copyright (C) 1995, 1996, 2001, 2002 Ben Wing.
|
428
|
5 Copyright (C) 1995 Sun Microsystems, Inc.
|
|
6
|
|
7 This file is part of XEmacs.
|
|
8
|
|
9 XEmacs is free software; you can redistribute it and/or modify it
|
|
10 under the terms of the GNU General Public License as published by the
|
|
11 Free Software Foundation; either version 2, or (at your option) any
|
|
12 later version.
|
|
13
|
|
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
17 for more details.
|
|
18
|
|
19 You should have received a copy of the GNU General Public License
|
|
20 along with XEmacs; see the file COPYING. If not, write to
|
|
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
22 Boston, MA 02111-1307, USA. */
|
|
23
|
|
24 /* Synched up with: Not in FSF. */
|
|
25
|
|
26 /* Written by Chuck Thompson and Ben Wing,
|
|
27 based loosely on old face code by Jamie Zawinski. */
|
|
28
|
|
29 #include <config.h>
|
|
30 #include "lisp.h"
|
|
31
|
|
32 #include "buffer.h"
|
872
|
33 #include "device-impl.h"
|
428
|
34 #include "elhash.h"
|
872
|
35 #include "extents-impl.h" /* for extent_face */
|
428
|
36 #include "faces.h"
|
872
|
37 #include "frame-impl.h"
|
428
|
38 #include "glyphs.h"
|
872
|
39 #include "objects-impl.h"
|
428
|
40 #include "specifier.h"
|
|
41 #include "window.h"
|
|
42
|
|
43 Lisp_Object Qfacep;
|
|
44 Lisp_Object Qforeground, Qbackground, Qdisplay_table;
|
|
45 Lisp_Object Qbackground_pixmap, Qunderline, Qdim;
|
|
46 Lisp_Object Qblinking, Qstrikethru;
|
|
47
|
|
48 Lisp_Object Qinit_face_from_resources;
|
|
49 Lisp_Object Qinit_frame_faces;
|
|
50 Lisp_Object Qinit_device_faces;
|
|
51 Lisp_Object Qinit_global_faces;
|
|
52
|
|
53 /* These faces are used directly internally. We use these variables
|
|
54 to be able to reference them directly and save the overhead of
|
|
55 calling Ffind_face. */
|
|
56 Lisp_Object Vdefault_face, Vmodeline_face, Vgui_element_face;
|
|
57 Lisp_Object Vleft_margin_face, Vright_margin_face, Vtext_cursor_face;
|
|
58 Lisp_Object Vpointer_face, Vvertical_divider_face, Vtoolbar_face, Vwidget_face;
|
|
59
|
440
|
60 /* Qdefault, Qhighlight, Qleft_margin, Qright_margin defined in general.c */
|
|
61 Lisp_Object Qmodeline, Qgui_element, Qtext_cursor, Qvertical_divider;
|
428
|
62
|
2867
|
63 Lisp_Object Qface_alias, Qcyclic_face_alias;
|
2865
|
64
|
428
|
65 /* In the old implementation Vface_list was a list of the face names,
|
|
66 not the faces themselves. We now distinguish between permanent and
|
|
67 temporary faces. Permanent faces are kept in a regular hash table,
|
|
68 temporary faces in a weak hash table. */
|
|
69 Lisp_Object Vpermanent_faces_cache;
|
|
70 Lisp_Object Vtemporary_faces_cache;
|
|
71
|
|
72 Lisp_Object Vbuilt_in_face_specifiers;
|
|
73
|
|
74
|
|
75
|
|
76 static Lisp_Object
|
|
77 mark_face (Lisp_Object obj)
|
|
78 {
|
440
|
79 Lisp_Face *face = XFACE (obj);
|
428
|
80
|
|
81 mark_object (face->name);
|
|
82 mark_object (face->doc_string);
|
|
83
|
|
84 mark_object (face->foreground);
|
|
85 mark_object (face->background);
|
|
86 mark_object (face->font);
|
|
87 mark_object (face->display_table);
|
|
88 mark_object (face->background_pixmap);
|
|
89 mark_object (face->underline);
|
|
90 mark_object (face->strikethru);
|
|
91 mark_object (face->highlight);
|
|
92 mark_object (face->dim);
|
|
93 mark_object (face->blinking);
|
|
94 mark_object (face->reverse);
|
|
95
|
|
96 mark_object (face->charsets_warned_about);
|
|
97
|
|
98 return face->plist;
|
|
99 }
|
|
100
|
|
101 static void
|
2286
|
102 print_face (Lisp_Object obj, Lisp_Object printcharfun, int UNUSED (escapeflag))
|
428
|
103 {
|
440
|
104 Lisp_Face *face = XFACE (obj);
|
428
|
105
|
|
106 if (print_readably)
|
|
107 {
|
800
|
108 write_fmt_string_lisp (printcharfun, "#s(face name %S)", 1, face->name);
|
428
|
109 }
|
|
110 else
|
|
111 {
|
800
|
112 write_fmt_string_lisp (printcharfun, "#<face %S", 1, face->name);
|
428
|
113 if (!NILP (face->doc_string))
|
800
|
114 write_fmt_string_lisp (printcharfun, " %S", 1, face->doc_string);
|
826
|
115 write_c_string (printcharfun, ">");
|
428
|
116 }
|
|
117 }
|
|
118
|
|
119 /* Faces are equal if all of their display attributes are equal. We
|
|
120 don't compare names or doc-strings, because that would make equal
|
|
121 be eq.
|
|
122
|
|
123 This isn't concerned with "unspecified" attributes, that's what
|
|
124 #'face-differs-from-default-p is for. */
|
|
125 static int
|
|
126 face_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
|
|
127 {
|
440
|
128 Lisp_Face *f1 = XFACE (obj1);
|
|
129 Lisp_Face *f2 = XFACE (obj2);
|
428
|
130
|
|
131 depth++;
|
|
132
|
|
133 return
|
|
134 (internal_equal (f1->foreground, f2->foreground, depth) &&
|
|
135 internal_equal (f1->background, f2->background, depth) &&
|
|
136 internal_equal (f1->font, f2->font, depth) &&
|
|
137 internal_equal (f1->display_table, f2->display_table, depth) &&
|
|
138 internal_equal (f1->background_pixmap, f2->background_pixmap, depth) &&
|
|
139 internal_equal (f1->underline, f2->underline, depth) &&
|
|
140 internal_equal (f1->strikethru, f2->strikethru, depth) &&
|
|
141 internal_equal (f1->highlight, f2->highlight, depth) &&
|
|
142 internal_equal (f1->dim, f2->dim, depth) &&
|
|
143 internal_equal (f1->blinking, f2->blinking, depth) &&
|
|
144 internal_equal (f1->reverse, f2->reverse, depth) &&
|
|
145
|
|
146 ! plists_differ (f1->plist, f2->plist, 0, 0, depth + 1));
|
|
147 }
|
|
148
|
665
|
149 static Hashcode
|
428
|
150 face_hash (Lisp_Object obj, int depth)
|
|
151 {
|
440
|
152 Lisp_Face *f = XFACE (obj);
|
428
|
153
|
|
154 depth++;
|
|
155
|
|
156 /* No need to hash all of the elements; that would take too long.
|
|
157 Just hash the most common ones. */
|
|
158 return HASH3 (internal_hash (f->foreground, depth),
|
|
159 internal_hash (f->background, depth),
|
|
160 internal_hash (f->font, depth));
|
|
161 }
|
|
162
|
|
163 static Lisp_Object
|
|
164 face_getprop (Lisp_Object obj, Lisp_Object prop)
|
|
165 {
|
440
|
166 Lisp_Face *f = XFACE (obj);
|
428
|
167
|
|
168 return
|
|
169 (EQ (prop, Qforeground) ? f->foreground :
|
|
170 EQ (prop, Qbackground) ? f->background :
|
|
171 EQ (prop, Qfont) ? f->font :
|
|
172 EQ (prop, Qdisplay_table) ? f->display_table :
|
|
173 EQ (prop, Qbackground_pixmap) ? f->background_pixmap :
|
|
174 EQ (prop, Qunderline) ? f->underline :
|
|
175 EQ (prop, Qstrikethru) ? f->strikethru :
|
|
176 EQ (prop, Qhighlight) ? f->highlight :
|
|
177 EQ (prop, Qdim) ? f->dim :
|
|
178 EQ (prop, Qblinking) ? f->blinking :
|
|
179 EQ (prop, Qreverse) ? f->reverse :
|
|
180 EQ (prop, Qdoc_string) ? f->doc_string :
|
|
181 external_plist_get (&f->plist, prop, 0, ERROR_ME));
|
|
182 }
|
|
183
|
|
184 static int
|
|
185 face_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value)
|
|
186 {
|
440
|
187 Lisp_Face *f = XFACE (obj);
|
428
|
188
|
|
189 if (EQ (prop, Qforeground) ||
|
|
190 EQ (prop, Qbackground) ||
|
|
191 EQ (prop, Qfont) ||
|
|
192 EQ (prop, Qdisplay_table) ||
|
|
193 EQ (prop, Qbackground_pixmap) ||
|
|
194 EQ (prop, Qunderline) ||
|
|
195 EQ (prop, Qstrikethru) ||
|
|
196 EQ (prop, Qhighlight) ||
|
|
197 EQ (prop, Qdim) ||
|
|
198 EQ (prop, Qblinking) ||
|
|
199 EQ (prop, Qreverse))
|
|
200 return 0;
|
|
201
|
|
202 if (EQ (prop, Qdoc_string))
|
|
203 {
|
|
204 if (!NILP (value))
|
|
205 CHECK_STRING (value);
|
|
206 f->doc_string = value;
|
|
207 return 1;
|
|
208 }
|
|
209
|
|
210 external_plist_put (&f->plist, prop, value, 0, ERROR_ME);
|
|
211 return 1;
|
|
212 }
|
|
213
|
|
214 static int
|
|
215 face_remprop (Lisp_Object obj, Lisp_Object prop)
|
|
216 {
|
440
|
217 Lisp_Face *f = XFACE (obj);
|
428
|
218
|
|
219 if (EQ (prop, Qforeground) ||
|
|
220 EQ (prop, Qbackground) ||
|
|
221 EQ (prop, Qfont) ||
|
|
222 EQ (prop, Qdisplay_table) ||
|
|
223 EQ (prop, Qbackground_pixmap) ||
|
|
224 EQ (prop, Qunderline) ||
|
|
225 EQ (prop, Qstrikethru) ||
|
|
226 EQ (prop, Qhighlight) ||
|
|
227 EQ (prop, Qdim) ||
|
|
228 EQ (prop, Qblinking) ||
|
|
229 EQ (prop, Qreverse))
|
|
230 return -1;
|
|
231
|
|
232 if (EQ (prop, Qdoc_string))
|
|
233 {
|
|
234 f->doc_string = Qnil;
|
|
235 return 1;
|
|
236 }
|
|
237
|
|
238 return external_remprop (&f->plist, prop, 0, ERROR_ME);
|
|
239 }
|
|
240
|
|
241 static Lisp_Object
|
|
242 face_plist (Lisp_Object obj)
|
|
243 {
|
440
|
244 Lisp_Face *face = XFACE (obj);
|
428
|
245 Lisp_Object result = face->plist;
|
|
246
|
|
247 result = cons3 (Qreverse, face->reverse, result);
|
|
248 result = cons3 (Qblinking, face->blinking, result);
|
|
249 result = cons3 (Qdim, face->dim, result);
|
|
250 result = cons3 (Qhighlight, face->highlight, result);
|
|
251 result = cons3 (Qstrikethru, face->strikethru, result);
|
|
252 result = cons3 (Qunderline, face->underline, result);
|
|
253 result = cons3 (Qbackground_pixmap, face->background_pixmap, result);
|
|
254 result = cons3 (Qdisplay_table, face->display_table, result);
|
|
255 result = cons3 (Qfont, face->font, result);
|
|
256 result = cons3 (Qbackground, face->background, result);
|
|
257 result = cons3 (Qforeground, face->foreground, result);
|
|
258
|
|
259 return result;
|
|
260 }
|
|
261
|
1204
|
262 static const struct memory_description face_description[] = {
|
440
|
263 { XD_LISP_OBJECT, offsetof (Lisp_Face, name) },
|
|
264 { XD_LISP_OBJECT, offsetof (Lisp_Face, doc_string) },
|
|
265 { XD_LISP_OBJECT, offsetof (Lisp_Face, foreground) },
|
|
266 { XD_LISP_OBJECT, offsetof (Lisp_Face, background) },
|
|
267 { XD_LISP_OBJECT, offsetof (Lisp_Face, font) },
|
|
268 { XD_LISP_OBJECT, offsetof (Lisp_Face, display_table) },
|
|
269 { XD_LISP_OBJECT, offsetof (Lisp_Face, background_pixmap) },
|
|
270 { XD_LISP_OBJECT, offsetof (Lisp_Face, underline) },
|
|
271 { XD_LISP_OBJECT, offsetof (Lisp_Face, strikethru) },
|
|
272 { XD_LISP_OBJECT, offsetof (Lisp_Face, highlight) },
|
|
273 { XD_LISP_OBJECT, offsetof (Lisp_Face, dim) },
|
|
274 { XD_LISP_OBJECT, offsetof (Lisp_Face, blinking) },
|
|
275 { XD_LISP_OBJECT, offsetof (Lisp_Face, reverse) },
|
|
276 { XD_LISP_OBJECT, offsetof (Lisp_Face, plist) },
|
|
277 { XD_LISP_OBJECT, offsetof (Lisp_Face, charsets_warned_about) },
|
428
|
278 { XD_END }
|
|
279 };
|
|
280
|
934
|
281 DEFINE_LRECORD_IMPLEMENTATION_WITH_PROPS ("face", face,
|
|
282 1, /*dumpable-flag*/
|
|
283 mark_face, print_face, 0, face_equal,
|
1204
|
284 face_hash, face_description,
|
|
285 face_getprop,
|
934
|
286 face_putprop, face_remprop,
|
|
287 face_plist, Lisp_Face);
|
428
|
288
|
|
289 /************************************************************************/
|
|
290 /* face read syntax */
|
|
291 /************************************************************************/
|
|
292
|
|
293 static int
|
2286
|
294 face_name_validate (Lisp_Object UNUSED (keyword), Lisp_Object value,
|
578
|
295 Error_Behavior errb)
|
428
|
296 {
|
|
297 if (ERRB_EQ (errb, ERROR_ME))
|
|
298 {
|
|
299 CHECK_SYMBOL (value);
|
|
300 return 1;
|
|
301 }
|
|
302
|
|
303 return SYMBOLP (value);
|
|
304 }
|
|
305
|
|
306 static int
|
578
|
307 face_validate (Lisp_Object data, Error_Behavior errb)
|
428
|
308 {
|
|
309 int name_seen = 0;
|
|
310 Lisp_Object valw = Qnil;
|
|
311
|
|
312 data = Fcdr (data); /* skip over Qface */
|
|
313 while (!NILP (data))
|
|
314 {
|
|
315 Lisp_Object keyw = Fcar (data);
|
|
316
|
|
317 data = Fcdr (data);
|
|
318 valw = Fcar (data);
|
|
319 data = Fcdr (data);
|
|
320 if (EQ (keyw, Qname))
|
|
321 name_seen = 1;
|
|
322 else
|
2500
|
323 ABORT ();
|
428
|
324 }
|
|
325
|
|
326 if (!name_seen)
|
|
327 {
|
563
|
328 maybe_sferror ("No face name given", Qunbound, Qface, errb);
|
428
|
329 return 0;
|
|
330 }
|
|
331
|
|
332 if (NILP (Ffind_face (valw)))
|
|
333 {
|
563
|
334 maybe_invalid_argument ("No such face", valw, Qface, errb);
|
428
|
335 return 0;
|
|
336 }
|
|
337
|
|
338 return 1;
|
|
339 }
|
|
340
|
|
341 static Lisp_Object
|
|
342 face_instantiate (Lisp_Object data)
|
|
343 {
|
|
344 return Fget_face (Fcar (Fcdr (data)));
|
|
345 }
|
|
346
|
|
347
|
|
348 /****************************************************************************
|
|
349 * utility functions *
|
|
350 ****************************************************************************/
|
|
351
|
|
352 static void
|
440
|
353 reset_face (Lisp_Face *f)
|
428
|
354 {
|
|
355 f->name = Qnil;
|
|
356 f->doc_string = Qnil;
|
|
357 f->dirty = 0;
|
|
358 f->foreground = Qnil;
|
|
359 f->background = Qnil;
|
|
360 f->font = Qnil;
|
|
361 f->display_table = Qnil;
|
|
362 f->background_pixmap = Qnil;
|
|
363 f->underline = Qnil;
|
|
364 f->strikethru = Qnil;
|
|
365 f->highlight = Qnil;
|
|
366 f->dim = Qnil;
|
|
367 f->blinking = Qnil;
|
|
368 f->reverse = Qnil;
|
|
369 f->plist = Qnil;
|
|
370 f->charsets_warned_about = Qnil;
|
|
371 }
|
|
372
|
440
|
373 static Lisp_Face *
|
428
|
374 allocate_face (void)
|
|
375 {
|
3017
|
376 Lisp_Face *result = ALLOC_LCRECORD_TYPE (Lisp_Face, &lrecord_face);
|
428
|
377
|
|
378 reset_face (result);
|
|
379 return result;
|
|
380 }
|
|
381
|
|
382
|
|
383 /* We store the faces in hash tables with the names as the key and the
|
|
384 actual face object as the value. Occasionally we need to use them
|
|
385 in a list format. These routines provide us with that. */
|
|
386 struct face_list_closure
|
|
387 {
|
|
388 Lisp_Object *face_list;
|
|
389 };
|
|
390
|
|
391 static int
|
2286
|
392 add_face_to_list_mapper (Lisp_Object UNUSED (key), Lisp_Object value,
|
428
|
393 void *face_list_closure)
|
|
394 {
|
|
395 /* This function can GC */
|
|
396 struct face_list_closure *fcl =
|
|
397 (struct face_list_closure *) face_list_closure;
|
|
398
|
|
399 *(fcl->face_list) = Fcons (XFACE (value)->name, (*fcl->face_list));
|
|
400 return 0;
|
|
401 }
|
|
402
|
|
403 static Lisp_Object
|
|
404 faces_list_internal (Lisp_Object list)
|
|
405 {
|
|
406 Lisp_Object face_list = Qnil;
|
|
407 struct gcpro gcpro1;
|
|
408 struct face_list_closure face_list_closure;
|
|
409
|
|
410 GCPRO1 (face_list);
|
|
411 face_list_closure.face_list = &face_list;
|
|
412 elisp_maphash (add_face_to_list_mapper, list, &face_list_closure);
|
|
413 UNGCPRO;
|
|
414
|
|
415 return face_list;
|
|
416 }
|
|
417
|
|
418 static Lisp_Object
|
|
419 permanent_faces_list (void)
|
|
420 {
|
|
421 return faces_list_internal (Vpermanent_faces_cache);
|
|
422 }
|
|
423
|
|
424 static Lisp_Object
|
|
425 temporary_faces_list (void)
|
|
426 {
|
|
427 return faces_list_internal (Vtemporary_faces_cache);
|
|
428 }
|
|
429
|
|
430
|
|
431 static int
|
2286
|
432 mark_face_as_clean_mapper (Lisp_Object UNUSED (key), Lisp_Object value,
|
428
|
433 void *flag_closure)
|
|
434 {
|
|
435 /* This function can GC */
|
|
436 int *flag = (int *) flag_closure;
|
|
437 XFACE (value)->dirty = *flag;
|
|
438 return 0;
|
|
439 }
|
|
440
|
|
441 static void
|
|
442 mark_all_faces_internal (int flag)
|
|
443 {
|
|
444 elisp_maphash (mark_face_as_clean_mapper, Vpermanent_faces_cache, &flag);
|
|
445 elisp_maphash (mark_face_as_clean_mapper, Vtemporary_faces_cache, &flag);
|
|
446 }
|
|
447
|
|
448 void
|
|
449 mark_all_faces_as_clean (void)
|
|
450 {
|
|
451 mark_all_faces_internal (0);
|
|
452 }
|
|
453
|
|
454 /* Currently unused (see the comment in face_property_was_changed()). */
|
|
455 #if 0
|
|
456 /* #### OBSOLETE ME, PLEASE. Maybe. Maybe this is just as good as
|
|
457 any other solution. */
|
|
458 struct face_inheritance_closure
|
|
459 {
|
|
460 Lisp_Object face;
|
|
461 Lisp_Object property;
|
|
462 };
|
|
463
|
|
464 static void
|
|
465 update_inheritance_mapper_internal (Lisp_Object cur_face,
|
|
466 Lisp_Object inh_face,
|
|
467 Lisp_Object property)
|
|
468 {
|
|
469 /* #### fix this function */
|
|
470 Lisp_Object elt = Qnil;
|
|
471 struct gcpro gcpro1;
|
|
472
|
|
473 GCPRO1 (elt);
|
|
474
|
|
475 for (elt = FACE_PROPERTY_SPEC_LIST (cur_face, property, Qall);
|
|
476 !NILP (elt);
|
|
477 elt = XCDR (elt))
|
|
478 {
|
|
479 Lisp_Object values = XCDR (XCAR (elt));
|
|
480
|
|
481 for (; !NILP (values); values = XCDR (values))
|
|
482 {
|
|
483 Lisp_Object value = XCDR (XCAR (values));
|
|
484 if (VECTORP (value) && XVECTOR_LENGTH (value))
|
|
485 {
|
|
486 if (EQ (Ffind_face (XVECTOR_DATA (value)[0]), inh_face))
|
|
487 Fset_specifier_dirty_flag
|
|
488 (FACE_PROPERTY_SPECIFIER (inh_face, property));
|
|
489 }
|
|
490 }
|
|
491 }
|
|
492
|
|
493 UNGCPRO;
|
|
494 }
|
|
495
|
|
496 static int
|
442
|
497 update_face_inheritance_mapper (const void *hash_key, void *hash_contents,
|
428
|
498 void *face_inheritance_closure)
|
|
499 {
|
|
500 Lisp_Object key, contents;
|
|
501 struct face_inheritance_closure *fcl =
|
|
502 (struct face_inheritance_closure *) face_inheritance_closure;
|
|
503
|
826
|
504 key = VOID_TO_LISP (hash_key);
|
|
505 contents = VOID_TO_LISP (hash_contents);
|
428
|
506
|
|
507 if (EQ (fcl->property, Qfont))
|
|
508 {
|
|
509 update_inheritance_mapper_internal (contents, fcl->face, Qfont);
|
|
510 }
|
|
511 else if (EQ (fcl->property, Qforeground) ||
|
|
512 EQ (fcl->property, Qbackground))
|
|
513 {
|
|
514 update_inheritance_mapper_internal (contents, fcl->face, Qforeground);
|
|
515 update_inheritance_mapper_internal (contents, fcl->face, Qbackground);
|
|
516 }
|
|
517 else if (EQ (fcl->property, Qunderline) ||
|
|
518 EQ (fcl->property, Qstrikethru) ||
|
|
519 EQ (fcl->property, Qhighlight) ||
|
|
520 EQ (fcl->property, Qdim) ||
|
|
521 EQ (fcl->property, Qblinking) ||
|
|
522 EQ (fcl->property, Qreverse))
|
|
523 {
|
|
524 update_inheritance_mapper_internal (contents, fcl->face, Qunderline);
|
|
525 update_inheritance_mapper_internal (contents, fcl->face, Qstrikethru);
|
|
526 update_inheritance_mapper_internal (contents, fcl->face, Qhighlight);
|
|
527 update_inheritance_mapper_internal (contents, fcl->face, Qdim);
|
|
528 update_inheritance_mapper_internal (contents, fcl->face, Qblinking);
|
|
529 update_inheritance_mapper_internal (contents, fcl->face, Qreverse);
|
|
530 }
|
|
531 return 0;
|
|
532 }
|
|
533
|
|
534 static void
|
|
535 update_faces_inheritance (Lisp_Object face, Lisp_Object property)
|
|
536 {
|
|
537 struct face_inheritance_closure face_inheritance_closure;
|
|
538 struct gcpro gcpro1, gcpro2;
|
|
539
|
|
540 GCPRO2 (face, property);
|
|
541 face_inheritance_closure.face = face;
|
|
542 face_inheritance_closure.property = property;
|
|
543
|
|
544 elisp_maphash (update_face_inheritance_mapper, Vpermanent_faces_cache,
|
|
545 &face_inheritance_closure);
|
|
546 elisp_maphash (update_face_inheritance_mapper, Vtemporary_faces_cache,
|
|
547 &face_inheritance_closure);
|
|
548
|
|
549 UNGCPRO;
|
|
550 }
|
|
551 #endif /* 0 */
|
|
552
|
|
553 Lisp_Object
|
|
554 face_property_matching_instance (Lisp_Object face, Lisp_Object property,
|
|
555 Lisp_Object charset, Lisp_Object domain,
|
578
|
556 Error_Behavior errb, int no_fallback,
|
428
|
557 Lisp_Object depth)
|
|
558 {
|
771
|
559 Lisp_Object retval;
|
872
|
560 Lisp_Object matchspec = Qunbound;
|
|
561 struct gcpro gcpro1;
|
771
|
562
|
872
|
563 if (!NILP (charset))
|
|
564 matchspec = noseeum_cons (charset, Qnil);
|
|
565 GCPRO1 (matchspec);
|
|
566 retval = specifier_instance_no_quit (Fget (face, property, Qnil), matchspec,
|
771
|
567 domain, errb, no_fallback, depth);
|
872
|
568 if (UNBOUNDP (retval))
|
|
569 {
|
874
|
570 if (CONSP (matchspec))
|
|
571 Fsetcdr (matchspec, Qt);
|
872
|
572 retval = specifier_instance_no_quit (Fget (face, property, Qnil),
|
|
573 matchspec, domain, errb,
|
|
574 no_fallback, depth);
|
|
575 }
|
|
576 UNGCPRO;
|
|
577 if (CONSP (matchspec))
|
|
578 free_cons (matchspec);
|
428
|
579
|
|
580 if (UNBOUNDP (retval) && !no_fallback)
|
|
581 {
|
|
582 if (EQ (property, Qfont))
|
|
583 {
|
|
584 if (NILP (memq_no_quit (charset,
|
|
585 XFACE (face)->charsets_warned_about)))
|
|
586 {
|
|
587 #ifdef MULE
|
793
|
588 if (!UNBOUNDP (charset))
|
428
|
589 warn_when_safe
|
793
|
590 (Qfont, Qnotice,
|
|
591 "Unable to instantiate font for charset %s, face %s",
|
|
592 XSTRING_DATA (symbol_name
|
|
593 (XSYMBOL (XCHARSET_NAME (charset)))),
|
|
594 XSTRING_DATA (symbol_name
|
|
595 (XSYMBOL (XFACE (face)->name))));
|
428
|
596 else
|
|
597 #endif
|
793
|
598 warn_when_safe (Qfont, Qnotice,
|
428
|
599 "Unable to instantiate font for face %s",
|
793
|
600 XSTRING_DATA (symbol_name
|
428
|
601 (XSYMBOL (XFACE (face)->name))));
|
|
602 XFACE (face)->charsets_warned_about =
|
|
603 Fcons (charset, XFACE (face)->charsets_warned_about);
|
|
604 }
|
|
605 retval = Vthe_null_font_instance;
|
|
606 }
|
|
607 }
|
|
608
|
|
609 return retval;
|
|
610 }
|
|
611
|
|
612
|
|
613 DEFUN ("facep", Ffacep, 1, 1, 0, /*
|
444
|
614 Return t if OBJECT is a face.
|
428
|
615 */
|
|
616 (object))
|
|
617 {
|
|
618 return FACEP (object) ? Qt : Qnil;
|
|
619 }
|
|
620
|
|
621 DEFUN ("find-face", Ffind_face, 1, 1, 0, /*
|
|
622 Retrieve the face of the given name.
|
|
623 If FACE-OR-NAME is a face object, it is simply returned.
|
|
624 Otherwise, FACE-OR-NAME should be a symbol. If there is no such face,
|
|
625 nil is returned. Otherwise the associated face object is returned.
|
|
626 */
|
|
627 (face_or_name))
|
|
628 {
|
|
629 Lisp_Object retval;
|
2865
|
630 Lisp_Object face_name;
|
|
631 Lisp_Object face_alias;
|
|
632 int i;
|
428
|
633
|
|
634 if (FACEP (face_or_name))
|
|
635 return face_or_name;
|
2865
|
636
|
|
637 face_name = face_or_name;
|
|
638 CHECK_SYMBOL (face_name);
|
|
639
|
2867
|
640 # define FACE_ALIAS_MAX_DEPTH 32
|
2865
|
641
|
|
642 i = 0;
|
|
643 while (! NILP ((face_alias = Fget (face_name, Qface_alias, Qnil)))
|
2867
|
644 && i < FACE_ALIAS_MAX_DEPTH)
|
2865
|
645 {
|
|
646 face_name = face_alias;
|
|
647 CHECK_SYMBOL (face_alias);
|
|
648 i += 1;
|
|
649 }
|
|
650
|
|
651 /* #### This test actually makes the aliasing max depth to 30, which is more
|
|
652 #### than enough IMO. -- dvl */
|
2867
|
653 if (i == FACE_ALIAS_MAX_DEPTH)
|
|
654 signal_error (Qcyclic_face_alias,
|
2865
|
655 "Max face aliasing depth reached",
|
|
656 face_name);
|
|
657
|
2867
|
658 # undef FACE_ALIAS_MAX_DEPTH
|
428
|
659
|
|
660 /* Check if the name represents a permanent face. */
|
2865
|
661 retval = Fgethash (face_name, Vpermanent_faces_cache, Qnil);
|
428
|
662 if (!NILP (retval))
|
|
663 return retval;
|
|
664
|
|
665 /* Check if the name represents a temporary face. */
|
2865
|
666 return Fgethash (face_name, Vtemporary_faces_cache, Qnil);
|
428
|
667 }
|
|
668
|
|
669 DEFUN ("get-face", Fget_face, 1, 1, 0, /*
|
|
670 Retrieve the face of the given name.
|
|
671 Same as `find-face' except an error is signalled if there is no such
|
|
672 face instead of returning nil.
|
|
673 */
|
|
674 (name))
|
|
675 {
|
|
676 Lisp_Object face = Ffind_face (name);
|
|
677
|
|
678 if (NILP (face))
|
563
|
679 invalid_argument ("No such face", name);
|
428
|
680 return face;
|
|
681 }
|
|
682
|
|
683 DEFUN ("face-name", Fface_name, 1, 1, 0, /*
|
|
684 Return the name of the given face.
|
|
685 */
|
|
686 (face))
|
|
687 {
|
|
688 return XFACE (Fget_face (face))->name;
|
|
689 }
|
|
690
|
|
691 DEFUN ("built-in-face-specifiers", Fbuilt_in_face_specifiers, 0, 0, 0, /*
|
|
692 Return a list of all built-in face specifier properties.
|
|
693 Don't modify this list!
|
|
694 */
|
|
695 ())
|
|
696 {
|
|
697 return Vbuilt_in_face_specifiers;
|
|
698 }
|
|
699
|
|
700 /* These values are retrieved so often that we make a special
|
|
701 function.
|
|
702 */
|
|
703
|
|
704 void
|
|
705 default_face_font_info (Lisp_Object domain, int *ascent, int *descent,
|
|
706 int *height, int *width, int *proportional_p)
|
|
707 {
|
|
708 Lisp_Object font_instance;
|
|
709
|
|
710 if (noninteractive)
|
|
711 {
|
|
712 if (ascent)
|
|
713 *ascent = 1;
|
|
714 if (descent)
|
|
715 *descent = 0;
|
|
716 if (height)
|
|
717 *height = 1;
|
|
718 if (width)
|
|
719 *width = 1;
|
|
720 if (proportional_p)
|
|
721 *proportional_p = 0;
|
|
722 return;
|
|
723 }
|
|
724
|
|
725 /* We use ASCII here. This is probably reasonable because the
|
|
726 people calling this function are using the resulting values to
|
|
727 come up with overall sizes for windows and frames. */
|
|
728 if (WINDOWP (domain))
|
|
729 {
|
|
730 struct face_cachel *cachel;
|
|
731 struct window *w = XWINDOW (domain);
|
|
732
|
|
733 /* #### It's possible for this function to get called when the
|
|
734 face cachels have not been initialized. I don't know why. */
|
|
735 if (!Dynarr_length (w->face_cachels))
|
|
736 reset_face_cachels (w);
|
|
737 cachel = WINDOW_FACE_CACHEL (w, DEFAULT_INDEX);
|
|
738 font_instance = FACE_CACHEL_FONT (cachel, Vcharset_ascii);
|
|
739 }
|
|
740 else
|
|
741 {
|
|
742 font_instance = FACE_FONT (Vdefault_face, domain, Vcharset_ascii);
|
|
743 }
|
|
744
|
|
745 if (height)
|
|
746 *height = XFONT_INSTANCE (font_instance)->height;
|
|
747 if (width)
|
|
748 *width = XFONT_INSTANCE (font_instance)->width;
|
|
749 if (ascent)
|
|
750 *ascent = XFONT_INSTANCE (font_instance)->ascent;
|
|
751 if (descent)
|
|
752 *descent = XFONT_INSTANCE (font_instance)->descent;
|
|
753 if (proportional_p)
|
|
754 *proportional_p = XFONT_INSTANCE (font_instance)->proportional_p;
|
|
755 }
|
|
756
|
|
757 void
|
|
758 default_face_height_and_width (Lisp_Object domain,
|
|
759 int *height, int *width)
|
|
760 {
|
|
761 default_face_font_info (domain, 0, 0, height, width, 0);
|
|
762 }
|
|
763
|
|
764 void
|
|
765 default_face_height_and_width_1 (Lisp_Object domain,
|
|
766 int *height, int *width)
|
|
767 {
|
|
768 if (window_system_pixelated_geometry (domain))
|
|
769 {
|
|
770 if (height)
|
|
771 *height = 1;
|
|
772 if (width)
|
|
773 *width = 1;
|
|
774 }
|
|
775 else
|
|
776 default_face_height_and_width (domain, height, width);
|
|
777 }
|
|
778
|
|
779 DEFUN ("face-list", Fface_list, 0, 1, 0, /*
|
|
780 Return a list of the names of all defined faces.
|
|
781 If TEMPORARY is nil, only the permanent faces are included.
|
|
782 If it is t, only the temporary faces are included. If it is any
|
|
783 other non-nil value both permanent and temporary are included.
|
|
784 */
|
|
785 (temporary))
|
|
786 {
|
|
787 Lisp_Object face_list = Qnil;
|
|
788
|
|
789 /* Added the permanent faces, if requested. */
|
|
790 if (NILP (temporary) || !EQ (Qt, temporary))
|
|
791 face_list = permanent_faces_list ();
|
|
792
|
|
793 if (!NILP (temporary))
|
|
794 {
|
|
795 struct gcpro gcpro1;
|
|
796 GCPRO1 (face_list);
|
|
797 face_list = nconc2 (face_list, temporary_faces_list ());
|
|
798 UNGCPRO;
|
|
799 }
|
|
800
|
|
801 return face_list;
|
|
802 }
|
|
803
|
|
804 DEFUN ("make-face", Fmake_face, 1, 3, 0, /*
|
444
|
805 Define a new face with name NAME (a symbol), described by DOC-STRING.
|
|
806 You can modify the font, color, etc. of a face with the set-face-* functions.
|
428
|
807 If the face already exists, it is unmodified.
|
|
808 If TEMPORARY is non-nil, this face will cease to exist if not in use.
|
|
809 */
|
|
810 (name, doc_string, temporary))
|
|
811 {
|
|
812 /* This function can GC if initialized is non-zero */
|
440
|
813 Lisp_Face *f;
|
428
|
814 Lisp_Object face;
|
|
815
|
|
816 CHECK_SYMBOL (name);
|
|
817 if (!NILP (doc_string))
|
|
818 CHECK_STRING (doc_string);
|
|
819
|
|
820 face = Ffind_face (name);
|
|
821 if (!NILP (face))
|
|
822 return face;
|
|
823
|
|
824 f = allocate_face ();
|
793
|
825 face = wrap_face (f);
|
428
|
826
|
|
827 f->name = name;
|
|
828 f->doc_string = doc_string;
|
|
829 f->foreground = Fmake_specifier (Qcolor);
|
|
830 set_color_attached_to (f->foreground, face, Qforeground);
|
|
831 f->background = Fmake_specifier (Qcolor);
|
|
832 set_color_attached_to (f->background, face, Qbackground);
|
|
833 f->font = Fmake_specifier (Qfont);
|
|
834 set_font_attached_to (f->font, face, Qfont);
|
|
835 f->background_pixmap = Fmake_specifier (Qimage);
|
|
836 set_image_attached_to (f->background_pixmap, face, Qbackground_pixmap);
|
|
837 f->display_table = Fmake_specifier (Qdisplay_table);
|
|
838 f->underline = Fmake_specifier (Qface_boolean);
|
|
839 set_face_boolean_attached_to (f->underline, face, Qunderline);
|
|
840 f->strikethru = Fmake_specifier (Qface_boolean);
|
|
841 set_face_boolean_attached_to (f->strikethru, face, Qstrikethru);
|
|
842 f->highlight = Fmake_specifier (Qface_boolean);
|
|
843 set_face_boolean_attached_to (f->highlight, face, Qhighlight);
|
|
844 f->dim = Fmake_specifier (Qface_boolean);
|
|
845 set_face_boolean_attached_to (f->dim, face, Qdim);
|
|
846 f->blinking = Fmake_specifier (Qface_boolean);
|
|
847 set_face_boolean_attached_to (f->blinking, face, Qblinking);
|
|
848 f->reverse = Fmake_specifier (Qface_boolean);
|
|
849 set_face_boolean_attached_to (f->reverse, face, Qreverse);
|
|
850 if (!NILP (Vdefault_face))
|
|
851 {
|
|
852 /* If the default face has already been created, set it as
|
|
853 the default fallback specifier for all the specifiers we
|
|
854 just created. This implements the standard "all faces
|
|
855 inherit from default" behavior. */
|
|
856 set_specifier_fallback (f->foreground,
|
|
857 Fget (Vdefault_face, Qforeground, Qunbound));
|
|
858 set_specifier_fallback (f->background,
|
|
859 Fget (Vdefault_face, Qbackground, Qunbound));
|
|
860 set_specifier_fallback (f->font,
|
|
861 Fget (Vdefault_face, Qfont, Qunbound));
|
|
862 set_specifier_fallback (f->background_pixmap,
|
|
863 Fget (Vdefault_face, Qbackground_pixmap,
|
|
864 Qunbound));
|
|
865 set_specifier_fallback (f->display_table,
|
|
866 Fget (Vdefault_face, Qdisplay_table, Qunbound));
|
|
867 set_specifier_fallback (f->underline,
|
|
868 Fget (Vdefault_face, Qunderline, Qunbound));
|
|
869 set_specifier_fallback (f->strikethru,
|
|
870 Fget (Vdefault_face, Qstrikethru, Qunbound));
|
|
871 set_specifier_fallback (f->highlight,
|
|
872 Fget (Vdefault_face, Qhighlight, Qunbound));
|
|
873 set_specifier_fallback (f->dim,
|
|
874 Fget (Vdefault_face, Qdim, Qunbound));
|
|
875 set_specifier_fallback (f->blinking,
|
|
876 Fget (Vdefault_face, Qblinking, Qunbound));
|
|
877 set_specifier_fallback (f->reverse,
|
|
878 Fget (Vdefault_face, Qreverse, Qunbound));
|
|
879 }
|
|
880
|
|
881 /* Add the face to the appropriate list. */
|
|
882 if (NILP (temporary))
|
|
883 Fputhash (name, face, Vpermanent_faces_cache);
|
|
884 else
|
|
885 Fputhash (name, face, Vtemporary_faces_cache);
|
|
886
|
|
887 /* Note that it's OK if we dump faces.
|
|
888 When we start up again when we're not noninteractive,
|
|
889 `init-global-faces' is called and it resources all
|
|
890 existing faces. */
|
|
891 if (initialized && !noninteractive)
|
|
892 {
|
|
893 struct gcpro gcpro1, gcpro2;
|
|
894
|
|
895 GCPRO2 (name, face);
|
|
896 call1 (Qinit_face_from_resources, name);
|
|
897 UNGCPRO;
|
|
898 }
|
|
899
|
|
900 return face;
|
|
901 }
|
|
902
|
|
903
|
|
904 /*****************************************************************************
|
|
905 initialization code
|
|
906 ****************************************************************************/
|
|
907
|
|
908 void
|
|
909 init_global_faces (struct device *d)
|
|
910 {
|
|
911 /* When making the initial terminal device, there is no Lisp code
|
|
912 loaded, so we can't do this. */
|
|
913 if (initialized && !noninteractive)
|
872
|
914 call_critical_lisp_code (d, Qinit_global_faces, wrap_device (d));
|
428
|
915 }
|
|
916
|
|
917 void
|
|
918 init_device_faces (struct device *d)
|
|
919 {
|
|
920 /* This function can call lisp */
|
|
921
|
|
922 /* When making the initial terminal device, there is no Lisp code
|
|
923 loaded, so we can't do this. */
|
|
924 if (initialized)
|
872
|
925 call_critical_lisp_code (d, Qinit_device_faces, wrap_device (d));
|
428
|
926 }
|
|
927
|
|
928 void
|
|
929 init_frame_faces (struct frame *frm)
|
|
930 {
|
|
931 /* When making the initial terminal device, there is no Lisp code
|
|
932 loaded, so we can't do this. */
|
|
933 if (initialized)
|
|
934 {
|
793
|
935 Lisp_Object tframe = wrap_frame (frm);
|
|
936
|
428
|
937
|
|
938 /* DO NOT change the selected frame here. If the debugger goes off
|
|
939 it will try and display on the frame being created, but it is not
|
|
940 ready for that yet and a horrible death will occur. Any random
|
|
941 code depending on the selected-frame as an implicit arg should be
|
|
942 tracked down and shot. For the benefit of the one known,
|
|
943 xpm-color-symbols, make-frame sets the variable
|
|
944 Vframe_being_created to the frame it is making and sets it to nil
|
|
945 when done. Internal functions that this could trigger which are
|
|
946 currently depending on selected-frame should use this instead. It
|
|
947 is not currently visible at the lisp level. */
|
|
948 call_critical_lisp_code (XDEVICE (FRAME_DEVICE (frm)),
|
|
949 Qinit_frame_faces, tframe);
|
|
950 }
|
|
951 }
|
|
952
|
|
953
|
|
954 /****************************************************************************
|
|
955 * face cache element functions *
|
|
956 ****************************************************************************/
|
|
957
|
|
958 /*
|
|
959
|
|
960 #### Here is a description of how the face cache elements ought
|
|
961 to be redone. It is *NOT* how they work currently:
|
|
962
|
|
963 However, when I started to go about implementing this, I realized
|
|
964 that there are all sorts of subtle problems with cache coherency
|
|
965 that are coming up. As it turns out, these problems don't
|
|
966 manifest themselves now due to the brute-force "kill 'em all"
|
|
967 approach to cache invalidation when faces change; but if this
|
|
968 is ever made smarter, these problems are going to come up, and
|
|
969 some of them are very non-obvious.
|
|
970
|
|
971 I'm thinking of redoing the cache code a bit to avoid these
|
|
972 coherency problems. The bulk of the problems will arise because
|
|
973 the current display structures have simple indices into the
|
|
974 face cache, but the cache can be changed at various times,
|
|
975 which could make the current display structures incorrect.
|
|
976 I guess the dirty and updated flags are an attempt to fix
|
|
977 this, but this approach doesn't really work.
|
|
978
|
|
979 Here's an approach that should keep things clean and unconfused:
|
|
980
|
|
981 1) Imagine a "virtual face cache" that can grow arbitrarily
|
|
982 big and for which the only thing allowed is to add new
|
|
983 elements. Existing elements cannot be removed or changed.
|
|
984 This way, any pointers in the existing redisplay structure
|
|
985 into the cache never get screwed up. (This is important
|
|
986 because even if a cache element is out of date, if there's
|
|
987 a pointer to it then its contents still accurately describe
|
|
988 the way the text currently looks on the screen.)
|
|
989 2) Each element in the virtual cache either describes exactly
|
|
990 one face, or describes the merger of a number of faces
|
|
991 by some process. In order to simplify things, for mergers
|
|
992 we do not record which faces or ordering was used, but
|
|
993 simply that this cache element is the result of merging.
|
|
994 Unlike the current implementation, it's important that a
|
|
995 single cache element not be used to both describe a
|
|
996 single face and describe a merger, even if all the property
|
|
997 values are the same.
|
|
998 3) Each cache element can be clean or dirty. "Dirty" means
|
|
999 that the face that the element points to has been changed;
|
|
1000 this gets set at the time the face is changed. This
|
|
1001 way, when looking up a value in the cache, you can determine
|
|
1002 whether it's out of date or not. For merged faces it
|
|
1003 does not matter -- we don't record the faces or priority
|
|
1004 used to create the merger, so it's impossible to look up
|
|
1005 one of these faces. We have to recompute it each time.
|
|
1006 Luckily, this is fine -- doing the merge is much
|
|
1007 less expensive than recomputing the properties of a
|
|
1008 single face.
|
|
1009 4) For each cache element, we keep a hash value. (In order
|
|
1010 to hash the boolean properties, we convert each of them
|
|
1011 into a different large prime number so that the hashing works
|
|
1012 well.) This allows us, when comparing runes, to properly
|
|
1013 determine whether the face for that rune has changed.
|
|
1014 This will be especially important for TTY's, where there
|
|
1015 aren't that many faces and minimizing redraw is very
|
|
1016 important.
|
|
1017 5) We can't actually keep an infinite cache, but that doesn't
|
|
1018 really matter that much. The only elements we care about
|
|
1019 are those that are used by either the current or desired
|
|
1020 display structs. Therefore, we keep a per-window
|
|
1021 redisplay iteration number, and mark each element with
|
|
1022 that number as we use it. Just after outputting the
|
|
1023 window and synching the redisplay structs, we go through
|
|
1024 the cache and invalidate all elements that are not clean
|
|
1025 elements referring to a particular face and that do not
|
|
1026 have an iteration number equal to the current one. We
|
|
1027 keep them in a chain, and use them to allocate new
|
|
1028 elements when possible instead of increasing the Dynarr.
|
|
1029
|
872
|
1030 --ben (?? At least I think I wrote this!)
|
428
|
1031 */
|
|
1032
|
|
1033 /* mark for GC a dynarr of face cachels. */
|
|
1034
|
|
1035 void
|
|
1036 mark_face_cachels (face_cachel_dynarr *elements)
|
|
1037 {
|
|
1038 int elt;
|
|
1039
|
|
1040 if (!elements)
|
|
1041 return;
|
|
1042
|
|
1043 for (elt = 0; elt < Dynarr_length (elements); elt++)
|
|
1044 {
|
|
1045 struct face_cachel *cachel = Dynarr_atp (elements, elt);
|
|
1046
|
|
1047 {
|
|
1048 int i;
|
|
1049
|
|
1050 for (i = 0; i < NUM_LEADING_BYTES; i++)
|
|
1051 if (!NILP (cachel->font[i]) && !UNBOUNDP (cachel->font[i]))
|
|
1052 mark_object (cachel->font[i]);
|
|
1053 }
|
|
1054 mark_object (cachel->face);
|
|
1055 mark_object (cachel->foreground);
|
|
1056 mark_object (cachel->background);
|
|
1057 mark_object (cachel->display_table);
|
|
1058 mark_object (cachel->background_pixmap);
|
|
1059 }
|
|
1060 }
|
|
1061
|
|
1062 /* ensure that the given cachel contains an updated font value for
|
3094
|
1063 the given charset. Return the updated font value (which can be
|
|
1064 Qunbound, so this value must not be passed unchecked to Lisp).
|
|
1065
|
|
1066 #### Xft: This function will need to be updated for new font model. */
|
428
|
1067
|
|
1068 Lisp_Object
|
|
1069 ensure_face_cachel_contains_charset (struct face_cachel *cachel,
|
|
1070 Lisp_Object domain, Lisp_Object charset)
|
|
1071 {
|
|
1072 Lisp_Object new_val;
|
|
1073 Lisp_Object face = cachel->face;
|
|
1074 int bound = 1;
|
|
1075 int offs = XCHARSET_LEADING_BYTE (charset) - MIN_LEADING_BYTE;
|
|
1076
|
|
1077 if (!UNBOUNDP (cachel->font[offs])
|
|
1078 && cachel->font_updated[offs])
|
|
1079 return cachel->font[offs];
|
|
1080
|
|
1081 if (UNBOUNDP (face))
|
|
1082 {
|
|
1083 /* a merged face. */
|
|
1084 int i;
|
|
1085 struct window *w = XWINDOW (domain);
|
|
1086
|
|
1087 new_val = Qunbound;
|
|
1088 cachel->font_specified[offs] = 0;
|
|
1089 for (i = 0; i < cachel->nfaces; i++)
|
|
1090 {
|
|
1091 struct face_cachel *oth;
|
|
1092
|
|
1093 oth = Dynarr_atp (w->face_cachels,
|
|
1094 FACE_CACHEL_FINDEX_UNSAFE (cachel, i));
|
|
1095 /* Tout le monde aime la recursion */
|
|
1096 ensure_face_cachel_contains_charset (oth, domain, charset);
|
|
1097
|
|
1098 if (oth->font_specified[offs])
|
|
1099 {
|
|
1100 new_val = oth->font[offs];
|
|
1101 cachel->font_specified[offs] = 1;
|
|
1102 break;
|
|
1103 }
|
|
1104 }
|
|
1105
|
|
1106 if (!cachel->font_specified[offs])
|
|
1107 /* need to do the default face. */
|
|
1108 {
|
|
1109 struct face_cachel *oth =
|
|
1110 Dynarr_atp (w->face_cachels, DEFAULT_INDEX);
|
|
1111 ensure_face_cachel_contains_charset (oth, domain, charset);
|
|
1112
|
|
1113 new_val = oth->font[offs];
|
|
1114 }
|
|
1115
|
|
1116 if (!UNBOUNDP (cachel->font[offs]) && !EQ (cachel->font[offs], new_val))
|
|
1117 cachel->dirty = 1;
|
|
1118 cachel->font_updated[offs] = 1;
|
|
1119 cachel->font[offs] = new_val;
|
|
1120 return new_val;
|
|
1121 }
|
|
1122
|
|
1123 new_val = face_property_matching_instance (face, Qfont, charset, domain,
|
793
|
1124 /* #### look into error flag */
|
|
1125 ERROR_ME_DEBUG_WARN, 1, Qzero);
|
428
|
1126 if (UNBOUNDP (new_val))
|
|
1127 {
|
|
1128 bound = 0;
|
|
1129 new_val = face_property_matching_instance (face, Qfont,
|
|
1130 charset, domain,
|
793
|
1131 /* #### look into error
|
|
1132 flag */
|
|
1133 ERROR_ME_DEBUG_WARN, 0,
|
|
1134 Qzero);
|
428
|
1135 }
|
|
1136 if (!UNBOUNDP (cachel->font[offs]) && !EQ (new_val, cachel->font[offs]))
|
|
1137 cachel->dirty = 1;
|
|
1138 cachel->font_updated[offs] = 1;
|
|
1139 cachel->font[offs] = new_val;
|
|
1140 cachel->font_specified[offs] = (bound || EQ (face, Vdefault_face));
|
|
1141 return new_val;
|
|
1142 }
|
|
1143
|
|
1144 /* Ensure that the given cachel contains updated fonts for all
|
|
1145 the charsets specified. */
|
|
1146
|
|
1147 void
|
|
1148 ensure_face_cachel_complete (struct face_cachel *cachel,
|
|
1149 Lisp_Object domain, unsigned char *charsets)
|
|
1150 {
|
|
1151 int i;
|
|
1152
|
|
1153 for (i = 0; i < NUM_LEADING_BYTES; i++)
|
|
1154 if (charsets[i])
|
|
1155 {
|
826
|
1156 Lisp_Object charset = charset_by_leading_byte (i + MIN_LEADING_BYTE);
|
428
|
1157 assert (CHARSETP (charset));
|
|
1158 ensure_face_cachel_contains_charset (cachel, domain, charset);
|
|
1159 }
|
|
1160 }
|
|
1161
|
|
1162 void
|
|
1163 face_cachel_charset_font_metric_info (struct face_cachel *cachel,
|
|
1164 unsigned char *charsets,
|
|
1165 struct font_metric_info *fm)
|
|
1166 {
|
|
1167 int i;
|
|
1168
|
|
1169 fm->width = 1;
|
|
1170 fm->height = fm->ascent = 1;
|
|
1171 fm->descent = 0;
|
|
1172 fm->proportional_p = 0;
|
|
1173
|
|
1174 for (i = 0; i < NUM_LEADING_BYTES; i++)
|
|
1175 {
|
|
1176 if (charsets[i])
|
|
1177 {
|
826
|
1178 Lisp_Object charset = charset_by_leading_byte (i + MIN_LEADING_BYTE);
|
428
|
1179 Lisp_Object font_instance = FACE_CACHEL_FONT (cachel, charset);
|
440
|
1180 Lisp_Font_Instance *fi = XFONT_INSTANCE (font_instance);
|
428
|
1181
|
|
1182 assert (CHARSETP (charset));
|
|
1183 assert (FONT_INSTANCEP (font_instance));
|
|
1184
|
|
1185 if (fm->ascent < (int) fi->ascent) fm->ascent = (int) fi->ascent;
|
|
1186 if (fm->descent < (int) fi->descent) fm->descent = (int) fi->descent;
|
|
1187 fm->height = fm->ascent + fm->descent;
|
|
1188 if (fi->proportional_p)
|
|
1189 fm->proportional_p = 1;
|
|
1190 if (EQ (charset, Vcharset_ascii))
|
|
1191 fm->width = fi->width;
|
|
1192 }
|
|
1193 }
|
|
1194 }
|
|
1195
|
|
1196 #define FROB(field) \
|
|
1197 do { \
|
|
1198 Lisp_Object new_val = \
|
|
1199 FACE_PROPERTY_INSTANCE (face, Q##field, domain, 1, Qzero); \
|
|
1200 int bound = 1; \
|
|
1201 if (UNBOUNDP (new_val)) \
|
|
1202 { \
|
|
1203 bound = 0; \
|
|
1204 new_val = FACE_PROPERTY_INSTANCE (face, Q##field, domain, 0, Qzero); \
|
|
1205 } \
|
|
1206 if (!EQ (new_val, cachel->field)) \
|
|
1207 { \
|
|
1208 cachel->field = new_val; \
|
|
1209 cachel->dirty = 1; \
|
|
1210 } \
|
|
1211 cachel->field##_specified = (bound || default_face); \
|
|
1212 } while (0)
|
|
1213
|
446
|
1214 /*
|
|
1215 * A face's background pixmap will override the face's
|
|
1216 * background color. But the background pixmap of the
|
|
1217 * default face should not override the background color of
|
|
1218 * a face if the background color has been specified or
|
|
1219 * inherited.
|
|
1220 *
|
|
1221 * To accomplish this we remove the background pixmap of the
|
|
1222 * cachel and mark it as having been specified so that cachel
|
|
1223 * merging won't override it later.
|
|
1224 */
|
|
1225 #define MAYBE_UNFROB_BACKGROUND_PIXMAP \
|
|
1226 do \
|
|
1227 { \
|
|
1228 if (! default_face \
|
|
1229 && cachel->background_specified \
|
|
1230 && ! cachel->background_pixmap_specified) \
|
|
1231 { \
|
|
1232 cachel->background_pixmap = Qunbound; \
|
|
1233 cachel->background_pixmap_specified = 1; \
|
|
1234 } \
|
|
1235 } while (0)
|
|
1236
|
|
1237
|
|
1238 /* Add a cachel for the given face to the given window's cache. */
|
|
1239
|
|
1240 static void
|
|
1241 add_face_cachel (struct window *w, Lisp_Object face)
|
|
1242 {
|
|
1243 int must_finish_frobbing = ! WINDOW_FACE_CACHEL (w, DEFAULT_INDEX);
|
|
1244 struct face_cachel new_cachel;
|
|
1245 Lisp_Object domain;
|
|
1246
|
|
1247 reset_face_cachel (&new_cachel);
|
793
|
1248 domain = wrap_window (w);
|
446
|
1249 update_face_cachel_data (&new_cachel, domain, face);
|
|
1250 Dynarr_add (w->face_cachels, new_cachel);
|
|
1251
|
|
1252 /* The face's background pixmap have not yet been frobbed (see comment
|
|
1253 int update_face_cachel_data), so we have to do it now */
|
|
1254 if (must_finish_frobbing)
|
|
1255 {
|
|
1256 int default_face = EQ (face, Vdefault_face);
|
|
1257 struct face_cachel *cachel
|
|
1258 = Dynarr_atp (w->face_cachels, Dynarr_length (w->face_cachels) - 1);
|
|
1259
|
|
1260 FROB (background_pixmap);
|
|
1261 MAYBE_UNFROB_BACKGROUND_PIXMAP;
|
|
1262 }
|
|
1263 }
|
|
1264
|
|
1265 /* Called when the updated flag has been cleared on a cachel.
|
|
1266 This function returns 1 if the caller must finish the update (see comment
|
|
1267 below), 0 otherwise.
|
|
1268 */
|
|
1269
|
|
1270 void
|
|
1271 update_face_cachel_data (struct face_cachel *cachel,
|
|
1272 Lisp_Object domain,
|
|
1273 Lisp_Object face)
|
|
1274 {
|
|
1275 if (XFACE (face)->dirty || UNBOUNDP (cachel->face))
|
|
1276 {
|
|
1277 int default_face = EQ (face, Vdefault_face);
|
|
1278 cachel->face = face;
|
|
1279
|
|
1280 /* We normally only set the _specified flags if the value was
|
|
1281 actually bound. The exception is for the default face where
|
|
1282 we always set it since it is the ultimate fallback. */
|
|
1283
|
428
|
1284 FROB (foreground);
|
|
1285 FROB (background);
|
|
1286 FROB (display_table);
|
446
|
1287
|
|
1288 /* #### WARNING: the background pixmap property of faces is currently
|
|
1289 the only one dealing with images. The problem we have here is that
|
|
1290 frobbing the background pixmap might lead to image instantiation
|
|
1291 which in turn might require that the cache we're building be up to
|
|
1292 date, hence a crash. Here's a typical scenario of this:
|
|
1293
|
|
1294 - a new window is created and it's face cache elements are
|
|
1295 initialized through a call to reset_face_cachels[1]. At that point,
|
|
1296 the cache for the default and modeline faces (normaly taken care of
|
|
1297 by redisplay itself) are null.
|
|
1298 - the default face has a background pixmap which needs to be
|
|
1299 instantiated right here, as a consequence of cache initialization.
|
|
1300 - the background pixmap image happens to be instantiated as a string
|
|
1301 (this happens on tty's for instance).
|
|
1302 - In order to do this, we need to compute the string geometry.
|
|
1303 - In order to do this, we might have to access the window's default
|
|
1304 face cache. But this is the cache we're building right now, it is
|
|
1305 null.
|
|
1306 - BARF !!!!!
|
428
|
1307
|
446
|
1308 To sum up, this means that it is in general unsafe to instantiate
|
|
1309 images before face cache updating is complete (appart from image
|
|
1310 related face attributes). The solution we use below is to actually
|
|
1311 detect whether we're building the window's face_cachels for the first
|
|
1312 time, and simply NOT frob the background pixmap in that case. If
|
|
1313 other image-related face attributes are ever implemented, they should
|
|
1314 be protected the same way right here.
|
|
1315
|
|
1316 One note:
|
|
1317 * See comment in `default_face_font_info' in face.c. Who wrote it ?
|
|
1318 Maybe we have the begining of an answer here ?
|
|
1319
|
|
1320 Footnotes:
|
|
1321 [1] See comment at the top of `allocate_window' in window.c.
|
|
1322
|
|
1323 -- didier
|
|
1324 */
|
|
1325 if (! WINDOWP (domain)
|
|
1326 || WINDOW_FACE_CACHEL (DOMAIN_XWINDOW (domain), DEFAULT_INDEX))
|
428
|
1327 {
|
446
|
1328 FROB (background_pixmap);
|
|
1329 MAYBE_UNFROB_BACKGROUND_PIXMAP;
|
428
|
1330 }
|
|
1331 #undef FROB
|
446
|
1332 #undef MAYBE_UNFROB_BACKGROUND_PIXMAP
|
428
|
1333
|
|
1334 ensure_face_cachel_contains_charset (cachel, domain, Vcharset_ascii);
|
|
1335
|
|
1336 #define FROB(field) \
|
|
1337 do { \
|
|
1338 Lisp_Object new_val = \
|
|
1339 FACE_PROPERTY_INSTANCE (face, Q##field, domain, 1, Qzero); \
|
|
1340 int bound = 1; \
|
|
1341 unsigned int new_val_int; \
|
|
1342 if (UNBOUNDP (new_val)) \
|
|
1343 { \
|
|
1344 bound = 0; \
|
|
1345 new_val = FACE_PROPERTY_INSTANCE (face, Q##field, domain, 0, Qzero); \
|
|
1346 } \
|
|
1347 new_val_int = EQ (new_val, Qt); \
|
|
1348 if (cachel->field != new_val_int) \
|
|
1349 { \
|
|
1350 cachel->field = new_val_int; \
|
|
1351 cachel->dirty = 1; \
|
|
1352 } \
|
|
1353 cachel->field##_specified = bound; \
|
|
1354 } while (0)
|
|
1355
|
|
1356 FROB (underline);
|
|
1357 FROB (strikethru);
|
|
1358 FROB (highlight);
|
|
1359 FROB (dim);
|
|
1360 FROB (reverse);
|
|
1361 FROB (blinking);
|
|
1362 #undef FROB
|
|
1363 }
|
|
1364
|
|
1365 cachel->updated = 1;
|
|
1366 }
|
|
1367
|
|
1368 /* Merge the cachel identified by FINDEX in window W into the given
|
|
1369 cachel. */
|
|
1370
|
|
1371 static void
|
|
1372 merge_face_cachel_data (struct window *w, face_index findex,
|
|
1373 struct face_cachel *cachel)
|
|
1374 {
|
|
1375 #define FINDEX_FIELD(field) \
|
|
1376 Dynarr_atp (w->face_cachels, findex)->field
|
|
1377
|
|
1378 #define FROB(field) \
|
|
1379 do { \
|
|
1380 if (!cachel->field##_specified && FINDEX_FIELD (field##_specified)) \
|
|
1381 { \
|
|
1382 cachel->field = FINDEX_FIELD (field); \
|
|
1383 cachel->field##_specified = 1; \
|
|
1384 cachel->dirty = 1; \
|
|
1385 } \
|
|
1386 } while (0)
|
|
1387
|
|
1388 FROB (foreground);
|
|
1389 FROB (background);
|
|
1390 FROB (display_table);
|
|
1391 FROB (background_pixmap);
|
|
1392 FROB (underline);
|
|
1393 FROB (strikethru);
|
|
1394 FROB (highlight);
|
|
1395 FROB (dim);
|
|
1396 FROB (reverse);
|
|
1397 FROB (blinking);
|
|
1398 /* And do ASCII, of course. */
|
|
1399 {
|
|
1400 int offs = LEADING_BYTE_ASCII - MIN_LEADING_BYTE;
|
|
1401
|
|
1402 if (!cachel->font_specified[offs] && FINDEX_FIELD (font_specified[offs]))
|
|
1403 {
|
|
1404 cachel->font[offs] = FINDEX_FIELD (font[offs]);
|
|
1405 cachel->font_specified[offs] = 1;
|
|
1406 cachel->dirty = 1;
|
|
1407 }
|
|
1408 }
|
|
1409
|
|
1410 #undef FROB
|
|
1411 #undef FINDEX_FIELD
|
|
1412
|
|
1413 cachel->updated = 1;
|
|
1414 }
|
|
1415
|
|
1416 /* Initialize a cachel. */
|
3094
|
1417 /* #### Xft: this function will need to be changed for new font model. */
|
428
|
1418
|
|
1419 void
|
|
1420 reset_face_cachel (struct face_cachel *cachel)
|
|
1421 {
|
|
1422 xzero (*cachel);
|
|
1423 cachel->face = Qunbound;
|
|
1424 cachel->nfaces = 0;
|
|
1425 cachel->merged_faces = 0;
|
|
1426 cachel->foreground = Qunbound;
|
|
1427 cachel->background = Qunbound;
|
|
1428 {
|
|
1429 int i;
|
|
1430
|
|
1431 for (i = 0; i < NUM_LEADING_BYTES; i++)
|
|
1432 cachel->font[i] = Qunbound;
|
|
1433 }
|
|
1434 cachel->display_table = Qunbound;
|
|
1435 cachel->background_pixmap = Qunbound;
|
|
1436 }
|
|
1437
|
|
1438 /* Retrieve the index to a cachel for window W that corresponds to
|
|
1439 the specified face. If necessary, add a new element to the
|
|
1440 cache. */
|
|
1441
|
|
1442 face_index
|
|
1443 get_builtin_face_cache_index (struct window *w, Lisp_Object face)
|
|
1444 {
|
|
1445 int elt;
|
|
1446
|
|
1447 if (noninteractive)
|
|
1448 return 0;
|
|
1449
|
|
1450 for (elt = 0; elt < Dynarr_length (w->face_cachels); elt++)
|
|
1451 {
|
|
1452 struct face_cachel *cachel = WINDOW_FACE_CACHEL (w, elt);
|
|
1453
|
|
1454 if (EQ (cachel->face, face))
|
|
1455 {
|
793
|
1456 Lisp_Object window = wrap_window (w);
|
|
1457
|
428
|
1458 if (!cachel->updated)
|
|
1459 update_face_cachel_data (cachel, window, face);
|
|
1460 return elt;
|
|
1461 }
|
|
1462 }
|
|
1463
|
|
1464 /* If we didn't find the face, add it and then return its index. */
|
|
1465 add_face_cachel (w, face);
|
|
1466 return elt;
|
|
1467 }
|
|
1468
|
|
1469 void
|
|
1470 reset_face_cachels (struct window *w)
|
|
1471 {
|
|
1472 /* #### Not initialized in batch mode for the stream device. */
|
|
1473 if (w->face_cachels)
|
|
1474 {
|
|
1475 int i;
|
|
1476
|
|
1477 for (i = 0; i < Dynarr_length (w->face_cachels); i++)
|
|
1478 {
|
|
1479 struct face_cachel *cachel = Dynarr_atp (w->face_cachels, i);
|
|
1480 if (cachel->merged_faces)
|
|
1481 Dynarr_free (cachel->merged_faces);
|
|
1482 }
|
|
1483 Dynarr_reset (w->face_cachels);
|
|
1484 get_builtin_face_cache_index (w, Vdefault_face);
|
|
1485 get_builtin_face_cache_index (w, Vmodeline_face);
|
|
1486 XFRAME (w->frame)->window_face_cache_reset = 1;
|
|
1487 }
|
|
1488 }
|
|
1489
|
|
1490 void
|
|
1491 mark_face_cachels_as_clean (struct window *w)
|
|
1492 {
|
|
1493 int elt;
|
|
1494
|
|
1495 for (elt = 0; elt < Dynarr_length (w->face_cachels); elt++)
|
|
1496 Dynarr_atp (w->face_cachels, elt)->dirty = 0;
|
|
1497 }
|
|
1498
|
3094
|
1499 /* #### Xft: this function will need to be changed for new font model. */
|
428
|
1500 void
|
|
1501 mark_face_cachels_as_not_updated (struct window *w)
|
|
1502 {
|
|
1503 int elt;
|
|
1504
|
|
1505 for (elt = 0; elt < Dynarr_length (w->face_cachels); elt++)
|
|
1506 {
|
|
1507 struct face_cachel *cachel = Dynarr_atp (w->face_cachels, elt);
|
|
1508 int i;
|
|
1509
|
|
1510 cachel->updated = 0;
|
|
1511 for (i = 0; i < NUM_LEADING_BYTES; i++)
|
|
1512 cachel->font_updated[i] = 0;
|
|
1513 }
|
|
1514 }
|
|
1515
|
|
1516 #ifdef MEMORY_USAGE_STATS
|
|
1517
|
|
1518 int
|
|
1519 compute_face_cachel_usage (face_cachel_dynarr *face_cachels,
|
|
1520 struct overhead_stats *ovstats)
|
|
1521 {
|
|
1522 int total = 0;
|
|
1523
|
|
1524 if (face_cachels)
|
|
1525 {
|
|
1526 int i;
|
|
1527
|
|
1528 total += Dynarr_memory_usage (face_cachels, ovstats);
|
|
1529 for (i = 0; i < Dynarr_length (face_cachels); i++)
|
|
1530 {
|
|
1531 int_dynarr *merged = Dynarr_at (face_cachels, i).merged_faces;
|
|
1532 if (merged)
|
|
1533 total += Dynarr_memory_usage (merged, ovstats);
|
|
1534 }
|
|
1535 }
|
|
1536
|
|
1537 return total;
|
|
1538 }
|
|
1539
|
|
1540 #endif /* MEMORY_USAGE_STATS */
|
|
1541
|
|
1542
|
|
1543 /*****************************************************************************
|
|
1544 * merged face functions *
|
|
1545 *****************************************************************************/
|
|
1546
|
|
1547 /* Compare two merged face cachels to determine whether we have to add
|
|
1548 a new entry to the face cache.
|
|
1549
|
|
1550 Note that we do not compare the attributes, but just the faces the
|
|
1551 cachels are based on. If they are the same, then the cachels certainly
|
|
1552 ought to have the same attributes, except in the case where fonts
|
|
1553 for different charsets have been determined in the two -- and in that
|
|
1554 case this difference is fine. */
|
|
1555
|
|
1556 static int
|
|
1557 compare_merged_face_cachels (struct face_cachel *cachel1,
|
|
1558 struct face_cachel *cachel2)
|
|
1559 {
|
|
1560 int i;
|
|
1561
|
|
1562 if (!EQ (cachel1->face, cachel2->face)
|
|
1563 || cachel1->nfaces != cachel2->nfaces)
|
|
1564 return 0;
|
|
1565
|
|
1566 for (i = 0; i < cachel1->nfaces; i++)
|
|
1567 if (FACE_CACHEL_FINDEX_UNSAFE (cachel1, i)
|
|
1568 != FACE_CACHEL_FINDEX_UNSAFE (cachel2, i))
|
|
1569 return 0;
|
|
1570
|
|
1571 return 1;
|
|
1572 }
|
|
1573
|
|
1574 /* Retrieve the index to a cachel for window W that corresponds to
|
|
1575 the specified cachel. If necessary, add a new element to the
|
|
1576 cache. This is similar to get_builtin_face_cache_index() but
|
|
1577 is intended for merged cachels rather than for cachels representing
|
|
1578 just a face.
|
|
1579
|
|
1580 Note that a merged cachel for just one face is not the same as
|
|
1581 the simple cachel for that face, because it is also merged with
|
|
1582 the default face. */
|
|
1583
|
|
1584 static face_index
|
|
1585 get_merged_face_cache_index (struct window *w,
|
|
1586 struct face_cachel *merged_cachel)
|
|
1587 {
|
|
1588 int elt;
|
|
1589 int cache_size = Dynarr_length (w->face_cachels);
|
|
1590
|
|
1591 for (elt = 0; elt < cache_size; elt++)
|
|
1592 {
|
|
1593 struct face_cachel *cachel =
|
|
1594 Dynarr_atp (w->face_cachels, elt);
|
|
1595
|
|
1596 if (compare_merged_face_cachels (cachel, merged_cachel))
|
|
1597 return elt;
|
|
1598 }
|
|
1599
|
|
1600 /* We didn't find it so add this instance to the cache. */
|
|
1601 merged_cachel->updated = 1;
|
|
1602 merged_cachel->dirty = 1;
|
|
1603 Dynarr_add (w->face_cachels, *merged_cachel);
|
|
1604 return cache_size;
|
|
1605 }
|
|
1606
|
|
1607 face_index
|
|
1608 get_extent_fragment_face_cache_index (struct window *w,
|
|
1609 struct extent_fragment *ef)
|
|
1610 {
|
|
1611 struct face_cachel cachel;
|
|
1612 int len = Dynarr_length (ef->extents);
|
|
1613 face_index findex = 0;
|
|
1614
|
|
1615 /* Optimize the default case. */
|
|
1616 if (len == 0)
|
|
1617 return DEFAULT_INDEX;
|
|
1618 else
|
|
1619 {
|
|
1620 int i;
|
|
1621
|
|
1622 /* Merge the faces of the extents together in order. */
|
|
1623
|
|
1624 reset_face_cachel (&cachel);
|
|
1625
|
|
1626 for (i = len - 1; i >= 0; i--)
|
|
1627 {
|
|
1628 EXTENT current = Dynarr_at (ef->extents, i);
|
|
1629 int has_findex = 0;
|
|
1630 Lisp_Object face = extent_face (current);
|
|
1631
|
|
1632 if (FACEP (face))
|
|
1633 {
|
|
1634 findex = get_builtin_face_cache_index (w, face);
|
|
1635 has_findex = 1;
|
|
1636 merge_face_cachel_data (w, findex, &cachel);
|
|
1637 }
|
|
1638 /* remember, we're called from within redisplay
|
|
1639 so we can't error. */
|
|
1640 else while (CONSP (face))
|
|
1641 {
|
|
1642 Lisp_Object one_face = XCAR (face);
|
|
1643 if (FACEP (one_face))
|
|
1644 {
|
|
1645 findex = get_builtin_face_cache_index (w, one_face);
|
|
1646 merge_face_cachel_data (w, findex, &cachel);
|
|
1647
|
|
1648 /* code duplication here but there's no clean
|
|
1649 way to avoid it. */
|
|
1650 if (cachel.nfaces >= NUM_STATIC_CACHEL_FACES)
|
|
1651 {
|
|
1652 if (!cachel.merged_faces)
|
|
1653 cachel.merged_faces = Dynarr_new (int);
|
|
1654 Dynarr_add (cachel.merged_faces, findex);
|
|
1655 }
|
|
1656 else
|
|
1657 cachel.merged_faces_static[cachel.nfaces] = findex;
|
|
1658 cachel.nfaces++;
|
|
1659 }
|
|
1660 face = XCDR (face);
|
|
1661 }
|
|
1662
|
|
1663 if (has_findex)
|
|
1664 {
|
|
1665 if (cachel.nfaces >= NUM_STATIC_CACHEL_FACES)
|
|
1666 {
|
|
1667 if (!cachel.merged_faces)
|
|
1668 cachel.merged_faces = Dynarr_new (int);
|
|
1669 Dynarr_add (cachel.merged_faces, findex);
|
|
1670 }
|
|
1671 else
|
|
1672 cachel.merged_faces_static[cachel.nfaces] = findex;
|
|
1673 cachel.nfaces++;
|
|
1674 }
|
|
1675 }
|
|
1676
|
|
1677 /* Now finally merge in the default face. */
|
|
1678 findex = get_builtin_face_cache_index (w, Vdefault_face);
|
|
1679 merge_face_cachel_data (w, findex, &cachel);
|
|
1680
|
444
|
1681 findex = get_merged_face_cache_index (w, &cachel);
|
|
1682 if (cachel.merged_faces &&
|
|
1683 /* merged_faces did not get stored and available via return value */
|
|
1684 Dynarr_at (w->face_cachels, findex).merged_faces !=
|
|
1685 cachel.merged_faces)
|
|
1686 {
|
|
1687 Dynarr_free (cachel.merged_faces);
|
|
1688 cachel.merged_faces = 0;
|
|
1689 }
|
|
1690 return findex;
|
428
|
1691 }
|
|
1692 }
|
|
1693
|
3094
|
1694 /* Return a cache index for window W from merging the faces in FACE_LIST.
|
|
1695 COUNT is the number of faces in the list.
|
|
1696
|
|
1697 The default face should not be included in the list, as it is always
|
|
1698 implicitly merged into the cachel.
|
|
1699
|
|
1700 WARNING: this interface may change. */
|
|
1701
|
|
1702 face_index
|
|
1703 merge_face_list_to_cache_index (struct window *w,
|
|
1704 Lisp_Object *face_list, int count)
|
|
1705 {
|
|
1706 int i;
|
|
1707 face_index findex = 0;
|
|
1708 struct face_cachel cachel;
|
|
1709
|
|
1710 reset_face_cachel (&cachel);
|
|
1711
|
|
1712 for (i = 0; i < count; i++)
|
|
1713 {
|
|
1714 Lisp_Object face = face_list[i];
|
|
1715
|
|
1716 if (!NILP (face))
|
|
1717 {
|
|
1718 CHECK_FACE(face); /* #### presumably unnecessary */
|
|
1719 findex = get_builtin_face_cache_index (w, face);
|
|
1720 merge_face_cachel_data (w, findex, &cachel);
|
|
1721 }
|
|
1722 }
|
|
1723
|
|
1724 /* Now finally merge in the default face. */
|
|
1725 findex = get_builtin_face_cache_index (w, Vdefault_face);
|
|
1726 merge_face_cachel_data (w, findex, &cachel);
|
|
1727
|
|
1728 return get_merged_face_cache_index (w, &cachel);
|
|
1729 }
|
|
1730
|
428
|
1731
|
|
1732 /*****************************************************************************
|
|
1733 interface functions
|
|
1734 ****************************************************************************/
|
|
1735
|
|
1736 static void
|
|
1737 update_EmacsFrame (Lisp_Object frame, Lisp_Object name)
|
|
1738 {
|
|
1739 struct frame *frm = XFRAME (frame);
|
|
1740
|
|
1741 if (EQ (name, Qfont))
|
|
1742 MARK_FRAME_SIZE_SLIPPED (frm);
|
|
1743
|
|
1744 MAYBE_FRAMEMETH (frm, update_frame_external_traits, (frm, name));
|
|
1745 }
|
|
1746
|
|
1747 static void
|
|
1748 update_EmacsFrames (Lisp_Object locale, Lisp_Object name)
|
|
1749 {
|
|
1750 if (FRAMEP (locale))
|
|
1751 {
|
|
1752 update_EmacsFrame (locale, name);
|
|
1753 }
|
|
1754 else if (DEVICEP (locale))
|
|
1755 {
|
|
1756 Lisp_Object frmcons;
|
|
1757
|
|
1758 DEVICE_FRAME_LOOP (frmcons, XDEVICE (locale))
|
|
1759 update_EmacsFrame (XCAR (frmcons), name);
|
|
1760 }
|
|
1761 else if (EQ (locale, Qglobal) || EQ (locale, Qfallback))
|
|
1762 {
|
|
1763 Lisp_Object frmcons, devcons, concons;
|
|
1764
|
|
1765 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
|
|
1766 update_EmacsFrame (XCAR (frmcons), name);
|
|
1767 }
|
|
1768 }
|
|
1769
|
|
1770 void
|
|
1771 update_frame_face_values (struct frame *f)
|
|
1772 {
|
793
|
1773 Lisp_Object frm = wrap_frame (f);
|
428
|
1774
|
|
1775 update_EmacsFrame (frm, Qforeground);
|
|
1776 update_EmacsFrame (frm, Qbackground);
|
|
1777 update_EmacsFrame (frm, Qfont);
|
|
1778 }
|
|
1779
|
|
1780 void
|
|
1781 face_property_was_changed (Lisp_Object face, Lisp_Object property,
|
|
1782 Lisp_Object locale)
|
|
1783 {
|
|
1784 int default_face = EQ (face, Vdefault_face);
|
|
1785
|
|
1786 /* If the locale could affect the frame value, then call
|
|
1787 update_EmacsFrames just in case. */
|
|
1788 if (default_face &&
|
|
1789 (EQ (property, Qforeground) ||
|
|
1790 EQ (property, Qbackground) ||
|
|
1791 EQ (property, Qfont)))
|
|
1792 update_EmacsFrames (locale, property);
|
|
1793
|
|
1794 if (WINDOWP (locale))
|
|
1795 {
|
|
1796 MARK_FRAME_FACES_CHANGED (XFRAME (XWINDOW (locale)->frame));
|
|
1797 }
|
|
1798 else if (FRAMEP (locale))
|
|
1799 {
|
|
1800 MARK_FRAME_FACES_CHANGED (XFRAME (locale));
|
|
1801 }
|
|
1802 else if (DEVICEP (locale))
|
|
1803 {
|
|
1804 MARK_DEVICE_FRAMES_FACES_CHANGED (XDEVICE (locale));
|
|
1805 }
|
|
1806 else
|
|
1807 {
|
|
1808 Lisp_Object devcons, concons;
|
|
1809 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
1810 MARK_DEVICE_FRAMES_FACES_CHANGED (XDEVICE (XCAR (devcons)));
|
|
1811 }
|
|
1812
|
|
1813 /*
|
|
1814 * This call to update_faces_inheritance isn't needed and makes
|
|
1815 * creating and modifying faces _very_ slow. The point of
|
|
1816 * update_face_inheritances is to find all faces that inherit
|
|
1817 * directly from this face property and set the specifier "dirty"
|
|
1818 * flag on the corresponding specifier. This forces recaching of
|
|
1819 * cached specifier values in frame and window struct slots. But
|
|
1820 * currently no face properties are cached in frame and window
|
|
1821 * struct slots, so calling this function does nothing useful!
|
|
1822 *
|
|
1823 * Further, since update_faces_inheritance maps over the whole
|
|
1824 * face table every time it is called, it gets terribly slow when
|
|
1825 * there are many faces. Creating 500 faces on a 50Mhz 486 took
|
|
1826 * 433 seconds when update_faces_inheritance was called. With the
|
|
1827 * call commented out, creating those same 500 faces took 0.72
|
|
1828 * seconds.
|
|
1829 */
|
|
1830 /* update_faces_inheritance (face, property);*/
|
|
1831 XFACE (face)->dirty = 1;
|
|
1832 }
|
|
1833
|
|
1834 DEFUN ("copy-face", Fcopy_face, 2, 6, 0, /*
|
|
1835 Define and return a new face which is a copy of an existing one,
|
|
1836 or makes an already-existing face be exactly like another.
|
|
1837 LOCALE, TAG-SET, EXACT-P, and HOW-TO-ADD are as in `copy-specifier'.
|
|
1838 */
|
|
1839 (old_face, new_name, locale, tag_set, exact_p, how_to_add))
|
|
1840 {
|
440
|
1841 Lisp_Face *fold, *fnew;
|
428
|
1842 Lisp_Object new_face = Qnil;
|
|
1843 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
1844
|
|
1845 old_face = Fget_face (old_face);
|
|
1846
|
|
1847 /* We GCPRO old_face because it might be temporary, and GCing could
|
|
1848 occur in various places below. */
|
|
1849 GCPRO4 (tag_set, locale, old_face, new_face);
|
|
1850 /* check validity of how_to_add now. */
|
|
1851 decode_how_to_add_specification (how_to_add);
|
|
1852 /* and of tag_set. */
|
|
1853 tag_set = decode_specifier_tag_set (tag_set);
|
|
1854 /* and of locale. */
|
|
1855 locale = decode_locale_list (locale);
|
|
1856
|
|
1857 new_face = Ffind_face (new_name);
|
|
1858 if (NILP (new_face))
|
|
1859 {
|
|
1860 Lisp_Object temp;
|
|
1861
|
|
1862 CHECK_SYMBOL (new_name);
|
|
1863
|
|
1864 /* Create the new face with the same status as the old face. */
|
|
1865 temp = (NILP (Fgethash (old_face, Vtemporary_faces_cache, Qnil))
|
|
1866 ? Qnil
|
|
1867 : Qt);
|
|
1868
|
|
1869 new_face = Fmake_face (new_name, Qnil, temp);
|
|
1870 }
|
|
1871
|
|
1872 fold = XFACE (old_face);
|
|
1873 fnew = XFACE (new_face);
|
|
1874
|
|
1875 #define COPY_PROPERTY(property) \
|
|
1876 Fcopy_specifier (fold->property, fnew->property, \
|
|
1877 locale, tag_set, exact_p, how_to_add);
|
|
1878
|
|
1879 COPY_PROPERTY (foreground);
|
|
1880 COPY_PROPERTY (background);
|
|
1881 COPY_PROPERTY (font);
|
|
1882 COPY_PROPERTY (display_table);
|
|
1883 COPY_PROPERTY (background_pixmap);
|
|
1884 COPY_PROPERTY (underline);
|
|
1885 COPY_PROPERTY (strikethru);
|
|
1886 COPY_PROPERTY (highlight);
|
|
1887 COPY_PROPERTY (dim);
|
|
1888 COPY_PROPERTY (blinking);
|
|
1889 COPY_PROPERTY (reverse);
|
|
1890 #undef COPY_PROPERTY
|
|
1891 /* #### should it copy the individual specifiers, if they exist? */
|
|
1892 fnew->plist = Fcopy_sequence (fold->plist);
|
|
1893
|
|
1894 UNGCPRO;
|
|
1895
|
|
1896 return new_name;
|
|
1897 }
|
|
1898
|
|
1899
|
|
1900 void
|
|
1901 syms_of_faces (void)
|
|
1902 {
|
442
|
1903 INIT_LRECORD_IMPLEMENTATION (face);
|
|
1904
|
440
|
1905 /* Qdefault, Qwidget, Qleft_margin, Qright_margin defined in general.c */
|
563
|
1906 DEFSYMBOL (Qmodeline);
|
|
1907 DEFSYMBOL (Qgui_element);
|
|
1908 DEFSYMBOL (Qtext_cursor);
|
|
1909 DEFSYMBOL (Qvertical_divider);
|
428
|
1910
|
|
1911 DEFSUBR (Ffacep);
|
|
1912 DEFSUBR (Ffind_face);
|
|
1913 DEFSUBR (Fget_face);
|
|
1914 DEFSUBR (Fface_name);
|
|
1915 DEFSUBR (Fbuilt_in_face_specifiers);
|
|
1916 DEFSUBR (Fface_list);
|
|
1917 DEFSUBR (Fmake_face);
|
|
1918 DEFSUBR (Fcopy_face);
|
|
1919
|
563
|
1920 DEFSYMBOL (Qfacep);
|
|
1921 DEFSYMBOL (Qforeground);
|
|
1922 DEFSYMBOL (Qbackground);
|
428
|
1923 /* Qfont defined in general.c */
|
563
|
1924 DEFSYMBOL (Qdisplay_table);
|
|
1925 DEFSYMBOL (Qbackground_pixmap);
|
|
1926 DEFSYMBOL (Qunderline);
|
|
1927 DEFSYMBOL (Qstrikethru);
|
428
|
1928 /* Qhighlight, Qreverse defined in general.c */
|
563
|
1929 DEFSYMBOL (Qdim);
|
|
1930 DEFSYMBOL (Qblinking);
|
428
|
1931
|
2865
|
1932 DEFSYMBOL (Qface_alias);
|
2867
|
1933 DEFERROR_STANDARD (Qcyclic_face_alias, Qinvalid_state);
|
2865
|
1934
|
563
|
1935 DEFSYMBOL (Qinit_face_from_resources);
|
|
1936 DEFSYMBOL (Qinit_global_faces);
|
|
1937 DEFSYMBOL (Qinit_device_faces);
|
|
1938 DEFSYMBOL (Qinit_frame_faces);
|
428
|
1939 }
|
|
1940
|
|
1941 void
|
|
1942 structure_type_create_faces (void)
|
|
1943 {
|
|
1944 struct structure_type *st;
|
|
1945
|
|
1946 st = define_structure_type (Qface, face_validate, face_instantiate);
|
|
1947
|
|
1948 define_structure_type_keyword (st, Qname, face_name_validate);
|
|
1949 }
|
|
1950
|
|
1951 void
|
|
1952 vars_of_faces (void)
|
|
1953 {
|
|
1954 staticpro (&Vpermanent_faces_cache);
|
771
|
1955 Vpermanent_faces_cache =
|
|
1956 make_lisp_hash_table (10, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ);
|
428
|
1957 staticpro (&Vtemporary_faces_cache);
|
771
|
1958 Vtemporary_faces_cache =
|
|
1959 make_lisp_hash_table (0, HASH_TABLE_WEAK, HASH_TABLE_EQ);
|
428
|
1960
|
|
1961 staticpro (&Vdefault_face);
|
|
1962 Vdefault_face = Qnil;
|
|
1963 staticpro (&Vgui_element_face);
|
|
1964 Vgui_element_face = Qnil;
|
|
1965 staticpro (&Vwidget_face);
|
|
1966 Vwidget_face = Qnil;
|
|
1967 staticpro (&Vmodeline_face);
|
|
1968 Vmodeline_face = Qnil;
|
|
1969 staticpro (&Vtoolbar_face);
|
|
1970 Vtoolbar_face = Qnil;
|
|
1971
|
|
1972 staticpro (&Vvertical_divider_face);
|
|
1973 Vvertical_divider_face = Qnil;
|
|
1974 staticpro (&Vleft_margin_face);
|
|
1975 Vleft_margin_face = Qnil;
|
|
1976 staticpro (&Vright_margin_face);
|
|
1977 Vright_margin_face = Qnil;
|
|
1978 staticpro (&Vtext_cursor_face);
|
|
1979 Vtext_cursor_face = Qnil;
|
|
1980 staticpro (&Vpointer_face);
|
|
1981 Vpointer_face = Qnil;
|
|
1982
|
|
1983 {
|
|
1984 Lisp_Object syms[20];
|
|
1985 int n = 0;
|
|
1986
|
|
1987 syms[n++] = Qforeground;
|
|
1988 syms[n++] = Qbackground;
|
|
1989 syms[n++] = Qfont;
|
|
1990 syms[n++] = Qdisplay_table;
|
|
1991 syms[n++] = Qbackground_pixmap;
|
|
1992 syms[n++] = Qunderline;
|
|
1993 syms[n++] = Qstrikethru;
|
|
1994 syms[n++] = Qhighlight;
|
|
1995 syms[n++] = Qdim;
|
|
1996 syms[n++] = Qblinking;
|
|
1997 syms[n++] = Qreverse;
|
|
1998
|
|
1999 Vbuilt_in_face_specifiers = Flist (n, syms);
|
|
2000 staticpro (&Vbuilt_in_face_specifiers);
|
|
2001 }
|
|
2002 }
|
|
2003
|
|
2004 void
|
|
2005 complex_vars_of_faces (void)
|
|
2006 {
|
|
2007 /* Create the default face now so we know what it is immediately. */
|
|
2008
|
|
2009 Vdefault_face = Qnil; /* so that Fmake_face() doesn't set up a bogus
|
|
2010 default value */
|
771
|
2011 Vdefault_face = Fmake_face (Qdefault, build_msg_string ("default face"),
|
428
|
2012 Qnil);
|
|
2013
|
|
2014 /* Provide some last-resort fallbacks to avoid utter fuckage if
|
|
2015 someone provides invalid values for the global specifications. */
|
|
2016
|
|
2017 {
|
|
2018 Lisp_Object fg_fb = Qnil, bg_fb = Qnil;
|
|
2019
|
462
|
2020 #ifdef HAVE_GTK
|
|
2021 fg_fb = acons (list1 (Qgtk), build_string ("black"), fg_fb);
|
|
2022 bg_fb = acons (list1 (Qgtk), build_string ("white"), bg_fb);
|
|
2023 #endif
|
428
|
2024 #ifdef HAVE_X_WINDOWS
|
|
2025 fg_fb = acons (list1 (Qx), build_string ("black"), fg_fb);
|
|
2026 bg_fb = acons (list1 (Qx), build_string ("white"), bg_fb);
|
|
2027 #endif
|
|
2028 #ifdef HAVE_TTY
|
|
2029 fg_fb = acons (list1 (Qtty), Fvector (0, 0), fg_fb);
|
|
2030 bg_fb = acons (list1 (Qtty), Fvector (0, 0), bg_fb);
|
|
2031 #endif
|
|
2032 #ifdef HAVE_MS_WINDOWS
|
440
|
2033 fg_fb = acons (list1 (Qmsprinter), build_string ("black"), fg_fb);
|
|
2034 bg_fb = acons (list1 (Qmsprinter), build_string ("white"), bg_fb);
|
428
|
2035 fg_fb = acons (list1 (Qmswindows), build_string ("black"), fg_fb);
|
|
2036 bg_fb = acons (list1 (Qmswindows), build_string ("white"), bg_fb);
|
|
2037 #endif
|
|
2038 set_specifier_fallback (Fget (Vdefault_face, Qforeground, Qnil), fg_fb);
|
|
2039 set_specifier_fallback (Fget (Vdefault_face, Qbackground, Qnil), bg_fb);
|
|
2040 }
|
|
2041
|
|
2042 /* #### We may want to have different fallback values if NeXTstep
|
|
2043 support is compiled in. */
|
|
2044 {
|
|
2045 Lisp_Object inst_list = Qnil;
|
462
|
2046
|
872
|
2047 #if defined (HAVE_X_WINDOWS) || defined (HAVE_GTK)
|
2865
|
2048
|
2367
|
2049 const Ascbyte *fonts[] =
|
428
|
2050 {
|
3094
|
2051 #ifdef USE_XFT
|
|
2052 /************** Xft fonts *************/
|
|
2053
|
|
2054 /* Note that fontconfig can search for several font families in one
|
|
2055 call. We should use this facility. */
|
|
2056 "monospace-12", /* Western #### add encoding info? */
|
|
2057 /* do we need to worry about non-Latin characters for monospace?
|
|
2058 No, at least in Debian's implementation of Xft.
|
|
2059 We should recommend that "gothic" and "mincho" aliases be created? */
|
|
2060 "Sazanami Mincho-12", /* Japanese #### add encoding info? */
|
|
2061 /* Arphic for Chinese? */
|
|
2062 /* Korean */
|
|
2063 #else
|
|
2064
|
872
|
2065 /************** ISO-8859 fonts *************/
|
|
2066
|
428
|
2067 "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*",
|
3094
|
2068 /* under USE_XFT, we always succeed, so let's not waste the effort */
|
1552
|
2069 "-*-fixed-medium-r-*-*-*-120-*-*-*-*-iso8859-*",
|
428
|
2070 "-*-courier-*-r-*-*-*-120-*-*-*-*-iso8859-*",
|
1552
|
2071 "-*-fixed-*-r-*-*-*-120-*-*-*-*-iso8859-*",
|
872
|
2072 /* Next try for any "medium" charcell or monospaced iso8859 font. */
|
428
|
2073 "-*-*-medium-r-*-*-*-120-*-*-m-*-iso8859-*",
|
|
2074 "-*-*-medium-r-*-*-*-120-*-*-c-*-iso8859-*",
|
872
|
2075 /* Next try for any charcell or monospaced iso8859 font. */
|
428
|
2076 "-*-*-*-r-*-*-*-120-*-*-m-*-iso8859-*",
|
|
2077 "-*-*-*-r-*-*-*-120-*-*-c-*-iso8859-*",
|
872
|
2078
|
|
2079 /* Repeat, any size */
|
|
2080 "-*-courier-medium-r-*-*-*-*-*-*-*-*-iso8859-*",
|
1552
|
2081 "-*-fixed-medium-r-*-*-*-*-*-*-*-*-iso8859-*",
|
872
|
2082 "-*-courier-*-r-*-*-*-*-*-*-*-*-iso8859-*",
|
1552
|
2083 "-*-fixed-*-r-*-*-*-*-*-*-*-*-iso8859-*",
|
872
|
2084 /* Next try for any "medium" charcell or monospaced iso8859 font. */
|
|
2085 "-*-*-medium-r-*-*-*-*-*-*-m-*-iso8859-*",
|
|
2086 "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-*",
|
|
2087 /* Next try for any charcell or monospaced iso8859 font. */
|
|
2088 "-*-*-*-r-*-*-*-*-*-*-m-*-iso8859-*",
|
|
2089 "-*-*-*-r-*-*-*-*-*-*-c-*-iso8859-*",
|
|
2090
|
|
2091 /* Non-proportional fonts -- last resort. */
|
428
|
2092 "-*-*-*-r-*-*-*-120-*-*-*-*-iso8859-*",
|
872
|
2093 "-*-*-*-r-*-*-*-*-*-*-*-*-iso8859-*",
|
|
2094 "-*-*-*-*-*-*-*-*-*-*-*-*-iso8859-*",
|
|
2095
|
|
2096 /************* Japanese fonts ************/
|
|
2097
|
|
2098 /* Following 3 fonts proposed by Teruhiko.Kurosaka@Japan.eng.sun */
|
|
2099 "-sun-gothic-medium-r-normal--14-120-75-75-c-60-jisx0201.1976-0",
|
|
2100 "-sun-gothic-medium-r-normal--14-120-75-75-c-120-jisx0208.1983-0",
|
|
2101 "-wadalab-gothic-medium-r-normal--14-120-75-75-c-120-jisx0212.1990-0",
|
2865
|
2102
|
872
|
2103 /* Other Japanese fonts */
|
|
2104 "-*-fixed-medium-r-*--*-jisx0201.1976-*",
|
|
2105 "-*-fixed-medium-r-*--*-jisx0208.1983-*",
|
|
2106 "-*-fixed-medium-r-*--*-jisx0212*-*",
|
|
2107 "-*-*-*-r-*--*-jisx0201.1976-*",
|
|
2108 "-*-*-*-r-*--*-jisx0208.1983-*",
|
|
2109 "-*-*-*-r-*--*-jisx0212*-*",
|
|
2110
|
|
2111 /************* Chinese fonts ************/
|
|
2112
|
|
2113 "-*-*-medium-r-*--*-gb2312.1980-*",
|
|
2114 "-*-fixed-medium-r-*--*-cns11643*-*",
|
2865
|
2115
|
872
|
2116 "-*-fixed-medium-r-*--*-big5*-*,"
|
|
2117 "-*-fixed-medium-r-*--*-sisheng_cwnn-0",
|
|
2118
|
|
2119 /************* Korean fonts *************/
|
|
2120
|
|
2121 "-*-mincho-medium-r-*--*-ksc5601.1987-*",
|
|
2122
|
|
2123 /************* Thai fonts **************/
|
|
2124
|
|
2125 "-*-fixed-medium-r-*--*-tis620.2529-1",
|
|
2126
|
|
2127 /************* Other fonts (nonstandard) *************/
|
2865
|
2128
|
872
|
2129 "-*-fixed-medium-r-*--*-viscii1.1-1",
|
|
2130 "-*-fixed-medium-r-*--*-mulearabic-*",
|
|
2131 "-*-fixed-medium-r-*--*-muleipa-*",
|
|
2132 "-*-fixed-medium-r-*--*-ethio-*",
|
|
2133
|
|
2134 /************* Unicode fonts **************/
|
|
2135
|
|
2136 /* #### We don't yet support Unicode fonts, but doing so would not be
|
|
2137 hard because all the machinery has already been added for Windows
|
|
2138 support. We need to do this:
|
|
2139
|
|
2140 (1) Add "stage 2" support in find_charset_font()/etc.; this finds
|
|
2141 an appropriate Unicode font after all the charset-specific fonts
|
|
2142 have been checked. This should look at the per-char font info and
|
|
2143 check whether we have support for some of the chars in the
|
|
2144 charset. (#### Bogus, but that's the way it currently works)
|
|
2145
|
3094
|
2146 sjt sez: With Xft/fontconfig that information is available as a
|
|
2147 language support property. The character set (actually a bit
|
|
2148 vector) is also available. So what we need to do is to map charset
|
|
2149 -> language (Mule redesign Phase 1) and eventually use language
|
|
2150 information in the buffer, then map to charsets (Phase 2) at font
|
|
2151 instantiation time.
|
|
2152
|
872
|
2153 (2) Record in the font instance a flag indicating when we're
|
|
2154 dealing with a Unicode font.
|
|
2155
|
|
2156 (3) Notice this flag in separate_textual_runs() and translate the
|
|
2157 text into Unicode if so.
|
|
2158 */
|
|
2159
|
|
2160 "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso10646-1",
|
1552
|
2161 "-*-fixed-medium-r-*-*-*-120-*-*-*-*-iso10646-1",
|
872
|
2162 "-*-courier-*-r-*-*-*-120-*-*-*-*-iso10646-1",
|
1552
|
2163 "-*-fixed-*-r-*-*-*-120-*-*-*-*-iso10646-1",
|
872
|
2164 /* Next try for any "medium" charcell or monospaced iso8859 font. */
|
|
2165 "-*-*-medium-r-*-*-*-120-*-*-m-*-iso10646-1",
|
|
2166 "-*-*-medium-r-*-*-*-120-*-*-c-*-iso10646-1",
|
|
2167 /* Next try for any charcell or monospaced iso8859 font. */
|
|
2168 "-*-*-*-r-*-*-*-120-*-*-m-*-iso10646-1",
|
|
2169 "-*-*-*-r-*-*-*-120-*-*-c-*-iso10646-1",
|
|
2170
|
|
2171 /* Repeat, any size */
|
|
2172 "-*-courier-medium-r-*-*-*-*-*-*-*-*-iso10646-1",
|
1552
|
2173 "-*-fixed-medium-r-*-*-*-*-*-*-*-*-iso10646-1",
|
872
|
2174 "-*-courier-*-r-*-*-*-*-*-*-*-*-iso10646-1",
|
1552
|
2175 "-*-fixed-*-r-*-*-*-*-*-*-*-*-iso10646-1",
|
872
|
2176 /* Next try for any "medium" charcell or monospaced iso8859 font. */
|
|
2177 "-*-*-medium-r-*-*-*-*-*-*-m-*-iso10646-1",
|
|
2178 "-*-*-medium-r-*-*-*-*-*-*-c-*-iso10646-1",
|
|
2179 /* Next try for any charcell or monospaced iso8859 font. */
|
|
2180 "-*-*-*-r-*-*-*-*-*-*-m-*-iso10646-1",
|
|
2181 "-*-*-*-r-*-*-*-*-*-*-c-*-iso10646-1",
|
|
2182
|
|
2183 /* Non-proportional fonts -- last resort. */
|
|
2184 "-*-*-*-r-*-*-*-120-*-*-*-*-iso10646-1",
|
|
2185 "-*-*-*-r-*-*-*-*-*-*-*-*-iso10646-1",
|
|
2186 "-*-*-*-*-*-*-*-*-*-*-*-*-iso10646-1",
|
|
2187
|
|
2188 /*********** Last resort ***********/
|
|
2189
|
|
2190 /* Boy, we sure are losing now. Try the above, but in any encoding. */
|
428
|
2191 "-*-*-medium-r-*-*-*-120-*-*-m-*-*-*",
|
|
2192 "-*-*-medium-r-*-*-*-120-*-*-c-*-*-*",
|
|
2193 "-*-*-*-r-*-*-*-120-*-*-m-*-*-*",
|
|
2194 "-*-*-*-r-*-*-*-120-*-*-c-*-*-*",
|
872
|
2195 /* Hello? Please? */
|
428
|
2196 "-*-*-*-r-*-*-*-120-*-*-*-*-*-*",
|
|
2197 "-*-*-*-*-*-*-*-120-*-*-*-*-*-*",
|
872
|
2198 "-*-*-*-*-*-*-*-*-*-*-*-*-*-*",
|
428
|
2199 "*"
|
3094
|
2200 #endif
|
428
|
2201 };
|
2367
|
2202 const Ascbyte **fontptr;
|
428
|
2203
|
462
|
2204 #ifdef HAVE_X_WINDOWS
|
428
|
2205 for (fontptr = fonts + countof(fonts) - 1; fontptr >= fonts; fontptr--)
|
|
2206 inst_list = Fcons (Fcons (list1 (Qx), build_string (*fontptr)),
|
|
2207 inst_list);
|
|
2208 #endif /* HAVE_X_WINDOWS */
|
|
2209
|
462
|
2210 #ifdef HAVE_GTK
|
|
2211 for (fontptr = fonts + countof(fonts) - 1; fontptr >= fonts; fontptr--)
|
|
2212 inst_list = Fcons (Fcons (list1 (Qgtk), build_string (*fontptr)),
|
|
2213 inst_list);
|
|
2214 #endif /* HAVE_GTK */
|
|
2215 #endif /* HAVE_X_WINDOWS || HAVE_GTK */
|
|
2216
|
428
|
2217 #ifdef HAVE_TTY
|
|
2218 inst_list = Fcons (Fcons (list1 (Qtty), build_string ("normal")),
|
|
2219 inst_list);
|
|
2220 #endif /* HAVE_TTY */
|
440
|
2221
|
771
|
2222 #ifdef HAVE_MS_WINDOWS
|
|
2223 {
|
2367
|
2224 const Ascbyte *mswfonts[] =
|
771
|
2225 {
|
|
2226 "Courier New:Regular:10::",
|
|
2227 "Courier:Regular:10::",
|
|
2228 ":Regular:10::"
|
|
2229 };
|
2367
|
2230 const Ascbyte **mswfontptr;
|
2865
|
2231
|
771
|
2232 for (mswfontptr = mswfonts + countof (mswfonts) - 1;
|
|
2233 mswfontptr >= mswfonts; mswfontptr--)
|
|
2234 {
|
|
2235 /* display device */
|
2865
|
2236 inst_list = Fcons (Fcons (list1 (Qmswindows),
|
771
|
2237 build_string (*mswfontptr)),
|
|
2238 inst_list);
|
|
2239 /* printer device */
|
2865
|
2240 inst_list = Fcons (Fcons (list1 (Qmsprinter),
|
771
|
2241 build_string (*mswfontptr)),
|
|
2242 inst_list);
|
|
2243 }
|
793
|
2244 /* Use Lucida Console rather than Courier New if it exists -- the
|
|
2245 line spacing is much less, so many more lines fit with the same
|
|
2246 size font. (And it's specifically designed for screens.) */
|
2865
|
2247 inst_list = Fcons (Fcons (list1 (Qmswindows),
|
793
|
2248 build_string ("Lucida Console:Regular:10::")),
|
|
2249 inst_list);
|
771
|
2250 }
|
428
|
2251 #endif /* HAVE_MS_WINDOWS */
|
771
|
2252
|
428
|
2253 set_specifier_fallback (Fget (Vdefault_face, Qfont, Qnil), inst_list);
|
|
2254 }
|
|
2255
|
|
2256 set_specifier_fallback (Fget (Vdefault_face, Qunderline, Qnil),
|
|
2257 list1 (Fcons (Qnil, Qnil)));
|
|
2258 set_specifier_fallback (Fget (Vdefault_face, Qstrikethru, Qnil),
|
|
2259 list1 (Fcons (Qnil, Qnil)));
|
|
2260 set_specifier_fallback (Fget (Vdefault_face, Qhighlight, Qnil),
|
|
2261 list1 (Fcons (Qnil, Qnil)));
|
|
2262 set_specifier_fallback (Fget (Vdefault_face, Qdim, Qnil),
|
|
2263 list1 (Fcons (Qnil, Qnil)));
|
|
2264 set_specifier_fallback (Fget (Vdefault_face, Qblinking, Qnil),
|
|
2265 list1 (Fcons (Qnil, Qnil)));
|
|
2266 set_specifier_fallback (Fget (Vdefault_face, Qreverse, Qnil),
|
|
2267 list1 (Fcons (Qnil, Qnil)));
|
|
2268
|
|
2269 /* gui-element is the parent face of all gui elements such as
|
|
2270 modeline, vertical divider and toolbar. */
|
|
2271 Vgui_element_face = Fmake_face (Qgui_element,
|
771
|
2272 build_msg_string ("gui element face"),
|
428
|
2273 Qnil);
|
|
2274
|
|
2275 /* Provide some last-resort fallbacks for gui-element face which
|
|
2276 mustn't default to default. */
|
|
2277 {
|
|
2278 Lisp_Object fg_fb = Qnil, bg_fb = Qnil;
|
|
2279
|
3094
|
2280 /* #### gui-element face doesn't have a font property?
|
|
2281 But it gets referred to later! */
|
462
|
2282 #ifdef HAVE_GTK
|
|
2283 /* We need to put something in there, or error checking gets
|
|
2284 #%!@#ed up before the styles are set, which override the
|
|
2285 fallbacks. */
|
|
2286 fg_fb = acons (list1 (Qgtk), build_string ("black"), fg_fb);
|
|
2287 bg_fb = acons (list1 (Qgtk), build_string ("Gray80"), bg_fb);
|
|
2288 #endif
|
428
|
2289 #ifdef HAVE_X_WINDOWS
|
|
2290 fg_fb = acons (list1 (Qx), build_string ("black"), fg_fb);
|
|
2291 bg_fb = acons (list1 (Qx), build_string ("Gray80"), bg_fb);
|
|
2292 #endif
|
|
2293 #ifdef HAVE_TTY
|
|
2294 fg_fb = acons (list1 (Qtty), Fvector (0, 0), fg_fb);
|
|
2295 bg_fb = acons (list1 (Qtty), Fvector (0, 0), bg_fb);
|
|
2296 #endif
|
|
2297 #ifdef HAVE_MS_WINDOWS
|
440
|
2298 fg_fb = acons (list1 (Qmsprinter), build_string ("black"), fg_fb);
|
|
2299 bg_fb = acons (list1 (Qmsprinter), build_string ("white"), bg_fb);
|
428
|
2300 fg_fb = acons (list1 (Qmswindows), build_string ("black"), fg_fb);
|
|
2301 bg_fb = acons (list1 (Qmswindows), build_string ("Gray75"), bg_fb);
|
|
2302 #endif
|
|
2303 set_specifier_fallback (Fget (Vgui_element_face, Qforeground, Qnil), fg_fb);
|
|
2304 set_specifier_fallback (Fget (Vgui_element_face, Qbackground, Qnil), bg_fb);
|
|
2305 }
|
|
2306
|
|
2307 /* Now create the other faces that redisplay needs to refer to
|
|
2308 directly. We could create them in Lisp but it's simpler this
|
|
2309 way since we need to get them anyway. */
|
|
2310
|
|
2311 /* modeline is gui element. */
|
771
|
2312 Vmodeline_face = Fmake_face (Qmodeline, build_msg_string ("modeline face"),
|
428
|
2313 Qnil);
|
|
2314
|
|
2315 set_specifier_fallback (Fget (Vmodeline_face, Qforeground, Qunbound),
|
|
2316 Fget (Vgui_element_face, Qforeground, Qunbound));
|
|
2317 set_specifier_fallback (Fget (Vmodeline_face, Qbackground, Qunbound),
|
|
2318 Fget (Vgui_element_face, Qbackground, Qunbound));
|
|
2319 set_specifier_fallback (Fget (Vmodeline_face, Qbackground_pixmap, Qnil),
|
|
2320 Fget (Vgui_element_face, Qbackground_pixmap,
|
|
2321 Qunbound));
|
|
2322
|
|
2323 /* toolbar is another gui element */
|
|
2324 Vtoolbar_face = Fmake_face (Qtoolbar,
|
771
|
2325 build_msg_string ("toolbar face"),
|
428
|
2326 Qnil);
|
|
2327 set_specifier_fallback (Fget (Vtoolbar_face, Qforeground, Qunbound),
|
|
2328 Fget (Vgui_element_face, Qforeground, Qunbound));
|
|
2329 set_specifier_fallback (Fget (Vtoolbar_face, Qbackground, Qunbound),
|
|
2330 Fget (Vgui_element_face, Qbackground, Qunbound));
|
|
2331 set_specifier_fallback (Fget (Vtoolbar_face, Qbackground_pixmap, Qnil),
|
|
2332 Fget (Vgui_element_face, Qbackground_pixmap,
|
|
2333 Qunbound));
|
|
2334
|
|
2335 /* vertical divider is another gui element */
|
|
2336 Vvertical_divider_face = Fmake_face (Qvertical_divider,
|
771
|
2337 build_msg_string ("vertical divider face"),
|
428
|
2338 Qnil);
|
|
2339
|
|
2340 set_specifier_fallback (Fget (Vvertical_divider_face, Qforeground, Qunbound),
|
|
2341 Fget (Vgui_element_face, Qforeground, Qunbound));
|
|
2342 set_specifier_fallback (Fget (Vvertical_divider_face, Qbackground, Qunbound),
|
|
2343 Fget (Vgui_element_face, Qbackground, Qunbound));
|
|
2344 set_specifier_fallback (Fget (Vvertical_divider_face, Qbackground_pixmap,
|
|
2345 Qunbound),
|
|
2346 Fget (Vgui_element_face, Qbackground_pixmap,
|
|
2347 Qunbound));
|
|
2348
|
|
2349 /* widget is another gui element */
|
|
2350 Vwidget_face = Fmake_face (Qwidget,
|
771
|
2351 build_msg_string ("widget face"),
|
428
|
2352 Qnil);
|
3094
|
2353 /* #### weird ... the gui-element face doesn't have its own font yet */
|
442
|
2354 set_specifier_fallback (Fget (Vwidget_face, Qfont, Qunbound),
|
|
2355 Fget (Vgui_element_face, Qfont, Qunbound));
|
428
|
2356 set_specifier_fallback (Fget (Vwidget_face, Qforeground, Qunbound),
|
|
2357 Fget (Vgui_element_face, Qforeground, Qunbound));
|
|
2358 set_specifier_fallback (Fget (Vwidget_face, Qbackground, Qunbound),
|
|
2359 Fget (Vgui_element_face, Qbackground, Qunbound));
|
442
|
2360 /* We don't want widgets to have a default background pixmap. */
|
428
|
2361
|
|
2362 Vleft_margin_face = Fmake_face (Qleft_margin,
|
771
|
2363 build_msg_string ("left margin face"),
|
428
|
2364 Qnil);
|
|
2365 Vright_margin_face = Fmake_face (Qright_margin,
|
771
|
2366 build_msg_string ("right margin face"),
|
428
|
2367 Qnil);
|
|
2368 Vtext_cursor_face = Fmake_face (Qtext_cursor,
|
771
|
2369 build_msg_string ("face for text cursor"),
|
428
|
2370 Qnil);
|
|
2371 Vpointer_face =
|
|
2372 Fmake_face (Qpointer,
|
771
|
2373 build_msg_string
|
428
|
2374 ("face for foreground/background colors of mouse pointer"),
|
|
2375 Qnil);
|
|
2376 }
|