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