(Vhighlight_wrong_size_font, Vclip_large_size_font):
[bpt/emacs.git] / src / disptab.h
CommitLineData
d427b66a 1/* Things for GLYPHS and glyph tables.
c6c5df7f 2 Copyright (C) 1993 Free Software Foundation, Inc.
d427b66a
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
7c938215 8the Free Software Foundation; either version 2, or (at your option)
d427b66a
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
d427b66a
JB
20
21/* Access the slots of a display-table, according to their purpose. */
22
80af4e50
RS
23#define DISP_TABLE_P(obj) \
24 (CHAR_TABLE_P (obj) \
25 && XCHAR_TABLE (obj)->purpose == Qdisplay_table \
26 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (obj)) == DISP_TABLE_EXTRA_SLOTS)
27
28#define DISP_TABLE_EXTRA_SLOTS 6
29#define DISP_TRUNC_GLYPH(dp) ((dp)->extras[0])
30#define DISP_CONTINUE_GLYPH(dp) ((dp)->extras[1])
31#define DISP_ESCAPE_GLYPH(dp) ((dp)->extras[2])
32#define DISP_CTRL_GLYPH(dp) ((dp)->extras[3])
33#define DISP_INVIS_VECTOR(dp) ((dp)->extras[4])
34#define DISP_BORDER_GLYPH(dp) ((dp)->extras[5])
35
3046d6fc
KH
36#define DISP_CHAR_VECTOR(dp, c) \
37 (SINGLE_BYTE_CHAR_P(c) ? (dp)->contents[c] : Qnil)
d427b66a 38
ef5623ef 39/* Defined in window.c. */
80af4e50 40extern struct Lisp_Char_Table *window_display_table ();
ef5623ef
JB
41
42/* Defined in indent.c. */
80af4e50 43extern struct Lisp_Char_Table *buffer_display_table ();
d427b66a
JB
44
45/* Display table to use for vectors that don't specify their own. */
46extern Lisp_Object Vstandard_display_table;
47
80af4e50
RS
48/* This is the `purpose' slot of a display table. */
49extern Lisp_Object Qdisplay_table;
50
d427b66a
JB
51/* Vector of GLYPH definitions. Indexed by GLYPH number,
52 the contents are a string which is how to output the GLYPH. */
53extern Lisp_Object Vglyph_table;
54
55/* Return the current length of the GLYPH table,
56 or 0 if the table isn't currently valid. */
57#define GLYPH_TABLE_LENGTH \
40de0d7b 58 ((VECTORP (Vglyph_table)) ? XVECTOR (Vglyph_table)->size : 0)
d427b66a
JB
59
60/* Return the current base (for indexing) of the GLYPH table,
61 or 0 if the table isn't currently valid. */
62#define GLYPH_TABLE_BASE \
40de0d7b 63 ((VECTORP (Vglyph_table)) ? XVECTOR (Vglyph_table)->contents : 0)
d427b66a
JB
64
65/* Given BASE and LEN returned by the two previous macros,
66 return nonzero if the GLYPH code G should be output as a single
67 character with code G. Return zero if G has a string in the table. */
40de0d7b 68#define GLYPH_SIMPLE_P(base,len,g) ((g) >= (len) || !STRINGP (base[g]))
d427b66a
JB
69
70/* Given BASE and LEN returned by the two previous macros,
71 return nonzero if GLYPH code G is aliased to a different code. */
40de0d7b 72#define GLYPH_ALIAS_P(base,len,g) ((g) < (len) && INTEGERP (base[g]))
d427b66a
JB
73
74/* Assuming that GLYPH_SIMPLE_P (BASE, LEN, G) is 1,
75 return the alias for G. */
76#define GLYPH_ALIAS(base, g) XINT (base[g])
77
be269961
JB
78/* Follow all aliases for G in the glyph table given by (BASE,
79 LENGTH), and set G to the final glyph. */
cd49fad3
KH
80#define GLYPH_FOLLOW_ALIASES(base, length, g) \
81 do { \
82 while (GLYPH_ALIAS_P ((base), (length), (g))) \
83 (g) = GLYPH_ALIAS ((base), (g)); \
84 if (!GLYPH_CHAR_VALID_P (FAST_GLYPH_CHAR (g))) \
85 g = FAST_MAKE_GLYPH (' ', FAST_GLYPH_FACE (g)); \
86 } while (0)
87
d427b66a
JB
88/* Assuming that GLYPH_SIMPLE_P (BASE, LEN, G) is 0,
89 return the length and the address of the character-sequence
90 used for outputting GLYPH G. */
91#define GLYPH_LENGTH(base,g) XSTRING (base[g])->size
92#define GLYPH_STRING(base,g) XSTRING (base[g])->data
93
94/* GLYPH for a space character. */
95
96#define SPACEGLYPH 040
97#define NULL_GLYPH 00
98
99#define GLYPH_FROM_CHAR(c) (c)
100
101extern int glyphlen ();
102extern void str_to_glyph_cpy ();
103extern void str_to_glyph_ncpy ();
104extern void glyph_to_str_cpy ();