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