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