Mercurial > hg > xemacs-beta
view src/faces.c @ 2367:ecf1ebac70d8
[xemacs-hg @ 2004-11-04 23:05:23 by ben]
commit mega-patch
configure.in: Turn off -Winline and -Wchar-subscripts.
Use the right set of cflags when compiling modules.
Rewrite ldap configuration to separate the inclusion of lber
(needed in recent Cygwin) from the basic checks for the
needed libraries.
add a function for MAKE_JUNK_C; initially code was added to
generate xemacs.def using this, but it will need to be rewritten.
add an rm -f for junk.c to avoid weird Cygwin bug with cp -f onto
an existing file.
Sort list of auto-detected functions and eliminate unused checks for
stpcpy, setlocale and getwd.
Add autodetection of Cygwin scanf problems
BETA: Rewrite section on configure to indicate what flags are important
and what not.
digest-doc.c, make-dump-id.c, profile.c, sorted-doc.c: Add proper decls for main().
make-msgfile.c: Document that this is old junk.
Move proposal to text.c.
make-msgfile.lex: Move proposal to text.c.
make-mswin-unicode.pl: Convert error-generating code so that the entire message will
be seen as a single unrecognized token.
mule/mule-ccl.el: Update docs.
lispref/mule.texi: Update CCL docs.
ldap/eldap.c: Mule-ize.
Use EXTERNAL_LIST_LOOP_2 instead of deleted EXTERNAL_LIST_LOOP.
* XEmacs 21.5.18 "chestnut" is released.
---------------------------------------------------------------
MULE-RELATED WORK:
---------------------------------------------------------------
---------------------------
byte-char conversion
---------------------------
buffer.c, buffer.h, insdel.c, text.c: Port FSF algorithm for byte-char conversion, replacing broken
previous version. Track the char position of the gap. Add
functions to do char-byte conversion downwards as well as upwards.
Move comments about algorithm workings to internals manual.
---------------------------
work on types
---------------------------
alloc.c, console-x-impl.h, dump-data.c, dump-data.h, dumper.c, dialog-msw.c, dired-msw.c, doc.c, editfns.c, esd.c, event-gtk.h, event-msw.c, events.c, file-coding.c, file-coding.h, fns.c, glyphs-eimage.c, glyphs-gtk.c, glyphs-msw.c, glyphs-shared.c, glyphs-x.c, glyphs.c, glyphs.h, gui.c, hpplay.c, imgproc.c, intl-win32.c, lrecord.h, lstream.c, keymap.c, lisp.h, libsst.c, linuxplay.c, miscplay.c, miscplay.h, mule-coding.c, nas.c, nt.c, ntheap.c, ntplay.c, objects-msw.c, objects-tty.c, objects-x.c, print.c, process-nt.c, process.c, redisplay.h, select-common.h, select-gtk.c, select-x.c, sgiplay.c, sound.c, sound.h, sunplay.c, sysfile.h, sysdep.c, syswindows.h, text.c, unexnt.c, win32.c, xgccache.c: Further work on types. This creates a full set of types for all
the basic semantics of `char' that I have so far identified, so that
its semantics can always be identified for the purposes of proper
Mule-safe code, and the raw use of `char' always avoided.
(1) More type renaming, for consistency of naming.
Char_ASCII -> Ascbyte
UChar_ASCII -> UAscbyte
Char_Binary -> CBinbyte
UChar_Binary -> Binbyte
SChar_Binary -> SBinbyte
(2) Introduce Rawbyte, CRawbyte, Boolbyte, Chbyte, UChbyte, and
Bitbyte and use them.
(3) New types Itext, Wexttext and Textcount for separating out
the concepts of bytes and textual units (different under UTF-16
and UTF-32, which are potential internal encodings).
(4) qxestr*_c -> qxestr*_ascii.
lisp.h: New; goes with other qxe() functions. #### Maybe goes in a
different section.
lisp.h: Group generic int-type defs together with EMACS_INT defs.
lisp.h: * lisp.h (WEXTTEXT_IS_WIDE)
New defns.
lisp.h: New type to replace places where int occurs as a boolean.
It's signed because occasionally people may want to use -1 as
an error value, and because unsigned ints are viral -- see comments
in the internals manual against using them.
dynarr.c: int -> Bytecount.
---------------------------
Mule-izing
---------------------------
device-x.c: Partially Mule-ize.
dumper.c, dumper.h: Mule-ize. Use Rawbyte. Use stderr_out not printf. Use wext_*().
sysdep.c, syswindows.h, text.c: New Wexttext API for manipulation of external text that may be
Unicode (e.g. startup code under Windows).
emacs.c: Mule-ize. Properly deal with argv in external encoding.
Use wext_*() and Wexttext. Use Rawbyte.
#if 0 some old junk on SCO that is unlikely to be correct.
Rewrite allocation code in run-temacs.
emacs.c, symsinit.h, win32.c: Rename win32 init function and call it even earlier, to
initialize mswindows_9x_p even earlier, for use in startup code
(XEUNICODE_P).
process.c: Use _wenviron not environ under Windows, to get Unicode environment
variables.
event-Xt.c: Mule-ize drag-n-drop related stuff.
dragdrop.c, dragdrop.h, frame-x.c: Mule-ize.
text.h: Add some more stand-in defines for particular kinds of conversion;
use in Mule-ization work in frame-x.c etc.
---------------------------
Freshening
---------------------------
intl-auto-encap-win32.c, intl-auto-encap-win32.h: Regenerate.
---------------------------
Unicode-work
---------------------------
intl-win32.c, syswindows.h: Factor out common options to MultiByteToWideChar and
WideCharToMultiByte. Add convert_unicode_to_multibyte_malloc()
and convert_unicode_to_multibyte_dynarr() and use. Add stuff for
alloca() conversion of multibyte/unicode.
alloc.c: Use dfc_external_data_len() in case of unicode coding system.
alloc.c, mule-charset.c: Don't zero out and reinit charset Unicode tables. This fucks up
dump-time loading. Anyway, either we load them at dump time or
run time, never both.
unicode.c: Dump the blank tables as well.
---------------------------------------------------------------
DOCUMENTATION, MOSTLY MULE-RELATED:
---------------------------------------------------------------
EmacsFrame.c, emodules.c, event-Xt.c, fileio.c, input-method-xlib.c, mule-wnnfns.c, redisplay-gtk.c, redisplay-tty.c, redisplay-x.c, regex.c, sysdep.c: Add comment about Mule work needed.
text.h: Add more documentation describing why DFC routines were not written
to return their value. Add some other DFC documentation.
console-msw.c, console-msw.h: Add pointer to docs in win32.c.
emacs.c: Add comments on sources of doc info.
text.c, charset.h, unicode.c, intl-win32.c, intl-encap-win32.c, text.h, file-coding.c, mule-coding.c: Collect background comments and related to text matters and
internationalization, and proposals for work to be done, in text.c
or Internals manual, stuff related to specific textual API's in
text.h, and stuff related to internal implementation of Unicode
conversion in unicode.c. Put lots of pointers to the comments to
make them easier to find.
s/mingw32.h, s/win32-common.h, s/win32-native.h, s/windowsnt.h, win32.c: Add bunches of new documentation on the different kinds of
builds and environments under Windows and how they work.
Collect this info in win32.c. Add pointers to these docs in
the relevant s/* files.
emacs.c: Document places with long comments.
Remove comment about exiting, move to internals manual, put
in pointer.
event-stream.c: Move docs about event queues and focus to internals manual, put
in pointer.
events.h: Move docs about event stream callbacks to internals manual, put
in pointer.
profile.c, redisplay.c, signal.c: Move documentation to the Internals manual.
process-nt.c: Add pointer to comment in win32-native.el.
lisp.h: Add comments about some comment conventions.
lisp.h: Add comment about the second argument.
device-msw.c, redisplay-msw.c: @@#### comments are out-of-date.
---------------------------------------------------------------
PDUMP WORK (MOTIVATED BY UNICODE CHANGES)
---------------------------------------------------------------
alloc.c, buffer.c, bytecode.c, console-impl.h, console.c, device.c, dumper.c, lrecord.h, elhash.c, emodules.h, events.c, extents.c, frame.c, glyphs.c, glyphs.h, mule-charset.c, mule-coding.c, objects.c, profile.c, rangetab.c, redisplay.c, specifier.c, specifier.h, window.c, lstream.c, file-coding.h, file-coding.c: PDUMP:
Properly implement dump_add_root_block(), which never worked before,
and is necessary for dumping Unicode tables.
Pdump name changes for accuracy:
XD_STRUCT_PTR -> XD_BLOCK_PTR.
XD_STRUCT_ARRAY -> XD_BLOCK_ARRAY.
XD_C_STRING -> XD_ASCII_STRING.
*_structure_* -> *_block_*.
lrecord.h: some comments added about
dump_add_root_block() vs dump_add_root_block_ptr().
extents.c: remove incorrect comment about pdump problems with gap array.
---------------------------------------------------------------
ALLOCATION
---------------------------------------------------------------
abbrev.c, alloc.c, bytecode.c, casefiddle.c, device-msw.c, device-x.c, dired-msw.c, doc.c, doprnt.c, dragdrop.c, editfns.c, emodules.c, file-coding.c, fileio.c, filelock.c, fns.c, glyphs-eimage.c, glyphs-gtk.c, glyphs-msw.c, glyphs-x.c, gui-msw.c, gui-x.c, imgproc.c, intl-win32.c, lread.c, menubar-gtk.c, menubar.c, nt.c, objects-msw.c, objects-x.c, print.c, process-nt.c, process-unix.c, process.c, realpath.c, redisplay.c, search.c, select-common.c, symbols.c, sysdep.c, syswindows.h, text.c, text.h, ui-byhand.c: New macros {alloca,xnew}_{itext,{i,ext,raw,bin,asc}bytes} for
more convenient allocation of these commonly requested items.
Modify functions to use alloca_ibytes, alloca_array, alloca_extbytes,
xnew_ibytes, etc. also XREALLOC_ARRAY, xnew.
alloc.c: Rewrite the allocation functions to factor out repeated code.
Add assertions for freeing dumped data.
lisp.h: Moved down and consolidated with other allocation stuff.
lisp.h, dynarr.c: New functions for allocation that's very efficient when mostly in
LIFO order.
lisp.h, text.c, text.h: Factor out some stuff for general use by alloca()-conversion funs.
text.h, lisp.h: Fill out convenience routines for allocating various kinds of
bytes and put them in lisp.h. Use them in place of xmalloc(),
ALLOCA().
text.h: Fill out the convenience functions so the _MALLOC() kinds match
the alloca() kinds.
---------------------------------------------------------------
ERROR-CHECKING
---------------------------------------------------------------
text.h: Create ASSERT_ASCTEXT_ASCII() and ASSERT_ASCTEXT_ASCII_LEN()
from similar Eistring checkers and change the Eistring checkers to
use them instead.
---------------------------------------------------------------
MACROS IN LISP.H
---------------------------------------------------------------
lisp.h: Redo GCPRO declarations. Create a "base" set of functions that can
be used to generate any kind of gcpro sets -- regular, ngcpro,
nngcpro, private ones used in GC_EXTERNAL_LIST_LOOP_2.
buffer.c, callint.c, chartab.c, console-msw.c, device-x.c, dialog-msw.c, dired.c, extents.c, ui-gtk.c, rangetab.c, nt.c, mule-coding.c, minibuf.c, menubar-msw.c, menubar.c, menubar-gtk.c, lread.c, lisp.h, gutter.c, glyphs.c, glyphs-widget.c, fns.c, fileio.c, file-coding.c, specifier.c: Eliminate EXTERNAL_LIST_LOOP, which does not check for circularities.
Use EXTERNAL_LIST_LOOP_2 instead or EXTERNAL_LIST_LOOP_3
or EXTERNAL_PROPERTY_LIST_LOOP_3 or GC_EXTERNAL_LIST_LOOP_2
(new macro). Removed/redid comments on EXTERNAL_LIST_LOOP.
---------------------------------------------------------------
SPACING FIXES
---------------------------------------------------------------
callint.c, hftctl.c, number-gmp.c, process-unix.c: Spacing fixes.
---------------------------------------------------------------
FIX FOR GEOMETRY PROBLEM IN FIRST FRAME
---------------------------------------------------------------
unicode.c: Add workaround for newlib bug in sscanf() [should be fixed by
release 1.5.12 of Cygwin].
toolbar.c: bug fix for problem of initial frame being 77 chars wide on Windows.
will be overridden by my other ws.
---------------------------------------------------------------
FIX FOR LEAKING PROCESS HANDLES:
---------------------------------------------------------------
process-nt.c: Fixes for leaking handles. Inspired by work done by Adrian Aichner
<adrian@xemacs.org>.
---------------------------------------------------------------
FIX FOR CYGWIN BUG (Unicode-related):
---------------------------------------------------------------
unicode.c: Add workaround for newlib bug in sscanf() [should be fixed by
release 1.5.12 of Cygwin].
---------------------------------------------------------------
WARNING FIXES:
---------------------------------------------------------------
console-stream.c: `reinit' is unused.
compiler.h, event-msw.c, frame-msw.c, intl-encap-win32.c, text.h: Add stuff to deal with ANSI-aliasing warnings I got.
regex.c: Gather includes together to avoid warning.
---------------------------------------------------------------
CHANGES TO INITIALIZATION ROUTINES:
---------------------------------------------------------------
buffer.c, emacs.c, console.c, debug.c, device-x.c, device.c, dragdrop.c, emodules.c, eval.c, event-Xt.c, event-gtk.c, event-msw.c, event-stream.c, event-tty.c, events.c, extents.c, faces.c, file-coding.c, fileio.c, font-lock.c, frame-msw.c, glyphs-widget.c, glyphs.c, gui-x.c, insdel.c, lread.c, lstream.c, menubar-gtk.c, menubar-x.c, minibuf.c, mule-wnnfns.c, objects-msw.c, objects.c, print.c, scrollbar-x.c, search.c, select-x.c, text.c, undo.c, unicode.c, window.c, symsinit.h: Call reinit_*() functions directly from emacs.c, for clarity.
Factor out some redundant init code. Move disallowed stuff
that had crept into vars_of_glyphs() into complex_vars_of_glyphs().
Call init_eval_semi_early() from eval.c not in the middle of
vars_of_() in emacs.c since there should be no order dependency
in the latter calls.
---------------------------------------------------------------
ARMAGEDDON:
---------------------------------------------------------------
alloc.c, emacs.c, lisp.h, print.c: Rename inhibit_non_essential_printing_operations to
inhibit_non_essential_conversion_operations.
text.c: Assert on !inhibit_non_essential_conversion_operations.
console-msw.c, print.c: Don't do conversion in SetConsoleTitle or FindWindow to avoid
problems during armageddon. Put #errors for NON_ASCII_INTERNAL_FORMAT
in places where problems would arise.
---------------------------------------------------------------
CHANGES TO THE BUILD PROCEDURE:
---------------------------------------------------------------
config.h.in, s/cxux.h, s/usg5-4-2.h, m/powerpc.h: Add comment about correct ordering of this file.
Rearrange everything to follow this -- put all #undefs together
and before the s&m files. Add undefs for HAVE_ALLOCA, C_ALLOCA,
BROKEN_ALLOCA_IN_FUNCTION_CALLS, STACK_DIRECTION. Remove unused
HAVE_STPCPY, HAVE_GETWD, HAVE_SETLOCALE.
m/gec63.h: Deleted; totally broken, not used at all, not in FSF.
m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/altos.h, m/amdahl.h, m/apollo.h, m/att3b.h, m/aviion.h, m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h, m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/ews4800r.h, m/gould.h, m/hp300bsd.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h, m/intel386.h, m/iris4d.h, m/iris5d.h, m/iris6d.h, m/irist.h, m/isi-ov.h, m/luna88k.h, m/m68k.h, m/masscomp.h, m/mg1.h, m/mips-nec.h, m/mips-siemens.h, m/mips.h, m/news.h, m/nh3000.h, m/nh4000.h, m/ns32000.h, m/orion105.h, m/pfa50.h, m/plexus.h, m/pmax.h, m/powerpc.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h, m/sgi-challenge.h, m/symmetry.h, m/tad68k.h, m/tahoe.h, m/targon31.h, m/tekxd88.h, m/template.h, m/tower32.h, m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/xps100.h: Delete C_ALLOCA, HAVE_ALLOCA, STACK_DIRECTION,
BROKEN_ALLOCA_IN_FUNCTION_CALLS. All of this is auto-detected.
When in doubt, I followed recent FSF sources, which also have
these things deleted.
author | ben |
---|---|
date | Thu, 04 Nov 2004 23:08:28 +0000 |
parents | 04bc9d2f42c7 |
children | 3d8143fc88e1 |
line wrap: on
line source
/* "Face" primitives Copyright (C) 1994 Free Software Foundation, Inc. Copyright (C) 1995 Board of Trustees, University of Illinois. Copyright (C) 1995, 1996, 2001, 2002 Ben Wing. Copyright (C) 1995 Sun Microsystems, Inc. This file is part of XEmacs. XEmacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. XEmacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with XEmacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Synched up with: Not in FSF. */ /* Written by Chuck Thompson and Ben Wing, based loosely on old face code by Jamie Zawinski. */ #include <config.h> #include "lisp.h" #include "buffer.h" #include "device-impl.h" #include "elhash.h" #include "extents-impl.h" /* for extent_face */ #include "faces.h" #include "frame-impl.h" #include "glyphs.h" #include "objects-impl.h" #include "specifier.h" #include "window.h" Lisp_Object Qfacep; Lisp_Object Qforeground, Qbackground, Qdisplay_table; Lisp_Object Qbackground_pixmap, Qunderline, Qdim; Lisp_Object Qblinking, Qstrikethru; Lisp_Object Qinit_face_from_resources; Lisp_Object Qinit_frame_faces; Lisp_Object Qinit_device_faces; Lisp_Object Qinit_global_faces; /* These faces are used directly internally. We use these variables to be able to reference them directly and save the overhead of calling Ffind_face. */ Lisp_Object Vdefault_face, Vmodeline_face, Vgui_element_face; Lisp_Object Vleft_margin_face, Vright_margin_face, Vtext_cursor_face; Lisp_Object Vpointer_face, Vvertical_divider_face, Vtoolbar_face, Vwidget_face; /* Qdefault, Qhighlight, Qleft_margin, Qright_margin defined in general.c */ Lisp_Object Qmodeline, Qgui_element, Qtext_cursor, Qvertical_divider; /* In the old implementation Vface_list was a list of the face names, not the faces themselves. We now distinguish between permanent and temporary faces. Permanent faces are kept in a regular hash table, temporary faces in a weak hash table. */ Lisp_Object Vpermanent_faces_cache; Lisp_Object Vtemporary_faces_cache; Lisp_Object Vbuilt_in_face_specifiers; static Lisp_Object mark_face (Lisp_Object obj) { Lisp_Face *face = XFACE (obj); mark_object (face->name); mark_object (face->doc_string); mark_object (face->foreground); mark_object (face->background); mark_object (face->font); mark_object (face->display_table); mark_object (face->background_pixmap); mark_object (face->underline); mark_object (face->strikethru); mark_object (face->highlight); mark_object (face->dim); mark_object (face->blinking); mark_object (face->reverse); mark_object (face->charsets_warned_about); return face->plist; } static void print_face (Lisp_Object obj, Lisp_Object printcharfun, int UNUSED (escapeflag)) { Lisp_Face *face = XFACE (obj); if (print_readably) { write_fmt_string_lisp (printcharfun, "#s(face name %S)", 1, face->name); } else { write_fmt_string_lisp (printcharfun, "#<face %S", 1, face->name); if (!NILP (face->doc_string)) write_fmt_string_lisp (printcharfun, " %S", 1, face->doc_string); write_c_string (printcharfun, ">"); } } /* Faces are equal if all of their display attributes are equal. We don't compare names or doc-strings, because that would make equal be eq. This isn't concerned with "unspecified" attributes, that's what #'face-differs-from-default-p is for. */ static int face_equal (Lisp_Object obj1, Lisp_Object obj2, int depth) { Lisp_Face *f1 = XFACE (obj1); Lisp_Face *f2 = XFACE (obj2); depth++; return (internal_equal (f1->foreground, f2->foreground, depth) && internal_equal (f1->background, f2->background, depth) && internal_equal (f1->font, f2->font, depth) && internal_equal (f1->display_table, f2->display_table, depth) && internal_equal (f1->background_pixmap, f2->background_pixmap, depth) && internal_equal (f1->underline, f2->underline, depth) && internal_equal (f1->strikethru, f2->strikethru, depth) && internal_equal (f1->highlight, f2->highlight, depth) && internal_equal (f1->dim, f2->dim, depth) && internal_equal (f1->blinking, f2->blinking, depth) && internal_equal (f1->reverse, f2->reverse, depth) && ! plists_differ (f1->plist, f2->plist, 0, 0, depth + 1)); } static Hashcode face_hash (Lisp_Object obj, int depth) { Lisp_Face *f = XFACE (obj); depth++; /* No need to hash all of the elements; that would take too long. Just hash the most common ones. */ return HASH3 (internal_hash (f->foreground, depth), internal_hash (f->background, depth), internal_hash (f->font, depth)); } static Lisp_Object face_getprop (Lisp_Object obj, Lisp_Object prop) { Lisp_Face *f = XFACE (obj); return (EQ (prop, Qforeground) ? f->foreground : EQ (prop, Qbackground) ? f->background : EQ (prop, Qfont) ? f->font : EQ (prop, Qdisplay_table) ? f->display_table : EQ (prop, Qbackground_pixmap) ? f->background_pixmap : EQ (prop, Qunderline) ? f->underline : EQ (prop, Qstrikethru) ? f->strikethru : EQ (prop, Qhighlight) ? f->highlight : EQ (prop, Qdim) ? f->dim : EQ (prop, Qblinking) ? f->blinking : EQ (prop, Qreverse) ? f->reverse : EQ (prop, Qdoc_string) ? f->doc_string : external_plist_get (&f->plist, prop, 0, ERROR_ME)); } static int face_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value) { Lisp_Face *f = XFACE (obj); if (EQ (prop, Qforeground) || EQ (prop, Qbackground) || EQ (prop, Qfont) || EQ (prop, Qdisplay_table) || EQ (prop, Qbackground_pixmap) || EQ (prop, Qunderline) || EQ (prop, Qstrikethru) || EQ (prop, Qhighlight) || EQ (prop, Qdim) || EQ (prop, Qblinking) || EQ (prop, Qreverse)) return 0; if (EQ (prop, Qdoc_string)) { if (!NILP (value)) CHECK_STRING (value); f->doc_string = value; return 1; } external_plist_put (&f->plist, prop, value, 0, ERROR_ME); return 1; } static int face_remprop (Lisp_Object obj, Lisp_Object prop) { Lisp_Face *f = XFACE (obj); if (EQ (prop, Qforeground) || EQ (prop, Qbackground) || EQ (prop, Qfont) || EQ (prop, Qdisplay_table) || EQ (prop, Qbackground_pixmap) || EQ (prop, Qunderline) || EQ (prop, Qstrikethru) || EQ (prop, Qhighlight) || EQ (prop, Qdim) || EQ (prop, Qblinking) || EQ (prop, Qreverse)) return -1; if (EQ (prop, Qdoc_string)) { f->doc_string = Qnil; return 1; } return external_remprop (&f->plist, prop, 0, ERROR_ME); } static Lisp_Object face_plist (Lisp_Object obj) { Lisp_Face *face = XFACE (obj); Lisp_Object result = face->plist; result = cons3 (Qreverse, face->reverse, result); result = cons3 (Qblinking, face->blinking, result); result = cons3 (Qdim, face->dim, result); result = cons3 (Qhighlight, face->highlight, result); result = cons3 (Qstrikethru, face->strikethru, result); result = cons3 (Qunderline, face->underline, result); result = cons3 (Qbackground_pixmap, face->background_pixmap, result); result = cons3 (Qdisplay_table, face->display_table, result); result = cons3 (Qfont, face->font, result); result = cons3 (Qbackground, face->background, result); result = cons3 (Qforeground, face->foreground, result); return result; } static const struct memory_description face_description[] = { { XD_LISP_OBJECT, offsetof (Lisp_Face, name) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, doc_string) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, foreground) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, background) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, font) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, display_table) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, background_pixmap) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, underline) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, strikethru) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, highlight) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, dim) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, blinking) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, reverse) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, plist) }, { XD_LISP_OBJECT, offsetof (Lisp_Face, charsets_warned_about) }, { XD_END } }; DEFINE_LRECORD_IMPLEMENTATION_WITH_PROPS ("face", face, 1, /*dumpable-flag*/ mark_face, print_face, 0, face_equal, face_hash, face_description, face_getprop, face_putprop, face_remprop, face_plist, Lisp_Face); /************************************************************************/ /* face read syntax */ /************************************************************************/ static int face_name_validate (Lisp_Object UNUSED (keyword), Lisp_Object value, Error_Behavior errb) { if (ERRB_EQ (errb, ERROR_ME)) { CHECK_SYMBOL (value); return 1; } return SYMBOLP (value); } static int face_validate (Lisp_Object data, Error_Behavior errb) { int name_seen = 0; Lisp_Object valw = Qnil; data = Fcdr (data); /* skip over Qface */ while (!NILP (data)) { Lisp_Object keyw = Fcar (data); data = Fcdr (data); valw = Fcar (data); data = Fcdr (data); if (EQ (keyw, Qname)) name_seen = 1; else abort (); } if (!name_seen) { maybe_sferror ("No face name given", Qunbound, Qface, errb); return 0; } if (NILP (Ffind_face (valw))) { maybe_invalid_argument ("No such face", valw, Qface, errb); return 0; } return 1; } static Lisp_Object face_instantiate (Lisp_Object data) { return Fget_face (Fcar (Fcdr (data))); } /**************************************************************************** * utility functions * ****************************************************************************/ static void reset_face (Lisp_Face *f) { f->name = Qnil; f->doc_string = Qnil; f->dirty = 0; f->foreground = Qnil; f->background = Qnil; f->font = Qnil; f->display_table = Qnil; f->background_pixmap = Qnil; f->underline = Qnil; f->strikethru = Qnil; f->highlight = Qnil; f->dim = Qnil; f->blinking = Qnil; f->reverse = Qnil; f->plist = Qnil; f->charsets_warned_about = Qnil; } static Lisp_Face * allocate_face (void) { Lisp_Face *result = alloc_lcrecord_type (Lisp_Face, &lrecord_face); reset_face (result); return result; } /* We store the faces in hash tables with the names as the key and the actual face object as the value. Occasionally we need to use them in a list format. These routines provide us with that. */ struct face_list_closure { Lisp_Object *face_list; }; static int add_face_to_list_mapper (Lisp_Object UNUSED (key), Lisp_Object value, void *face_list_closure) { /* This function can GC */ struct face_list_closure *fcl = (struct face_list_closure *) face_list_closure; *(fcl->face_list) = Fcons (XFACE (value)->name, (*fcl->face_list)); return 0; } static Lisp_Object faces_list_internal (Lisp_Object list) { Lisp_Object face_list = Qnil; struct gcpro gcpro1; struct face_list_closure face_list_closure; GCPRO1 (face_list); face_list_closure.face_list = &face_list; elisp_maphash (add_face_to_list_mapper, list, &face_list_closure); UNGCPRO; return face_list; } static Lisp_Object permanent_faces_list (void) { return faces_list_internal (Vpermanent_faces_cache); } static Lisp_Object temporary_faces_list (void) { return faces_list_internal (Vtemporary_faces_cache); } static int mark_face_as_clean_mapper (Lisp_Object UNUSED (key), Lisp_Object value, void *flag_closure) { /* This function can GC */ int *flag = (int *) flag_closure; XFACE (value)->dirty = *flag; return 0; } static void mark_all_faces_internal (int flag) { elisp_maphash (mark_face_as_clean_mapper, Vpermanent_faces_cache, &flag); elisp_maphash (mark_face_as_clean_mapper, Vtemporary_faces_cache, &flag); } void mark_all_faces_as_clean (void) { mark_all_faces_internal (0); } /* Currently unused (see the comment in face_property_was_changed()). */ #if 0 /* #### OBSOLETE ME, PLEASE. Maybe. Maybe this is just as good as any other solution. */ struct face_inheritance_closure { Lisp_Object face; Lisp_Object property; }; static void update_inheritance_mapper_internal (Lisp_Object cur_face, Lisp_Object inh_face, Lisp_Object property) { /* #### fix this function */ Lisp_Object elt = Qnil; struct gcpro gcpro1; GCPRO1 (elt); for (elt = FACE_PROPERTY_SPEC_LIST (cur_face, property, Qall); !NILP (elt); elt = XCDR (elt)) { Lisp_Object values = XCDR (XCAR (elt)); for (; !NILP (values); values = XCDR (values)) { Lisp_Object value = XCDR (XCAR (values)); if (VECTORP (value) && XVECTOR_LENGTH (value)) { if (EQ (Ffind_face (XVECTOR_DATA (value)[0]), inh_face)) Fset_specifier_dirty_flag (FACE_PROPERTY_SPECIFIER (inh_face, property)); } } } UNGCPRO; } static int update_face_inheritance_mapper (const void *hash_key, void *hash_contents, void *face_inheritance_closure) { Lisp_Object key, contents; struct face_inheritance_closure *fcl = (struct face_inheritance_closure *) face_inheritance_closure; key = VOID_TO_LISP (hash_key); contents = VOID_TO_LISP (hash_contents); if (EQ (fcl->property, Qfont)) { update_inheritance_mapper_internal (contents, fcl->face, Qfont); } else if (EQ (fcl->property, Qforeground) || EQ (fcl->property, Qbackground)) { update_inheritance_mapper_internal (contents, fcl->face, Qforeground); update_inheritance_mapper_internal (contents, fcl->face, Qbackground); } else if (EQ (fcl->property, Qunderline) || EQ (fcl->property, Qstrikethru) || EQ (fcl->property, Qhighlight) || EQ (fcl->property, Qdim) || EQ (fcl->property, Qblinking) || EQ (fcl->property, Qreverse)) { update_inheritance_mapper_internal (contents, fcl->face, Qunderline); update_inheritance_mapper_internal (contents, fcl->face, Qstrikethru); update_inheritance_mapper_internal (contents, fcl->face, Qhighlight); update_inheritance_mapper_internal (contents, fcl->face, Qdim); update_inheritance_mapper_internal (contents, fcl->face, Qblinking); update_inheritance_mapper_internal (contents, fcl->face, Qreverse); } return 0; } static void update_faces_inheritance (Lisp_Object face, Lisp_Object property) { struct face_inheritance_closure face_inheritance_closure; struct gcpro gcpro1, gcpro2; GCPRO2 (face, property); face_inheritance_closure.face = face; face_inheritance_closure.property = property; elisp_maphash (update_face_inheritance_mapper, Vpermanent_faces_cache, &face_inheritance_closure); elisp_maphash (update_face_inheritance_mapper, Vtemporary_faces_cache, &face_inheritance_closure); UNGCPRO; } #endif /* 0 */ Lisp_Object face_property_matching_instance (Lisp_Object face, Lisp_Object property, Lisp_Object charset, Lisp_Object domain, Error_Behavior errb, int no_fallback, Lisp_Object depth) { Lisp_Object retval; Lisp_Object matchspec = Qunbound; struct gcpro gcpro1; if (!NILP (charset)) matchspec = noseeum_cons (charset, Qnil); GCPRO1 (matchspec); retval = specifier_instance_no_quit (Fget (face, property, Qnil), matchspec, domain, errb, no_fallback, depth); if (UNBOUNDP (retval)) { if (CONSP (matchspec)) Fsetcdr (matchspec, Qt); retval = specifier_instance_no_quit (Fget (face, property, Qnil), matchspec, domain, errb, no_fallback, depth); } UNGCPRO; if (CONSP (matchspec)) free_cons (matchspec); if (UNBOUNDP (retval) && !no_fallback) { if (EQ (property, Qfont)) { if (NILP (memq_no_quit (charset, XFACE (face)->charsets_warned_about))) { #ifdef MULE if (!UNBOUNDP (charset)) warn_when_safe (Qfont, Qnotice, "Unable to instantiate font for charset %s, face %s", XSTRING_DATA (symbol_name (XSYMBOL (XCHARSET_NAME (charset)))), XSTRING_DATA (symbol_name (XSYMBOL (XFACE (face)->name)))); else #endif warn_when_safe (Qfont, Qnotice, "Unable to instantiate font for face %s", XSTRING_DATA (symbol_name (XSYMBOL (XFACE (face)->name)))); XFACE (face)->charsets_warned_about = Fcons (charset, XFACE (face)->charsets_warned_about); } retval = Vthe_null_font_instance; } } return retval; } DEFUN ("facep", Ffacep, 1, 1, 0, /* Return t if OBJECT is a face. */ (object)) { return FACEP (object) ? Qt : Qnil; } DEFUN ("find-face", Ffind_face, 1, 1, 0, /* Retrieve the face of the given name. If FACE-OR-NAME is a face object, it is simply returned. Otherwise, FACE-OR-NAME should be a symbol. If there is no such face, nil is returned. Otherwise the associated face object is returned. */ (face_or_name)) { Lisp_Object retval; if (FACEP (face_or_name)) return face_or_name; CHECK_SYMBOL (face_or_name); /* Check if the name represents a permanent face. */ retval = Fgethash (face_or_name, Vpermanent_faces_cache, Qnil); if (!NILP (retval)) return retval; /* Check if the name represents a temporary face. */ return Fgethash (face_or_name, Vtemporary_faces_cache, Qnil); } DEFUN ("get-face", Fget_face, 1, 1, 0, /* Retrieve the face of the given name. Same as `find-face' except an error is signalled if there is no such face instead of returning nil. */ (name)) { Lisp_Object face = Ffind_face (name); if (NILP (face)) invalid_argument ("No such face", name); return face; } DEFUN ("face-name", Fface_name, 1, 1, 0, /* Return the name of the given face. */ (face)) { return XFACE (Fget_face (face))->name; } DEFUN ("built-in-face-specifiers", Fbuilt_in_face_specifiers, 0, 0, 0, /* Return a list of all built-in face specifier properties. Don't modify this list! */ ()) { return Vbuilt_in_face_specifiers; } /* These values are retrieved so often that we make a special function. */ void default_face_font_info (Lisp_Object domain, int *ascent, int *descent, int *height, int *width, int *proportional_p) { Lisp_Object font_instance; if (noninteractive) { if (ascent) *ascent = 1; if (descent) *descent = 0; if (height) *height = 1; if (width) *width = 1; if (proportional_p) *proportional_p = 0; return; } /* We use ASCII here. This is probably reasonable because the people calling this function are using the resulting values to come up with overall sizes for windows and frames. */ if (WINDOWP (domain)) { struct face_cachel *cachel; struct window *w = XWINDOW (domain); /* #### It's possible for this function to get called when the face cachels have not been initialized. I don't know why. */ if (!Dynarr_length (w->face_cachels)) reset_face_cachels (w); cachel = WINDOW_FACE_CACHEL (w, DEFAULT_INDEX); font_instance = FACE_CACHEL_FONT (cachel, Vcharset_ascii); } else { font_instance = FACE_FONT (Vdefault_face, domain, Vcharset_ascii); } if (height) *height = XFONT_INSTANCE (font_instance)->height; if (width) *width = XFONT_INSTANCE (font_instance)->width; if (ascent) *ascent = XFONT_INSTANCE (font_instance)->ascent; if (descent) *descent = XFONT_INSTANCE (font_instance)->descent; if (proportional_p) *proportional_p = XFONT_INSTANCE (font_instance)->proportional_p; } void default_face_height_and_width (Lisp_Object domain, int *height, int *width) { default_face_font_info (domain, 0, 0, height, width, 0); } void default_face_height_and_width_1 (Lisp_Object domain, int *height, int *width) { if (window_system_pixelated_geometry (domain)) { if (height) *height = 1; if (width) *width = 1; } else default_face_height_and_width (domain, height, width); } DEFUN ("face-list", Fface_list, 0, 1, 0, /* Return a list of the names of all defined faces. If TEMPORARY is nil, only the permanent faces are included. If it is t, only the temporary faces are included. If it is any other non-nil value both permanent and temporary are included. */ (temporary)) { Lisp_Object face_list = Qnil; /* Added the permanent faces, if requested. */ if (NILP (temporary) || !EQ (Qt, temporary)) face_list = permanent_faces_list (); if (!NILP (temporary)) { struct gcpro gcpro1; GCPRO1 (face_list); face_list = nconc2 (face_list, temporary_faces_list ()); UNGCPRO; } return face_list; } DEFUN ("make-face", Fmake_face, 1, 3, 0, /* Define a new face with name NAME (a symbol), described by DOC-STRING. You can modify the font, color, etc. of a face with the set-face-* functions. If the face already exists, it is unmodified. If TEMPORARY is non-nil, this face will cease to exist if not in use. */ (name, doc_string, temporary)) { /* This function can GC if initialized is non-zero */ Lisp_Face *f; Lisp_Object face; CHECK_SYMBOL (name); if (!NILP (doc_string)) CHECK_STRING (doc_string); face = Ffind_face (name); if (!NILP (face)) return face; f = allocate_face (); face = wrap_face (f); f->name = name; f->doc_string = doc_string; f->foreground = Fmake_specifier (Qcolor); set_color_attached_to (f->foreground, face, Qforeground); f->background = Fmake_specifier (Qcolor); set_color_attached_to (f->background, face, Qbackground); f->font = Fmake_specifier (Qfont); set_font_attached_to (f->font, face, Qfont); f->background_pixmap = Fmake_specifier (Qimage); set_image_attached_to (f->background_pixmap, face, Qbackground_pixmap); f->display_table = Fmake_specifier (Qdisplay_table); f->underline = Fmake_specifier (Qface_boolean); set_face_boolean_attached_to (f->underline, face, Qunderline); f->strikethru = Fmake_specifier (Qface_boolean); set_face_boolean_attached_to (f->strikethru, face, Qstrikethru); f->highlight = Fmake_specifier (Qface_boolean); set_face_boolean_attached_to (f->highlight, face, Qhighlight); f->dim = Fmake_specifier (Qface_boolean); set_face_boolean_attached_to (f->dim, face, Qdim); f->blinking = Fmake_specifier (Qface_boolean); set_face_boolean_attached_to (f->blinking, face, Qblinking); f->reverse = Fmake_specifier (Qface_boolean); set_face_boolean_attached_to (f->reverse, face, Qreverse); if (!NILP (Vdefault_face)) { /* If the default face has already been created, set it as the default fallback specifier for all the specifiers we just created. This implements the standard "all faces inherit from default" behavior. */ set_specifier_fallback (f->foreground, Fget (Vdefault_face, Qforeground, Qunbound)); set_specifier_fallback (f->background, Fget (Vdefault_face, Qbackground, Qunbound)); set_specifier_fallback (f->font, Fget (Vdefault_face, Qfont, Qunbound)); set_specifier_fallback (f->background_pixmap, Fget (Vdefault_face, Qbackground_pixmap, Qunbound)); set_specifier_fallback (f->display_table, Fget (Vdefault_face, Qdisplay_table, Qunbound)); set_specifier_fallback (f->underline, Fget (Vdefault_face, Qunderline, Qunbound)); set_specifier_fallback (f->strikethru, Fget (Vdefault_face, Qstrikethru, Qunbound)); set_specifier_fallback (f->highlight, Fget (Vdefault_face, Qhighlight, Qunbound)); set_specifier_fallback (f->dim, Fget (Vdefault_face, Qdim, Qunbound)); set_specifier_fallback (f->blinking, Fget (Vdefault_face, Qblinking, Qunbound)); set_specifier_fallback (f->reverse, Fget (Vdefault_face, Qreverse, Qunbound)); } /* Add the face to the appropriate list. */ if (NILP (temporary)) Fputhash (name, face, Vpermanent_faces_cache); else Fputhash (name, face, Vtemporary_faces_cache); /* Note that it's OK if we dump faces. When we start up again when we're not noninteractive, `init-global-faces' is called and it resources all existing faces. */ if (initialized && !noninteractive) { struct gcpro gcpro1, gcpro2; GCPRO2 (name, face); call1 (Qinit_face_from_resources, name); UNGCPRO; } return face; } /***************************************************************************** initialization code ****************************************************************************/ void init_global_faces (struct device *d) { /* When making the initial terminal device, there is no Lisp code loaded, so we can't do this. */ if (initialized && !noninteractive) call_critical_lisp_code (d, Qinit_global_faces, wrap_device (d)); } void init_device_faces (struct device *d) { /* This function can call lisp */ /* When making the initial terminal device, there is no Lisp code loaded, so we can't do this. */ if (initialized) call_critical_lisp_code (d, Qinit_device_faces, wrap_device (d)); } void init_frame_faces (struct frame *frm) { /* When making the initial terminal device, there is no Lisp code loaded, so we can't do this. */ if (initialized) { Lisp_Object tframe = wrap_frame (frm); /* DO NOT change the selected frame here. If the debugger goes off it will try and display on the frame being created, but it is not ready for that yet and a horrible death will occur. Any random code depending on the selected-frame as an implicit arg should be tracked down and shot. For the benefit of the one known, xpm-color-symbols, make-frame sets the variable Vframe_being_created to the frame it is making and sets it to nil when done. Internal functions that this could trigger which are currently depending on selected-frame should use this instead. It is not currently visible at the lisp level. */ call_critical_lisp_code (XDEVICE (FRAME_DEVICE (frm)), Qinit_frame_faces, tframe); } } /**************************************************************************** * face cache element functions * ****************************************************************************/ /* #### Here is a description of how the face cache elements ought to be redone. It is *NOT* how they work currently: However, when I started to go about implementing this, I realized that there are all sorts of subtle problems with cache coherency that are coming up. As it turns out, these problems don't manifest themselves now due to the brute-force "kill 'em all" approach to cache invalidation when faces change; but if this is ever made smarter, these problems are going to come up, and some of them are very non-obvious. I'm thinking of redoing the cache code a bit to avoid these coherency problems. The bulk of the problems will arise because the current display structures have simple indices into the face cache, but the cache can be changed at various times, which could make the current display structures incorrect. I guess the dirty and updated flags are an attempt to fix this, but this approach doesn't really work. Here's an approach that should keep things clean and unconfused: 1) Imagine a "virtual face cache" that can grow arbitrarily big and for which the only thing allowed is to add new elements. Existing elements cannot be removed or changed. This way, any pointers in the existing redisplay structure into the cache never get screwed up. (This is important because even if a cache element is out of date, if there's a pointer to it then its contents still accurately describe the way the text currently looks on the screen.) 2) Each element in the virtual cache either describes exactly one face, or describes the merger of a number of faces by some process. In order to simplify things, for mergers we do not record which faces or ordering was used, but simply that this cache element is the result of merging. Unlike the current implementation, it's important that a single cache element not be used to both describe a single face and describe a merger, even if all the property values are the same. 3) Each cache element can be clean or dirty. "Dirty" means that the face that the element points to has been changed; this gets set at the time the face is changed. This way, when looking up a value in the cache, you can determine whether it's out of date or not. For merged faces it does not matter -- we don't record the faces or priority used to create the merger, so it's impossible to look up one of these faces. We have to recompute it each time. Luckily, this is fine -- doing the merge is much less expensive than recomputing the properties of a single face. 4) For each cache element, we keep a hash value. (In order to hash the boolean properties, we convert each of them into a different large prime number so that the hashing works well.) This allows us, when comparing runes, to properly determine whether the face for that rune has changed. This will be especially important for TTY's, where there aren't that many faces and minimizing redraw is very important. 5) We can't actually keep an infinite cache, but that doesn't really matter that much. The only elements we care about are those that are used by either the current or desired display structs. Therefore, we keep a per-window redisplay iteration number, and mark each element with that number as we use it. Just after outputting the window and synching the redisplay structs, we go through the cache and invalidate all elements that are not clean elements referring to a particular face and that do not have an iteration number equal to the current one. We keep them in a chain, and use them to allocate new elements when possible instead of increasing the Dynarr. --ben (?? At least I think I wrote this!) */ /* mark for GC a dynarr of face cachels. */ void mark_face_cachels (face_cachel_dynarr *elements) { int elt; if (!elements) return; for (elt = 0; elt < Dynarr_length (elements); elt++) { struct face_cachel *cachel = Dynarr_atp (elements, elt); { int i; for (i = 0; i < NUM_LEADING_BYTES; i++) if (!NILP (cachel->font[i]) && !UNBOUNDP (cachel->font[i])) mark_object (cachel->font[i]); } mark_object (cachel->face); mark_object (cachel->foreground); mark_object (cachel->background); mark_object (cachel->display_table); mark_object (cachel->background_pixmap); } } /* ensure that the given cachel contains an updated font value for the given charset. Return the updated font value. */ Lisp_Object ensure_face_cachel_contains_charset (struct face_cachel *cachel, Lisp_Object domain, Lisp_Object charset) { Lisp_Object new_val; Lisp_Object face = cachel->face; int bound = 1; int offs = XCHARSET_LEADING_BYTE (charset) - MIN_LEADING_BYTE; if (!UNBOUNDP (cachel->font[offs]) && cachel->font_updated[offs]) return cachel->font[offs]; if (UNBOUNDP (face)) { /* a merged face. */ int i; struct window *w = XWINDOW (domain); new_val = Qunbound; cachel->font_specified[offs] = 0; for (i = 0; i < cachel->nfaces; i++) { struct face_cachel *oth; oth = Dynarr_atp (w->face_cachels, FACE_CACHEL_FINDEX_UNSAFE (cachel, i)); /* Tout le monde aime la recursion */ ensure_face_cachel_contains_charset (oth, domain, charset); if (oth->font_specified[offs]) { new_val = oth->font[offs]; cachel->font_specified[offs] = 1; break; } } if (!cachel->font_specified[offs]) /* need to do the default face. */ { struct face_cachel *oth = Dynarr_atp (w->face_cachels, DEFAULT_INDEX); ensure_face_cachel_contains_charset (oth, domain, charset); new_val = oth->font[offs]; } if (!UNBOUNDP (cachel->font[offs]) && !EQ (cachel->font[offs], new_val)) cachel->dirty = 1; cachel->font_updated[offs] = 1; cachel->font[offs] = new_val; return new_val; } new_val = face_property_matching_instance (face, Qfont, charset, domain, /* #### look into error flag */ ERROR_ME_DEBUG_WARN, 1, Qzero); if (UNBOUNDP (new_val)) { bound = 0; new_val = face_property_matching_instance (face, Qfont, charset, domain, /* #### look into error flag */ ERROR_ME_DEBUG_WARN, 0, Qzero); } if (!UNBOUNDP (cachel->font[offs]) && !EQ (new_val, cachel->font[offs])) cachel->dirty = 1; cachel->font_updated[offs] = 1; cachel->font[offs] = new_val; cachel->font_specified[offs] = (bound || EQ (face, Vdefault_face)); return new_val; } /* Ensure that the given cachel contains updated fonts for all the charsets specified. */ void ensure_face_cachel_complete (struct face_cachel *cachel, Lisp_Object domain, unsigned char *charsets) { int i; for (i = 0; i < NUM_LEADING_BYTES; i++) if (charsets[i]) { Lisp_Object charset = charset_by_leading_byte (i + MIN_LEADING_BYTE); assert (CHARSETP (charset)); ensure_face_cachel_contains_charset (cachel, domain, charset); } } void face_cachel_charset_font_metric_info (struct face_cachel *cachel, unsigned char *charsets, struct font_metric_info *fm) { int i; fm->width = 1; fm->height = fm->ascent = 1; fm->descent = 0; fm->proportional_p = 0; for (i = 0; i < NUM_LEADING_BYTES; i++) { if (charsets[i]) { Lisp_Object charset = charset_by_leading_byte (i + MIN_LEADING_BYTE); Lisp_Object font_instance = FACE_CACHEL_FONT (cachel, charset); Lisp_Font_Instance *fi = XFONT_INSTANCE (font_instance); assert (CHARSETP (charset)); assert (FONT_INSTANCEP (font_instance)); if (fm->ascent < (int) fi->ascent) fm->ascent = (int) fi->ascent; if (fm->descent < (int) fi->descent) fm->descent = (int) fi->descent; fm->height = fm->ascent + fm->descent; if (fi->proportional_p) fm->proportional_p = 1; if (EQ (charset, Vcharset_ascii)) fm->width = fi->width; } } } #define FROB(field) \ do { \ Lisp_Object new_val = \ FACE_PROPERTY_INSTANCE (face, Q##field, domain, 1, Qzero); \ int bound = 1; \ if (UNBOUNDP (new_val)) \ { \ bound = 0; \ new_val = FACE_PROPERTY_INSTANCE (face, Q##field, domain, 0, Qzero); \ } \ if (!EQ (new_val, cachel->field)) \ { \ cachel->field = new_val; \ cachel->dirty = 1; \ } \ cachel->field##_specified = (bound || default_face); \ } while (0) /* * A face's background pixmap will override the face's * background color. But the background pixmap of the * default face should not override the background color of * a face if the background color has been specified or * inherited. * * To accomplish this we remove the background pixmap of the * cachel and mark it as having been specified so that cachel * merging won't override it later. */ #define MAYBE_UNFROB_BACKGROUND_PIXMAP \ do \ { \ if (! default_face \ && cachel->background_specified \ && ! cachel->background_pixmap_specified) \ { \ cachel->background_pixmap = Qunbound; \ cachel->background_pixmap_specified = 1; \ } \ } while (0) /* Add a cachel for the given face to the given window's cache. */ static void add_face_cachel (struct window *w, Lisp_Object face) { int must_finish_frobbing = ! WINDOW_FACE_CACHEL (w, DEFAULT_INDEX); struct face_cachel new_cachel; Lisp_Object domain; reset_face_cachel (&new_cachel); domain = wrap_window (w); update_face_cachel_data (&new_cachel, domain, face); Dynarr_add (w->face_cachels, new_cachel); /* The face's background pixmap have not yet been frobbed (see comment int update_face_cachel_data), so we have to do it now */ if (must_finish_frobbing) { int default_face = EQ (face, Vdefault_face); struct face_cachel *cachel = Dynarr_atp (w->face_cachels, Dynarr_length (w->face_cachels) - 1); FROB (background_pixmap); MAYBE_UNFROB_BACKGROUND_PIXMAP; } } /* Called when the updated flag has been cleared on a cachel. This function returns 1 if the caller must finish the update (see comment below), 0 otherwise. */ void update_face_cachel_data (struct face_cachel *cachel, Lisp_Object domain, Lisp_Object face) { if (XFACE (face)->dirty || UNBOUNDP (cachel->face)) { int default_face = EQ (face, Vdefault_face); cachel->face = face; /* We normally only set the _specified flags if the value was actually bound. The exception is for the default face where we always set it since it is the ultimate fallback. */ FROB (foreground); FROB (background); FROB (display_table); /* #### WARNING: the background pixmap property of faces is currently the only one dealing with images. The problem we have here is that frobbing the background pixmap might lead to image instantiation which in turn might require that the cache we're building be up to date, hence a crash. Here's a typical scenario of this: - a new window is created and it's face cache elements are initialized through a call to reset_face_cachels[1]. At that point, the cache for the default and modeline faces (normaly taken care of by redisplay itself) are null. - the default face has a background pixmap which needs to be instantiated right here, as a consequence of cache initialization. - the background pixmap image happens to be instantiated as a string (this happens on tty's for instance). - In order to do this, we need to compute the string geometry. - In order to do this, we might have to access the window's default face cache. But this is the cache we're building right now, it is null. - BARF !!!!! To sum up, this means that it is in general unsafe to instantiate images before face cache updating is complete (appart from image related face attributes). The solution we use below is to actually detect whether we're building the window's face_cachels for the first time, and simply NOT frob the background pixmap in that case. If other image-related face attributes are ever implemented, they should be protected the same way right here. One note: * See comment in `default_face_font_info' in face.c. Who wrote it ? Maybe we have the begining of an answer here ? Footnotes: [1] See comment at the top of `allocate_window' in window.c. -- didier */ if (! WINDOWP (domain) || WINDOW_FACE_CACHEL (DOMAIN_XWINDOW (domain), DEFAULT_INDEX)) { FROB (background_pixmap); MAYBE_UNFROB_BACKGROUND_PIXMAP; } #undef FROB #undef MAYBE_UNFROB_BACKGROUND_PIXMAP ensure_face_cachel_contains_charset (cachel, domain, Vcharset_ascii); #define FROB(field) \ do { \ Lisp_Object new_val = \ FACE_PROPERTY_INSTANCE (face, Q##field, domain, 1, Qzero); \ int bound = 1; \ unsigned int new_val_int; \ if (UNBOUNDP (new_val)) \ { \ bound = 0; \ new_val = FACE_PROPERTY_INSTANCE (face, Q##field, domain, 0, Qzero); \ } \ new_val_int = EQ (new_val, Qt); \ if (cachel->field != new_val_int) \ { \ cachel->field = new_val_int; \ cachel->dirty = 1; \ } \ cachel->field##_specified = bound; \ } while (0) FROB (underline); FROB (strikethru); FROB (highlight); FROB (dim); FROB (reverse); FROB (blinking); #undef FROB } cachel->updated = 1; } /* Merge the cachel identified by FINDEX in window W into the given cachel. */ static void merge_face_cachel_data (struct window *w, face_index findex, struct face_cachel *cachel) { #define FINDEX_FIELD(field) \ Dynarr_atp (w->face_cachels, findex)->field #define FROB(field) \ do { \ if (!cachel->field##_specified && FINDEX_FIELD (field##_specified)) \ { \ cachel->field = FINDEX_FIELD (field); \ cachel->field##_specified = 1; \ cachel->dirty = 1; \ } \ } while (0) FROB (foreground); FROB (background); FROB (display_table); FROB (background_pixmap); FROB (underline); FROB (strikethru); FROB (highlight); FROB (dim); FROB (reverse); FROB (blinking); /* And do ASCII, of course. */ { int offs = LEADING_BYTE_ASCII - MIN_LEADING_BYTE; if (!cachel->font_specified[offs] && FINDEX_FIELD (font_specified[offs])) { cachel->font[offs] = FINDEX_FIELD (font[offs]); cachel->font_specified[offs] = 1; cachel->dirty = 1; } } #undef FROB #undef FINDEX_FIELD cachel->updated = 1; } /* Initialize a cachel. */ void reset_face_cachel (struct face_cachel *cachel) { xzero (*cachel); cachel->face = Qunbound; cachel->nfaces = 0; cachel->merged_faces = 0; cachel->foreground = Qunbound; cachel->background = Qunbound; { int i; for (i = 0; i < NUM_LEADING_BYTES; i++) cachel->font[i] = Qunbound; } cachel->display_table = Qunbound; cachel->background_pixmap = Qunbound; } /* Retrieve the index to a cachel for window W that corresponds to the specified face. If necessary, add a new element to the cache. */ face_index get_builtin_face_cache_index (struct window *w, Lisp_Object face) { int elt; if (noninteractive) return 0; for (elt = 0; elt < Dynarr_length (w->face_cachels); elt++) { struct face_cachel *cachel = WINDOW_FACE_CACHEL (w, elt); if (EQ (cachel->face, face)) { Lisp_Object window = wrap_window (w); if (!cachel->updated) update_face_cachel_data (cachel, window, face); return elt; } } /* If we didn't find the face, add it and then return its index. */ add_face_cachel (w, face); return elt; } void reset_face_cachels (struct window *w) { /* #### Not initialized in batch mode for the stream device. */ if (w->face_cachels) { int i; for (i = 0; i < Dynarr_length (w->face_cachels); i++) { struct face_cachel *cachel = Dynarr_atp (w->face_cachels, i); if (cachel->merged_faces) Dynarr_free (cachel->merged_faces); } Dynarr_reset (w->face_cachels); get_builtin_face_cache_index (w, Vdefault_face); get_builtin_face_cache_index (w, Vmodeline_face); XFRAME (w->frame)->window_face_cache_reset = 1; } } void mark_face_cachels_as_clean (struct window *w) { int elt; for (elt = 0; elt < Dynarr_length (w->face_cachels); elt++) Dynarr_atp (w->face_cachels, elt)->dirty = 0; } void mark_face_cachels_as_not_updated (struct window *w) { int elt; for (elt = 0; elt < Dynarr_length (w->face_cachels); elt++) { struct face_cachel *cachel = Dynarr_atp (w->face_cachels, elt); int i; cachel->updated = 0; for (i = 0; i < NUM_LEADING_BYTES; i++) cachel->font_updated[i] = 0; } } #ifdef MEMORY_USAGE_STATS int compute_face_cachel_usage (face_cachel_dynarr *face_cachels, struct overhead_stats *ovstats) { int total = 0; if (face_cachels) { int i; total += Dynarr_memory_usage (face_cachels, ovstats); for (i = 0; i < Dynarr_length (face_cachels); i++) { int_dynarr *merged = Dynarr_at (face_cachels, i).merged_faces; if (merged) total += Dynarr_memory_usage (merged, ovstats); } } return total; } #endif /* MEMORY_USAGE_STATS */ /***************************************************************************** * merged face functions * *****************************************************************************/ /* Compare two merged face cachels to determine whether we have to add a new entry to the face cache. Note that we do not compare the attributes, but just the faces the cachels are based on. If they are the same, then the cachels certainly ought to have the same attributes, except in the case where fonts for different charsets have been determined in the two -- and in that case this difference is fine. */ static int compare_merged_face_cachels (struct face_cachel *cachel1, struct face_cachel *cachel2) { int i; if (!EQ (cachel1->face, cachel2->face) || cachel1->nfaces != cachel2->nfaces) return 0; for (i = 0; i < cachel1->nfaces; i++) if (FACE_CACHEL_FINDEX_UNSAFE (cachel1, i) != FACE_CACHEL_FINDEX_UNSAFE (cachel2, i)) return 0; return 1; } /* Retrieve the index to a cachel for window W that corresponds to the specified cachel. If necessary, add a new element to the cache. This is similar to get_builtin_face_cache_index() but is intended for merged cachels rather than for cachels representing just a face. Note that a merged cachel for just one face is not the same as the simple cachel for that face, because it is also merged with the default face. */ static face_index get_merged_face_cache_index (struct window *w, struct face_cachel *merged_cachel) { int elt; int cache_size = Dynarr_length (w->face_cachels); for (elt = 0; elt < cache_size; elt++) { struct face_cachel *cachel = Dynarr_atp (w->face_cachels, elt); if (compare_merged_face_cachels (cachel, merged_cachel)) return elt; } /* We didn't find it so add this instance to the cache. */ merged_cachel->updated = 1; merged_cachel->dirty = 1; Dynarr_add (w->face_cachels, *merged_cachel); return cache_size; } face_index get_extent_fragment_face_cache_index (struct window *w, struct extent_fragment *ef) { struct face_cachel cachel; int len = Dynarr_length (ef->extents); face_index findex = 0; /* Optimize the default case. */ if (len == 0) return DEFAULT_INDEX; else { int i; /* Merge the faces of the extents together in order. */ reset_face_cachel (&cachel); for (i = len - 1; i >= 0; i--) { EXTENT current = Dynarr_at (ef->extents, i); int has_findex = 0; Lisp_Object face = extent_face (current); if (FACEP (face)) { findex = get_builtin_face_cache_index (w, face); has_findex = 1; merge_face_cachel_data (w, findex, &cachel); } /* remember, we're called from within redisplay so we can't error. */ else while (CONSP (face)) { Lisp_Object one_face = XCAR (face); if (FACEP (one_face)) { findex = get_builtin_face_cache_index (w, one_face); merge_face_cachel_data (w, findex, &cachel); /* code duplication here but there's no clean way to avoid it. */ if (cachel.nfaces >= NUM_STATIC_CACHEL_FACES) { if (!cachel.merged_faces) cachel.merged_faces = Dynarr_new (int); Dynarr_add (cachel.merged_faces, findex); } else cachel.merged_faces_static[cachel.nfaces] = findex; cachel.nfaces++; } face = XCDR (face); } if (has_findex) { if (cachel.nfaces >= NUM_STATIC_CACHEL_FACES) { if (!cachel.merged_faces) cachel.merged_faces = Dynarr_new (int); Dynarr_add (cachel.merged_faces, findex); } else cachel.merged_faces_static[cachel.nfaces] = findex; cachel.nfaces++; } } /* Now finally merge in the default face. */ findex = get_builtin_face_cache_index (w, Vdefault_face); merge_face_cachel_data (w, findex, &cachel); findex = get_merged_face_cache_index (w, &cachel); if (cachel.merged_faces && /* merged_faces did not get stored and available via return value */ Dynarr_at (w->face_cachels, findex).merged_faces != cachel.merged_faces) { Dynarr_free (cachel.merged_faces); cachel.merged_faces = 0; } return findex; } } /***************************************************************************** interface functions ****************************************************************************/ static void update_EmacsFrame (Lisp_Object frame, Lisp_Object name) { struct frame *frm = XFRAME (frame); if (EQ (name, Qfont)) MARK_FRAME_SIZE_SLIPPED (frm); MAYBE_FRAMEMETH (frm, update_frame_external_traits, (frm, name)); } static void update_EmacsFrames (Lisp_Object locale, Lisp_Object name) { if (FRAMEP (locale)) { update_EmacsFrame (locale, name); } else if (DEVICEP (locale)) { Lisp_Object frmcons; DEVICE_FRAME_LOOP (frmcons, XDEVICE (locale)) update_EmacsFrame (XCAR (frmcons), name); } else if (EQ (locale, Qglobal) || EQ (locale, Qfallback)) { Lisp_Object frmcons, devcons, concons; FRAME_LOOP_NO_BREAK (frmcons, devcons, concons) update_EmacsFrame (XCAR (frmcons), name); } } void update_frame_face_values (struct frame *f) { Lisp_Object frm = wrap_frame (f); update_EmacsFrame (frm, Qforeground); update_EmacsFrame (frm, Qbackground); update_EmacsFrame (frm, Qfont); } void face_property_was_changed (Lisp_Object face, Lisp_Object property, Lisp_Object locale) { int default_face = EQ (face, Vdefault_face); /* If the locale could affect the frame value, then call update_EmacsFrames just in case. */ if (default_face && (EQ (property, Qforeground) || EQ (property, Qbackground) || EQ (property, Qfont))) update_EmacsFrames (locale, property); if (WINDOWP (locale)) { MARK_FRAME_FACES_CHANGED (XFRAME (XWINDOW (locale)->frame)); } else if (FRAMEP (locale)) { MARK_FRAME_FACES_CHANGED (XFRAME (locale)); } else if (DEVICEP (locale)) { MARK_DEVICE_FRAMES_FACES_CHANGED (XDEVICE (locale)); } else { Lisp_Object devcons, concons; DEVICE_LOOP_NO_BREAK (devcons, concons) MARK_DEVICE_FRAMES_FACES_CHANGED (XDEVICE (XCAR (devcons))); } /* * This call to update_faces_inheritance isn't needed and makes * creating and modifying faces _very_ slow. The point of * update_face_inheritances is to find all faces that inherit * directly from this face property and set the specifier "dirty" * flag on the corresponding specifier. This forces recaching of * cached specifier values in frame and window struct slots. But * currently no face properties are cached in frame and window * struct slots, so calling this function does nothing useful! * * Further, since update_faces_inheritance maps over the whole * face table every time it is called, it gets terribly slow when * there are many faces. Creating 500 faces on a 50Mhz 486 took * 433 seconds when update_faces_inheritance was called. With the * call commented out, creating those same 500 faces took 0.72 * seconds. */ /* update_faces_inheritance (face, property);*/ XFACE (face)->dirty = 1; } DEFUN ("copy-face", Fcopy_face, 2, 6, 0, /* Define and return a new face which is a copy of an existing one, or makes an already-existing face be exactly like another. LOCALE, TAG-SET, EXACT-P, and HOW-TO-ADD are as in `copy-specifier'. */ (old_face, new_name, locale, tag_set, exact_p, how_to_add)) { Lisp_Face *fold, *fnew; Lisp_Object new_face = Qnil; struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; old_face = Fget_face (old_face); /* We GCPRO old_face because it might be temporary, and GCing could occur in various places below. */ GCPRO4 (tag_set, locale, old_face, new_face); /* check validity of how_to_add now. */ decode_how_to_add_specification (how_to_add); /* and of tag_set. */ tag_set = decode_specifier_tag_set (tag_set); /* and of locale. */ locale = decode_locale_list (locale); new_face = Ffind_face (new_name); if (NILP (new_face)) { Lisp_Object temp; CHECK_SYMBOL (new_name); /* Create the new face with the same status as the old face. */ temp = (NILP (Fgethash (old_face, Vtemporary_faces_cache, Qnil)) ? Qnil : Qt); new_face = Fmake_face (new_name, Qnil, temp); } fold = XFACE (old_face); fnew = XFACE (new_face); #define COPY_PROPERTY(property) \ Fcopy_specifier (fold->property, fnew->property, \ locale, tag_set, exact_p, how_to_add); COPY_PROPERTY (foreground); COPY_PROPERTY (background); COPY_PROPERTY (font); COPY_PROPERTY (display_table); COPY_PROPERTY (background_pixmap); COPY_PROPERTY (underline); COPY_PROPERTY (strikethru); COPY_PROPERTY (highlight); COPY_PROPERTY (dim); COPY_PROPERTY (blinking); COPY_PROPERTY (reverse); #undef COPY_PROPERTY /* #### should it copy the individual specifiers, if they exist? */ fnew->plist = Fcopy_sequence (fold->plist); UNGCPRO; return new_name; } void syms_of_faces (void) { INIT_LRECORD_IMPLEMENTATION (face); /* Qdefault, Qwidget, Qleft_margin, Qright_margin defined in general.c */ DEFSYMBOL (Qmodeline); DEFSYMBOL (Qgui_element); DEFSYMBOL (Qtext_cursor); DEFSYMBOL (Qvertical_divider); DEFSUBR (Ffacep); DEFSUBR (Ffind_face); DEFSUBR (Fget_face); DEFSUBR (Fface_name); DEFSUBR (Fbuilt_in_face_specifiers); DEFSUBR (Fface_list); DEFSUBR (Fmake_face); DEFSUBR (Fcopy_face); DEFSYMBOL (Qfacep); DEFSYMBOL (Qforeground); DEFSYMBOL (Qbackground); /* Qfont defined in general.c */ DEFSYMBOL (Qdisplay_table); DEFSYMBOL (Qbackground_pixmap); DEFSYMBOL (Qunderline); DEFSYMBOL (Qstrikethru); /* Qhighlight, Qreverse defined in general.c */ DEFSYMBOL (Qdim); DEFSYMBOL (Qblinking); DEFSYMBOL (Qinit_face_from_resources); DEFSYMBOL (Qinit_global_faces); DEFSYMBOL (Qinit_device_faces); DEFSYMBOL (Qinit_frame_faces); } void structure_type_create_faces (void) { struct structure_type *st; st = define_structure_type (Qface, face_validate, face_instantiate); define_structure_type_keyword (st, Qname, face_name_validate); } void vars_of_faces (void) { staticpro (&Vpermanent_faces_cache); Vpermanent_faces_cache = make_lisp_hash_table (10, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ); staticpro (&Vtemporary_faces_cache); Vtemporary_faces_cache = make_lisp_hash_table (0, HASH_TABLE_WEAK, HASH_TABLE_EQ); staticpro (&Vdefault_face); Vdefault_face = Qnil; staticpro (&Vgui_element_face); Vgui_element_face = Qnil; staticpro (&Vwidget_face); Vwidget_face = Qnil; staticpro (&Vmodeline_face); Vmodeline_face = Qnil; staticpro (&Vtoolbar_face); Vtoolbar_face = Qnil; staticpro (&Vvertical_divider_face); Vvertical_divider_face = Qnil; staticpro (&Vleft_margin_face); Vleft_margin_face = Qnil; staticpro (&Vright_margin_face); Vright_margin_face = Qnil; staticpro (&Vtext_cursor_face); Vtext_cursor_face = Qnil; staticpro (&Vpointer_face); Vpointer_face = Qnil; { Lisp_Object syms[20]; int n = 0; syms[n++] = Qforeground; syms[n++] = Qbackground; syms[n++] = Qfont; syms[n++] = Qdisplay_table; syms[n++] = Qbackground_pixmap; syms[n++] = Qunderline; syms[n++] = Qstrikethru; syms[n++] = Qhighlight; syms[n++] = Qdim; syms[n++] = Qblinking; syms[n++] = Qreverse; Vbuilt_in_face_specifiers = Flist (n, syms); staticpro (&Vbuilt_in_face_specifiers); } } void complex_vars_of_faces (void) { /* Create the default face now so we know what it is immediately. */ Vdefault_face = Qnil; /* so that Fmake_face() doesn't set up a bogus default value */ Vdefault_face = Fmake_face (Qdefault, build_msg_string ("default face"), Qnil); /* Provide some last-resort fallbacks to avoid utter fuckage if someone provides invalid values for the global specifications. */ { Lisp_Object fg_fb = Qnil, bg_fb = Qnil; #ifdef HAVE_GTK fg_fb = acons (list1 (Qgtk), build_string ("black"), fg_fb); bg_fb = acons (list1 (Qgtk), build_string ("white"), bg_fb); #endif #ifdef HAVE_X_WINDOWS fg_fb = acons (list1 (Qx), build_string ("black"), fg_fb); bg_fb = acons (list1 (Qx), build_string ("white"), bg_fb); #endif #ifdef HAVE_TTY fg_fb = acons (list1 (Qtty), Fvector (0, 0), fg_fb); bg_fb = acons (list1 (Qtty), Fvector (0, 0), bg_fb); #endif #ifdef HAVE_MS_WINDOWS fg_fb = acons (list1 (Qmsprinter), build_string ("black"), fg_fb); bg_fb = acons (list1 (Qmsprinter), build_string ("white"), bg_fb); fg_fb = acons (list1 (Qmswindows), build_string ("black"), fg_fb); bg_fb = acons (list1 (Qmswindows), build_string ("white"), bg_fb); #endif set_specifier_fallback (Fget (Vdefault_face, Qforeground, Qnil), fg_fb); set_specifier_fallback (Fget (Vdefault_face, Qbackground, Qnil), bg_fb); } /* #### We may want to have different fallback values if NeXTstep support is compiled in. */ { Lisp_Object inst_list = Qnil; #if defined (HAVE_X_WINDOWS) || defined (HAVE_GTK) const Ascbyte *fonts[] = { /************** ISO-8859 fonts *************/ "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*", "-*-fixed-medium-r-*-*-*-120-*-*-*-*-iso8859-*", "-*-courier-*-r-*-*-*-120-*-*-*-*-iso8859-*", "-*-fixed-*-r-*-*-*-120-*-*-*-*-iso8859-*", /* Next try for any "medium" charcell or monospaced iso8859 font. */ "-*-*-medium-r-*-*-*-120-*-*-m-*-iso8859-*", "-*-*-medium-r-*-*-*-120-*-*-c-*-iso8859-*", /* Next try for any charcell or monospaced iso8859 font. */ "-*-*-*-r-*-*-*-120-*-*-m-*-iso8859-*", "-*-*-*-r-*-*-*-120-*-*-c-*-iso8859-*", /* Repeat, any size */ "-*-courier-medium-r-*-*-*-*-*-*-*-*-iso8859-*", "-*-fixed-medium-r-*-*-*-*-*-*-*-*-iso8859-*", "-*-courier-*-r-*-*-*-*-*-*-*-*-iso8859-*", "-*-fixed-*-r-*-*-*-*-*-*-*-*-iso8859-*", /* Next try for any "medium" charcell or monospaced iso8859 font. */ "-*-*-medium-r-*-*-*-*-*-*-m-*-iso8859-*", "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-*", /* Next try for any charcell or monospaced iso8859 font. */ "-*-*-*-r-*-*-*-*-*-*-m-*-iso8859-*", "-*-*-*-r-*-*-*-*-*-*-c-*-iso8859-*", /* Non-proportional fonts -- last resort. */ "-*-*-*-r-*-*-*-120-*-*-*-*-iso8859-*", "-*-*-*-r-*-*-*-*-*-*-*-*-iso8859-*", "-*-*-*-*-*-*-*-*-*-*-*-*-iso8859-*", /************* Japanese fonts ************/ /* Following 3 fonts proposed by Teruhiko.Kurosaka@Japan.eng.sun */ "-sun-gothic-medium-r-normal--14-120-75-75-c-60-jisx0201.1976-0", "-sun-gothic-medium-r-normal--14-120-75-75-c-120-jisx0208.1983-0", "-wadalab-gothic-medium-r-normal--14-120-75-75-c-120-jisx0212.1990-0", /* Other Japanese fonts */ "-*-fixed-medium-r-*--*-jisx0201.1976-*", "-*-fixed-medium-r-*--*-jisx0208.1983-*", "-*-fixed-medium-r-*--*-jisx0212*-*", "-*-*-*-r-*--*-jisx0201.1976-*", "-*-*-*-r-*--*-jisx0208.1983-*", "-*-*-*-r-*--*-jisx0212*-*", /************* Chinese fonts ************/ "-*-*-medium-r-*--*-gb2312.1980-*", "-*-fixed-medium-r-*--*-cns11643*-*", "-*-fixed-medium-r-*--*-big5*-*," "-*-fixed-medium-r-*--*-sisheng_cwnn-0", /************* Korean fonts *************/ "-*-mincho-medium-r-*--*-ksc5601.1987-*", /************* Thai fonts **************/ "-*-fixed-medium-r-*--*-tis620.2529-1", /************* Other fonts (nonstandard) *************/ "-*-fixed-medium-r-*--*-viscii1.1-1", "-*-fixed-medium-r-*--*-mulearabic-*", "-*-fixed-medium-r-*--*-muleipa-*", "-*-fixed-medium-r-*--*-ethio-*", /************* Unicode fonts **************/ /* #### We don't yet support Unicode fonts, but doing so would not be hard because all the machinery has already been added for Windows support. We need to do this: (1) Add "stage 2" support in find_charset_font()/etc.; this finds an appropriate Unicode font after all the charset-specific fonts have been checked. This should look at the per-char font info and check whether we have support for some of the chars in the charset. (#### Bogus, but that's the way it currently works) (2) Record in the font instance a flag indicating when we're dealing with a Unicode font. (3) Notice this flag in separate_textual_runs() and translate the text into Unicode if so. */ "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso10646-1", "-*-fixed-medium-r-*-*-*-120-*-*-*-*-iso10646-1", "-*-courier-*-r-*-*-*-120-*-*-*-*-iso10646-1", "-*-fixed-*-r-*-*-*-120-*-*-*-*-iso10646-1", /* Next try for any "medium" charcell or monospaced iso8859 font. */ "-*-*-medium-r-*-*-*-120-*-*-m-*-iso10646-1", "-*-*-medium-r-*-*-*-120-*-*-c-*-iso10646-1", /* Next try for any charcell or monospaced iso8859 font. */ "-*-*-*-r-*-*-*-120-*-*-m-*-iso10646-1", "-*-*-*-r-*-*-*-120-*-*-c-*-iso10646-1", /* Repeat, any size */ "-*-courier-medium-r-*-*-*-*-*-*-*-*-iso10646-1", "-*-fixed-medium-r-*-*-*-*-*-*-*-*-iso10646-1", "-*-courier-*-r-*-*-*-*-*-*-*-*-iso10646-1", "-*-fixed-*-r-*-*-*-*-*-*-*-*-iso10646-1", /* Next try for any "medium" charcell or monospaced iso8859 font. */ "-*-*-medium-r-*-*-*-*-*-*-m-*-iso10646-1", "-*-*-medium-r-*-*-*-*-*-*-c-*-iso10646-1", /* Next try for any charcell or monospaced iso8859 font. */ "-*-*-*-r-*-*-*-*-*-*-m-*-iso10646-1", "-*-*-*-r-*-*-*-*-*-*-c-*-iso10646-1", /* Non-proportional fonts -- last resort. */ "-*-*-*-r-*-*-*-120-*-*-*-*-iso10646-1", "-*-*-*-r-*-*-*-*-*-*-*-*-iso10646-1", "-*-*-*-*-*-*-*-*-*-*-*-*-iso10646-1", /*********** Last resort ***********/ /* Boy, we sure are losing now. Try the above, but in any encoding. */ "-*-*-medium-r-*-*-*-120-*-*-m-*-*-*", "-*-*-medium-r-*-*-*-120-*-*-c-*-*-*", "-*-*-*-r-*-*-*-120-*-*-m-*-*-*", "-*-*-*-r-*-*-*-120-*-*-c-*-*-*", /* Hello? Please? */ "-*-*-*-r-*-*-*-120-*-*-*-*-*-*", "-*-*-*-*-*-*-*-120-*-*-*-*-*-*", "-*-*-*-*-*-*-*-*-*-*-*-*-*-*", "*" }; const Ascbyte **fontptr; #ifdef HAVE_X_WINDOWS for (fontptr = fonts + countof(fonts) - 1; fontptr >= fonts; fontptr--) inst_list = Fcons (Fcons (list1 (Qx), build_string (*fontptr)), inst_list); #endif /* HAVE_X_WINDOWS */ #ifdef HAVE_GTK for (fontptr = fonts + countof(fonts) - 1; fontptr >= fonts; fontptr--) inst_list = Fcons (Fcons (list1 (Qgtk), build_string (*fontptr)), inst_list); #endif /* HAVE_GTK */ #endif /* HAVE_X_WINDOWS || HAVE_GTK */ #ifdef HAVE_TTY inst_list = Fcons (Fcons (list1 (Qtty), build_string ("normal")), inst_list); #endif /* HAVE_TTY */ #ifdef HAVE_MS_WINDOWS { const Ascbyte *mswfonts[] = { "Courier New:Regular:10::", "Courier:Regular:10::", ":Regular:10::" }; const Ascbyte **mswfontptr; for (mswfontptr = mswfonts + countof (mswfonts) - 1; mswfontptr >= mswfonts; mswfontptr--) { /* display device */ inst_list = Fcons (Fcons (list1 (Qmswindows), build_string (*mswfontptr)), inst_list); /* printer device */ inst_list = Fcons (Fcons (list1 (Qmsprinter), build_string (*mswfontptr)), inst_list); } /* Use Lucida Console rather than Courier New if it exists -- the line spacing is much less, so many more lines fit with the same size font. (And it's specifically designed for screens.) */ inst_list = Fcons (Fcons (list1 (Qmswindows), build_string ("Lucida Console:Regular:10::")), inst_list); } #endif /* HAVE_MS_WINDOWS */ set_specifier_fallback (Fget (Vdefault_face, Qfont, Qnil), inst_list); } set_specifier_fallback (Fget (Vdefault_face, Qunderline, Qnil), list1 (Fcons (Qnil, Qnil))); set_specifier_fallback (Fget (Vdefault_face, Qstrikethru, Qnil), list1 (Fcons (Qnil, Qnil))); set_specifier_fallback (Fget (Vdefault_face, Qhighlight, Qnil), list1 (Fcons (Qnil, Qnil))); set_specifier_fallback (Fget (Vdefault_face, Qdim, Qnil), list1 (Fcons (Qnil, Qnil))); set_specifier_fallback (Fget (Vdefault_face, Qblinking, Qnil), list1 (Fcons (Qnil, Qnil))); set_specifier_fallback (Fget (Vdefault_face, Qreverse, Qnil), list1 (Fcons (Qnil, Qnil))); /* gui-element is the parent face of all gui elements such as modeline, vertical divider and toolbar. */ Vgui_element_face = Fmake_face (Qgui_element, build_msg_string ("gui element face"), Qnil); /* Provide some last-resort fallbacks for gui-element face which mustn't default to default. */ { Lisp_Object fg_fb = Qnil, bg_fb = Qnil; #ifdef HAVE_GTK /* We need to put something in there, or error checking gets #%!@#ed up before the styles are set, which override the fallbacks. */ fg_fb = acons (list1 (Qgtk), build_string ("black"), fg_fb); bg_fb = acons (list1 (Qgtk), build_string ("Gray80"), bg_fb); #endif #ifdef HAVE_X_WINDOWS fg_fb = acons (list1 (Qx), build_string ("black"), fg_fb); bg_fb = acons (list1 (Qx), build_string ("Gray80"), bg_fb); #endif #ifdef HAVE_TTY fg_fb = acons (list1 (Qtty), Fvector (0, 0), fg_fb); bg_fb = acons (list1 (Qtty), Fvector (0, 0), bg_fb); #endif #ifdef HAVE_MS_WINDOWS fg_fb = acons (list1 (Qmsprinter), build_string ("black"), fg_fb); bg_fb = acons (list1 (Qmsprinter), build_string ("white"), bg_fb); fg_fb = acons (list1 (Qmswindows), build_string ("black"), fg_fb); bg_fb = acons (list1 (Qmswindows), build_string ("Gray75"), bg_fb); #endif set_specifier_fallback (Fget (Vgui_element_face, Qforeground, Qnil), fg_fb); set_specifier_fallback (Fget (Vgui_element_face, Qbackground, Qnil), bg_fb); } /* Now create the other faces that redisplay needs to refer to directly. We could create them in Lisp but it's simpler this way since we need to get them anyway. */ /* modeline is gui element. */ Vmodeline_face = Fmake_face (Qmodeline, build_msg_string ("modeline face"), Qnil); set_specifier_fallback (Fget (Vmodeline_face, Qforeground, Qunbound), Fget (Vgui_element_face, Qforeground, Qunbound)); set_specifier_fallback (Fget (Vmodeline_face, Qbackground, Qunbound), Fget (Vgui_element_face, Qbackground, Qunbound)); set_specifier_fallback (Fget (Vmodeline_face, Qbackground_pixmap, Qnil), Fget (Vgui_element_face, Qbackground_pixmap, Qunbound)); /* toolbar is another gui element */ Vtoolbar_face = Fmake_face (Qtoolbar, build_msg_string ("toolbar face"), Qnil); set_specifier_fallback (Fget (Vtoolbar_face, Qforeground, Qunbound), Fget (Vgui_element_face, Qforeground, Qunbound)); set_specifier_fallback (Fget (Vtoolbar_face, Qbackground, Qunbound), Fget (Vgui_element_face, Qbackground, Qunbound)); set_specifier_fallback (Fget (Vtoolbar_face, Qbackground_pixmap, Qnil), Fget (Vgui_element_face, Qbackground_pixmap, Qunbound)); /* vertical divider is another gui element */ Vvertical_divider_face = Fmake_face (Qvertical_divider, build_msg_string ("vertical divider face"), Qnil); set_specifier_fallback (Fget (Vvertical_divider_face, Qforeground, Qunbound), Fget (Vgui_element_face, Qforeground, Qunbound)); set_specifier_fallback (Fget (Vvertical_divider_face, Qbackground, Qunbound), Fget (Vgui_element_face, Qbackground, Qunbound)); set_specifier_fallback (Fget (Vvertical_divider_face, Qbackground_pixmap, Qunbound), Fget (Vgui_element_face, Qbackground_pixmap, Qunbound)); /* widget is another gui element */ Vwidget_face = Fmake_face (Qwidget, build_msg_string ("widget face"), Qnil); set_specifier_fallback (Fget (Vwidget_face, Qfont, Qunbound), Fget (Vgui_element_face, Qfont, Qunbound)); set_specifier_fallback (Fget (Vwidget_face, Qforeground, Qunbound), Fget (Vgui_element_face, Qforeground, Qunbound)); set_specifier_fallback (Fget (Vwidget_face, Qbackground, Qunbound), Fget (Vgui_element_face, Qbackground, Qunbound)); /* We don't want widgets to have a default background pixmap. */ Vleft_margin_face = Fmake_face (Qleft_margin, build_msg_string ("left margin face"), Qnil); Vright_margin_face = Fmake_face (Qright_margin, build_msg_string ("right margin face"), Qnil); Vtext_cursor_face = Fmake_face (Qtext_cursor, build_msg_string ("face for text cursor"), Qnil); Vpointer_face = Fmake_face (Qpointer, build_msg_string ("face for foreground/background colors of mouse pointer"), Qnil); }