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