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