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