Mercurial > emacs
annotate src/disptab.h @ 9125:a78f02f76f03
(create_root_interval, balance_possible_root_interval, delete_interval): Use
type test macros.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 27 Sep 1994 02:30:34 +0000 |
parents | 644f69fe736e |
children | 069f8b6cdfe6 |
rev | line source |
---|---|
484 | 1 /* Things for GLYPHS and glyph tables. |
2961 | 2 Copyright (C) 1993 Free Software Foundation, Inc. |
484 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 /* Access the slots of a display-table, according to their purpose. */ | |
21 | |
8919
644f69fe736e
Add a new element to display tables controlling side-by-side
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
22 #define DISP_TABLE_SIZE 262 |
484 | 23 #define DISP_TRUNC_GLYPH(dp) ((dp)->contents[256]) |
24 #define DISP_CONTINUE_GLYPH(dp) ((dp)->contents[257]) | |
25 #define DISP_ESCAPE_GLYPH(dp) ((dp)->contents[258]) | |
26 #define DISP_CTRL_GLYPH(dp) ((dp)->contents[259]) | |
2012
a6d7c2f161cf
(DISP_INVIS_VECTOR): Renamed from DISP_INVIS_ROPE.
Richard M. Stallman <rms@gnu.org>
parents:
484
diff
changeset
|
27 #define DISP_INVIS_VECTOR(dp) ((dp)->contents[260]) |
8919
644f69fe736e
Add a new element to display tables controlling side-by-side
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
28 #define DISP_BORDER_GLYPH(dp) ((dp)->contents[261]) |
2012
a6d7c2f161cf
(DISP_INVIS_VECTOR): Renamed from DISP_INVIS_ROPE.
Richard M. Stallman <rms@gnu.org>
parents:
484
diff
changeset
|
29 #define DISP_CHAR_VECTOR(dp, c) ((dp)->contents[c]) |
484 | 30 |
31 extern struct Lisp_Vector *window_display_table (); | |
32 | |
33 /* Display table to use for vectors that don't specify their own. */ | |
34 extern Lisp_Object Vstandard_display_table; | |
35 | |
36 /* Vector of GLYPH definitions. Indexed by GLYPH number, | |
37 the contents are a string which is how to output the GLYPH. */ | |
38 extern Lisp_Object Vglyph_table; | |
39 | |
40 /* Return the current length of the GLYPH table, | |
41 or 0 if the table isn't currently valid. */ | |
42 #define GLYPH_TABLE_LENGTH \ | |
43 ((XTYPE (Vglyph_table) == Lisp_Vector) \ | |
44 ? XVECTOR (Vglyph_table)->size : 0) | |
45 | |
46 /* Return the current base (for indexing) of the GLYPH table, | |
47 or 0 if the table isn't currently valid. */ | |
48 #define GLYPH_TABLE_BASE \ | |
49 ((XTYPE (Vglyph_table) == Lisp_Vector) \ | |
50 ? XVECTOR (Vglyph_table)->contents : 0) | |
51 | |
52 /* Given BASE and LEN returned by the two previous macros, | |
53 return nonzero if the GLYPH code G should be output as a single | |
54 character with code G. Return zero if G has a string in the table. */ | |
55 #define GLYPH_SIMPLE_P(base,len,g) \ | |
56 ((g) >= (len) || XTYPE (base[g]) != Lisp_String) | |
57 | |
58 /* Given BASE and LEN returned by the two previous macros, | |
59 return nonzero if GLYPH code G is aliased to a different code. */ | |
60 #define GLYPH_ALIAS_P(base,len,g) \ | |
61 ((g) < (len) && XTYPE (base[g]) == Lisp_Int) | |
62 | |
63 /* Assuming that GLYPH_SIMPLE_P (BASE, LEN, G) is 1, | |
64 return the alias for G. */ | |
65 #define GLYPH_ALIAS(base, g) XINT (base[g]) | |
66 | |
2725
507115aff66d
* xdisp.c (display_text_line): Apply faces to characters according
Jim Blandy <jimb@redhat.com>
parents:
2012
diff
changeset
|
67 /* Follow all aliases for G in the glyph table given by (BASE, |
507115aff66d
* xdisp.c (display_text_line): Apply faces to characters according
Jim Blandy <jimb@redhat.com>
parents:
2012
diff
changeset
|
68 LENGTH), and set G to the final glyph. */ |
507115aff66d
* xdisp.c (display_text_line): Apply faces to characters according
Jim Blandy <jimb@redhat.com>
parents:
2012
diff
changeset
|
69 #define GLYPH_FOLLOW_ALIASES(base, length, g) \ |
507115aff66d
* xdisp.c (display_text_line): Apply faces to characters according
Jim Blandy <jimb@redhat.com>
parents:
2012
diff
changeset
|
70 while (GLYPH_ALIAS_P ((base), (length), (g))) \ |
507115aff66d
* xdisp.c (display_text_line): Apply faces to characters according
Jim Blandy <jimb@redhat.com>
parents:
2012
diff
changeset
|
71 (g) = GLYPH_ALIAS ((base), (g)); |
507115aff66d
* xdisp.c (display_text_line): Apply faces to characters according
Jim Blandy <jimb@redhat.com>
parents:
2012
diff
changeset
|
72 |
484 | 73 /* Assuming that GLYPH_SIMPLE_P (BASE, LEN, G) is 0, |
74 return the length and the address of the character-sequence | |
75 used for outputting GLYPH G. */ | |
76 #define GLYPH_LENGTH(base,g) XSTRING (base[g])->size | |
77 #define GLYPH_STRING(base,g) XSTRING (base[g])->data | |
78 | |
79 /* GLYPH for a space character. */ | |
80 | |
81 #define SPACEGLYPH 040 | |
82 #define NULL_GLYPH 00 | |
83 | |
84 #define GLYPH_FROM_CHAR(c) (c) | |
85 | |
86 extern int glyphlen (); | |
87 extern void str_to_glyph_cpy (); | |
88 extern void str_to_glyph_ncpy (); | |
89 extern void glyph_to_str_cpy (); |