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