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