Mercurial > emacs
annotate src/composite.h @ 90290:6a1672fcf6ae
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 03 Feb 2006 07:38:00 +0000 |
parents | 7beb78bc1f8e |
children | c5406394f567 |
rev | line source |
---|---|
26848 | 1 /* Header for composite sequence handler. |
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
2 Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
67658 | 3 Copyright (C) 1997 |
4 National Institute of Advanced Industrial Science and Technology (AIST) | |
5 Registration Number H14PRO021 | |
89483 | 6 Copyright (C) 2003 |
88367
bc14316e7ce2
(enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents:
38484
diff
changeset
|
7 National Institute of Advanced Industrial Science and Technology (AIST) |
bc14316e7ce2
(enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents:
38484
diff
changeset
|
8 Registration Number H13PRO009 |
26848 | 9 |
10 This file is part of GNU Emacs. | |
11 | |
12 GNU Emacs is free software; you can redistribute it and/or modify | |
13 it under the terms of the GNU General Public License as published by | |
14 the Free Software Foundation; either version 2, or (at your option) | |
15 any later version. | |
16 | |
17 GNU Emacs is distributed in the hope that it will be useful, | |
18 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 GNU General Public License for more details. | |
21 | |
22 You should have received a copy of the GNU General Public License | |
23 along with GNU Emacs; see the file COPYING. If not, write to | |
64084 | 24 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 Boston, MA 02110-1301, USA. */ | |
26848 | 26 |
29572
d88f50e982a1
(EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
Kenichi Handa <handa@m17n.org>
parents:
26992
diff
changeset
|
27 #ifndef EMACS_COMPOSITE_H |
d88f50e982a1
(EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
Kenichi Handa <handa@m17n.org>
parents:
26992
diff
changeset
|
28 #define EMACS_COMPOSITE_H |
26848 | 29 |
30 /* Methods to display a sequence of components a composition. */ | |
31 enum composition_method { | |
32 /* Compose relatively without alternate characters. */ | |
33 COMPOSITION_RELATIVE, | |
88367
bc14316e7ce2
(enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents:
38484
diff
changeset
|
34 /* Compose by specified composition rules. This is not used in |
bc14316e7ce2
(enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents:
38484
diff
changeset
|
35 Emacs 21 but we need it to decode files saved in the older |
bc14316e7ce2
(enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents:
38484
diff
changeset
|
36 versions of Emacs. */ |
26848 | 37 COMPOSITION_WITH_RULE, |
38 /* Compose relatively with alternate characters. */ | |
39 COMPOSITION_WITH_ALTCHARS, | |
88367
bc14316e7ce2
(enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents:
38484
diff
changeset
|
40 /* Compose by specified composition rules with alternate characters. */ |
bc14316e7ce2
(enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents:
38484
diff
changeset
|
41 COMPOSITION_WITH_RULE_ALTCHARS, |
bc14316e7ce2
(enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents:
38484
diff
changeset
|
42 /* This is not a method. */ |
bc14316e7ce2
(enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents:
38484
diff
changeset
|
43 COMPOSITION_NO |
26848 | 44 }; |
45 | |
46 /* Maximum number of compoments a single composition can have. */ | |
47 #define MAX_COMPOSITION_COMPONENTS 16 | |
48 | |
49 /* These macros access information about a composition that | |
50 has `composition' property PROP. PROP is: | |
51 ((LENGTH . COMPONENTS) . MODIFICATION-FUNC) | |
52 or | |
53 (COMPOSITION-ID . (LENGTH COMPONENTS . MODIFICATION-FUNC)) | |
54 They don't check validity of PROP. */ | |
55 | |
56 /* Temporary variable used only in the following macros. */ | |
57 extern Lisp_Object composition_temp; | |
58 | |
59 /* Return 1 iff the composition is already registered. */ | |
60 #define COMPOSITION_REGISTERD_P(prop) INTEGERP (XCAR (prop)) | |
61 | |
62 /* Return ID number of the already registered composition. */ | |
63 #define COMPOSITION_ID(prop) XINT (XCAR (prop)) | |
64 | |
65 /* Return length of the composition. */ | |
66 #define COMPOSITION_LENGTH(prop) \ | |
67 (COMPOSITION_REGISTERD_P (prop) \ | |
68 ? XINT (XCAR (XCDR (prop))) \ | |
69 : XINT (XCAR (XCAR (prop)))) | |
70 | |
71 /* Return components of the composition. */ | |
72 #define COMPOSITION_COMPONENTS(prop) \ | |
73 (COMPOSITION_REGISTERD_P (prop) \ | |
74 ? XCAR (XCDR (XCDR (prop))) \ | |
75 : XCDR (XCAR (prop))) | |
76 | |
77 /* Return modification function of the composition. */ | |
78 #define COMPOSITION_MODIFICATION_FUNC(prop) \ | |
79 (COMPOSITION_REGISTERD_P (prop) \ | |
80 ? XCDR (XCDR (XCDR (prop))) \ | |
46939
6c76daadf530
(COMPOSITION_MODIFICATION_FUNC): If PROP is not a cons, return Qnil.
Kenichi Handa <handa@m17n.org>
parents:
38484
diff
changeset
|
81 : CONSP (prop) ? XCDR (prop) : Qnil) |
26848 | 82 |
83 /* Return the method of composition. */ | |
84 #define COMPOSITION_METHOD(prop) \ | |
85 (COMPOSITION_REGISTERD_P (prop) \ | |
86 ? composition_table[COMPOSITION_ID (prop)]->method \ | |
87 : (composition_temp = XCDR (XCAR (prop)), \ | |
88 (NILP (composition_temp) \ | |
89 ? COMPOSITION_RELATIVE \ | |
90 : ((INTEGERP (composition_temp) || STRINGP (composition_temp)) \ | |
91 ? COMPOSITION_WITH_ALTCHARS \ | |
92 : COMPOSITION_WITH_RULE_ALTCHARS)))) | |
93 | |
94 /* Return 1 iff the composition is valid. It is valid if length of | |
95 the composition equals to (END - START). */ | |
37240
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
96 #define COMPOSITION_VALID_P(start, end, prop) \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
97 (CONSP (prop) \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
98 && (COMPOSITION_REGISTERD_P (prop) \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
99 ? (COMPOSITION_ID (prop) >= 0 \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
100 && COMPOSITION_ID (prop) <= n_compositions \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
101 && CONSP (XCDR (prop))) \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
102 : (composition_temp = XCAR (prop), \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
103 (CONSP (composition_temp) \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
104 && (composition_temp = XCDR (composition_temp), \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
105 (NILP (composition_temp) \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
106 || STRINGP (composition_temp) \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
107 || VECTORP (composition_temp) \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
108 || INTEGERP (composition_temp) \ |
77c7dc464611
(COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents:
36691
diff
changeset
|
109 || CONSP (composition_temp)))))) \ |
26848 | 110 && (end - start) == COMPOSITION_LENGTH (prop)) |
111 | |
112 /* Return the Nth glyph of composition specified by CMP. CMP is a | |
113 pointer to `struct composition'. */ | |
114 #define COMPOSITION_GLYPH(cmp, n) \ | |
115 XINT (XVECTOR (XVECTOR (XHASH_TABLE (composition_hash_table) \ | |
116 ->key_and_value) \ | |
117 ->contents[cmp->hash_index * 2]) \ | |
118 ->contents[cmp->method == COMPOSITION_WITH_RULE_ALTCHARS \ | |
119 ? (n) * 2 : (n)]) | |
120 | |
121 /* Return the encoded composition rule to compose the Nth glyph of | |
122 rule-base composition specified by CMP. CMP is a pointer to | |
123 `struct composition'. */ | |
124 #define COMPOSITION_RULE(cmp, n) \ | |
125 XINT (XVECTOR (XVECTOR (XHASH_TABLE (composition_hash_table) \ | |
126 ->key_and_value) \ | |
127 ->contents[cmp->hash_index * 2]) \ | |
128 ->contents[(n) * 2 - 1]) | |
129 | |
130 /* Decode encoded composition rule RULE_CODE into GREF (global | |
89725
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
131 reference point code), NREF (new reference point code), XOFF |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
132 (horizontal offset) YOFF (vertical offset). Don't check RULE_CODE, |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
133 always set GREF and NREF to valid values. By side effect, |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
134 RULE_CODE is modified. */ |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
135 |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
136 #define COMPOSITION_DECODE_RULE(rule_code, gref, nref, xoff, yoff) \ |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
137 do { \ |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
138 xoff = (rule_code) >> 16; \ |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
139 yoff = ((rule_code) >> 8) & 0xFF; \ |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
140 rule_code &= 0xFF; \ |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
141 gref = (rule_code) / 12; \ |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
142 if (gref > 12) gref = 11; \ |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
143 nref = (rule_code) % 12; \ |
26848 | 144 } while (0) |
145 | |
146 /* Return encoded composition rule for the pair of global reference | |
147 point GREF and new reference point NREF. If arguments are invalid, | |
148 return -1. */ | |
149 #define COMPOSITION_ENCODE_RULE(gref, nref) \ | |
150 ((unsigned) (gref) < 12 && (unsigned) (nref) < 12 \ | |
151 ? (gref) * 12 + (nref) : -1) | |
152 | |
153 /* Data structure that records information about a composition | |
154 currently used in some buffers or strings. | |
155 | |
156 When a composition is assigned an ID number (by | |
157 get_composition_id), this structure is allocated for the | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46939
diff
changeset
|
158 composition and linked in composition_table[ID]. |
26848 | 159 |
160 Identical compositions appearing at different places have the same | |
161 ID, and thus share the same instance of this structure. */ | |
162 | |
163 struct composition { | |
36691
144162f5b2e3
(struct composition): Change types of members; glyph_len to unsigned,
Kenichi Handa <handa@m17n.org>
parents:
33239
diff
changeset
|
164 /* Number of glyphs of the composition components. */ |
144162f5b2e3
(struct composition): Change types of members; glyph_len to unsigned,
Kenichi Handa <handa@m17n.org>
parents:
33239
diff
changeset
|
165 unsigned glyph_len; |
144162f5b2e3
(struct composition): Change types of members; glyph_len to unsigned,
Kenichi Handa <handa@m17n.org>
parents:
33239
diff
changeset
|
166 |
144162f5b2e3
(struct composition): Change types of members; glyph_len to unsigned,
Kenichi Handa <handa@m17n.org>
parents:
33239
diff
changeset
|
167 /* Width, ascent, and descent pixels of the composition. */ |
144162f5b2e3
(struct composition): Change types of members; glyph_len to unsigned,
Kenichi Handa <handa@m17n.org>
parents:
33239
diff
changeset
|
168 short pixel_width, ascent, descent; |
144162f5b2e3
(struct composition): Change types of members; glyph_len to unsigned,
Kenichi Handa <handa@m17n.org>
parents:
33239
diff
changeset
|
169 |
89725
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
170 short lbearing, rbearing; |
39563e1a1b64
(COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents:
89513
diff
changeset
|
171 |
26848 | 172 /* How many columns the overall glyphs occupy on the screen. This |
173 gives an approximate value for column calculation in | |
174 Fcurrent_column, and etc. */ | |
36691
144162f5b2e3
(struct composition): Change types of members; glyph_len to unsigned,
Kenichi Handa <handa@m17n.org>
parents:
33239
diff
changeset
|
175 unsigned short width; |
26992
c7f8ea6a37bd
(struct composition): Change the order of declaring
Kenichi Handa <handa@m17n.org>
parents:
26848
diff
changeset
|
176 |
26848 | 177 /* Method of the composition. */ |
178 enum composition_method method; | |
179 | |
180 /* Index to the composition hash table. */ | |
181 int hash_index; | |
182 | |
183 /* For which font we have calculated the remaining members. The | |
184 actual type is device dependent. */ | |
185 void *font; | |
186 | |
187 /* Pointer to an array of x-offset and y-offset (by pixels) of | |
188 glyphs. This points to a sufficient memory space (sizeof (int) * | |
189 glyph_len * 2) that is allocated when the composition is | |
190 registered in composition_table. X-offset and Y-offset of Nth | |
191 glyph are (2N)th and (2N+1)th elements respectively. */ | |
192 short *offsets; | |
193 }; | |
194 | |
195 /* Table of pointers to the structure `composition' indexed by | |
196 COMPOSITION-ID. */ | |
197 extern struct composition **composition_table; | |
198 /* Number of the currently registered compositions. */ | |
199 extern int n_compositions; | |
200 | |
201 /* Mask bits for CHECK_MASK arg to update_compositions. | |
202 For a change in the region FROM and TO, check compositions ... */ | |
203 #define CHECK_HEAD 1 /* adjacent to FROM */ | |
204 #define CHECK_TAIL 2 /* adjacent to TO */ | |
205 #define CHECK_INSIDE 4 /* between FROM and TO */ | |
206 #define CHECK_BORDER (CHECK_HEAD | CHECK_TAIL) | |
207 #define CHECK_ALL (CHECK_BORDER | CHECK_INSIDE) | |
208 | |
209 extern Lisp_Object Qcomposition; | |
210 extern Lisp_Object composition_hash_table; | |
89282
309b9e0cb0c8
(Qauto_composed, Vauto_composition_function,
Kenichi Handa <handa@m17n.org>
parents:
88367
diff
changeset
|
211 extern Lisp_Object Qauto_composed; |
309b9e0cb0c8
(Qauto_composed, Vauto_composition_function,
Kenichi Handa <handa@m17n.org>
parents:
88367
diff
changeset
|
212 extern Lisp_Object Vauto_composition_function; |
309b9e0cb0c8
(Qauto_composed, Vauto_composition_function,
Kenichi Handa <handa@m17n.org>
parents:
88367
diff
changeset
|
213 extern Lisp_Object Qauto_composition_function; |
26848 | 214 |
215 extern int get_composition_id P_ ((int, int, int, Lisp_Object, Lisp_Object)); | |
89513
24f632d28cd6
(find_composition, update_compositions): Make
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
216 extern int find_composition P_ ((int, int, EMACS_INT *, EMACS_INT *, Lisp_Object *, |
26848 | 217 Lisp_Object)); |
89513
24f632d28cd6
(find_composition, update_compositions): Make
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
218 extern void update_compositions P_ ((EMACS_INT, EMACS_INT, int)); |
30025
c5eb8840659f
(make_composition_value_copy): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
29895
diff
changeset
|
219 extern void make_composition_value_copy P_ ((Lisp_Object)); |
26848 | 220 extern void compose_region P_ ((int, int, Lisp_Object, Lisp_Object, |
221 Lisp_Object)); | |
38484
924488395239
(syms_of_composite): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
37240
diff
changeset
|
222 extern void syms_of_composite P_ ((void)); |
29895 | 223 extern void compose_text P_ ((int, int, Lisp_Object, Lisp_Object, |
224 Lisp_Object)); | |
26848 | 225 |
29572
d88f50e982a1
(EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
Kenichi Handa <handa@m17n.org>
parents:
26992
diff
changeset
|
226 #endif /* not EMACS_COMPOSITE_H */ |
52401 | 227 |
228 /* arch-tag: 59524d89-c645-47bd-b5e6-65e861690118 | |
229 (do not change this comment) */ |