annotate src/composite.h @ 112437:f3d875901372

Merge from mainline.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 22 Jan 2011 20:30:57 -0800
parents 42e22c4f06b7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1 /* Header for composite sequence handler.
68651
3bd95f4f2941 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 67658
diff changeset
2 Copyright (C) 2001, 2002, 2003, 2004, 2005,
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
3 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
4 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
67658
547f2b420666 Copyright fixed
Kenichi Handa <handa@m17n.org>
parents: 65486
diff changeset
5 National Institute of Advanced Industrial Science and Technology (AIST)
547f2b420666 Copyright fixed
Kenichi Handa <handa@m17n.org>
parents: 65486
diff changeset
6 Registration Number H14PRO021
90404
a7d267afebf9 (enum composition_method) [USE_FONT_BACKEND]: New
Kenichi Handa <handa@m17n.org>
parents: 90294
diff changeset
7 Copyright (C) 2003, 2006
88367
bc14316e7ce2 (enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents: 38484
diff changeset
8 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
9 Registration Number H13PRO009
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
10
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
11 This file is part of GNU Emacs.
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
12
94994
29adfc9354e7 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91548
diff changeset
13 GNU Emacs is free software: you can redistribute it and/or modify
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
14 it under the terms of the GNU General Public License as published by
94994
29adfc9354e7 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91548
diff changeset
15 the Free Software Foundation, either version 3 of the License, or
29adfc9354e7 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91548
diff changeset
16 (at your option) any later version.
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
17
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
18 GNU Emacs is distributed in the hope that it will be useful,
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
21 GNU General Public License for more details.
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
22
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
23 You should have received a copy of the GNU General Public License
94994
29adfc9354e7 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91548
diff changeset
24 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
25
29572
d88f50e982a1 (EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
Kenichi Handa <handa@m17n.org>
parents: 26992
diff changeset
26 #ifndef EMACS_COMPOSITE_H
d88f50e982a1 (EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
Kenichi Handa <handa@m17n.org>
parents: 26992
diff changeset
27 #define EMACS_COMPOSITE_H
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
28
90404
a7d267afebf9 (enum composition_method) [USE_FONT_BACKEND]: New
Kenichi Handa <handa@m17n.org>
parents: 90294
diff changeset
29 /* Methods to display a sequence of components of a composition. */
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
30 enum composition_method {
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
31 /* Compose relatively without alternate characters. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
32 COMPOSITION_RELATIVE,
88367
bc14316e7ce2 (enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents: 38484
diff changeset
33 /* 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
34 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
35 versions of Emacs. */
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
36 COMPOSITION_WITH_RULE,
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
37 /* Compose relatively with alternate characters. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
38 COMPOSITION_WITH_ALTCHARS,
88367
bc14316e7ce2 (enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents: 38484
diff changeset
39 /* Compose by specified composition rules with alternate characters. */
bc14316e7ce2 (enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents: 38484
diff changeset
40 COMPOSITION_WITH_RULE_ALTCHARS,
bc14316e7ce2 (enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents: 38484
diff changeset
41 /* This is not a method. */
bc14316e7ce2 (enum composition_method): Order of enumeration
Kenichi Handa <handa@m17n.org>
parents: 38484
diff changeset
42 COMPOSITION_NO
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
43 };
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
44
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
45 /* Maximum number of compoments a single composition can have. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
46 #define MAX_COMPOSITION_COMPONENTS 16
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
47
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
48 /* These macros access information about a composition that
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
49 has `composition' property PROP. PROP is:
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
50 ((LENGTH . COMPONENTS) . MODIFICATION-FUNC)
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
51 or
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
52 (COMPOSITION-ID . (LENGTH COMPONENTS . MODIFICATION-FUNC))
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
53 They don't check validity of PROP. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
54
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
55 /* Temporary variable used only in the following macros. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
56 extern Lisp_Object composition_temp;
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
57
78501
1677cf1c2509 Replace `iff' in comments.
Glenn Morris <rgm@gnu.org>
parents: 78313
diff changeset
58 /* Return 1 if the composition is already registered. */
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
59 #define COMPOSITION_REGISTERD_P(prop) INTEGERP (XCAR (prop))
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
60
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
61 /* Return ID number of the already registered composition. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
62 #define COMPOSITION_ID(prop) XINT (XCAR (prop))
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
63
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
64 /* Return length of the composition. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
65 #define COMPOSITION_LENGTH(prop) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
66 (COMPOSITION_REGISTERD_P (prop) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
67 ? XINT (XCAR (XCDR (prop))) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
68 : XINT (XCAR (XCAR (prop))))
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
69
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
70 /* Return components of the composition. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
71 #define COMPOSITION_COMPONENTS(prop) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
72 (COMPOSITION_REGISTERD_P (prop) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
73 ? XCAR (XCDR (XCDR (prop))) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
74 : XCDR (XCAR (prop)))
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
75
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
76 /* Return modification function of the composition. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
77 #define COMPOSITION_MODIFICATION_FUNC(prop) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
78 (COMPOSITION_REGISTERD_P (prop) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
79 ? 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
80 : CONSP (prop) ? XCDR (prop) : Qnil)
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
81
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
82 /* Return the method of composition. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
83 #define COMPOSITION_METHOD(prop) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
84 (COMPOSITION_REGISTERD_P (prop) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
85 ? composition_table[COMPOSITION_ID (prop)]->method \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
86 : (composition_temp = XCDR (XCAR (prop)), \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
87 (NILP (composition_temp) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
88 ? COMPOSITION_RELATIVE \
91173
d073992bc6f3 (COMPOSITION_METHOD): Handle
Kenichi Handa <handa@m17n.org>
parents: 91005
diff changeset
89 : (INTEGERP (composition_temp) || STRINGP (composition_temp)) \
d073992bc6f3 (COMPOSITION_METHOD): Handle
Kenichi Handa <handa@m17n.org>
parents: 91005
diff changeset
90 ? COMPOSITION_WITH_ALTCHARS \
d073992bc6f3 (COMPOSITION_METHOD): Handle
Kenichi Handa <handa@m17n.org>
parents: 91005
diff changeset
91 : COMPOSITION_WITH_RULE_ALTCHARS)))
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
92
78501
1677cf1c2509 Replace `iff' in comments.
Glenn Morris <rgm@gnu.org>
parents: 78313
diff changeset
93 /* Return 1 if the composition is valid. It is valid if length of
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
94 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
95 #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
96 (CONSP (prop) \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
97 && (COMPOSITION_REGISTERD_P (prop) \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
98 ? (COMPOSITION_ID (prop) >= 0 \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
99 && COMPOSITION_ID (prop) <= n_compositions \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
100 && CONSP (XCDR (prop))) \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
101 : (composition_temp = XCAR (prop), \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
102 (CONSP (composition_temp) \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
103 && (composition_temp = XCDR (composition_temp), \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
104 (NILP (composition_temp) \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
105 || STRINGP (composition_temp) \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
106 || VECTORP (composition_temp) \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
107 || INTEGERP (composition_temp) \
77c7dc464611 (COMPOSITION_VALID_P): Allow integers as cdrs of
Gerd Moellmann <gerd@gnu.org>
parents: 36691
diff changeset
108 || CONSP (composition_temp)))))) \
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
109 && (end - start) == COMPOSITION_LENGTH (prop))
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
110
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
111 /* Return the Nth glyph of composition specified by CMP. CMP is a
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
112 pointer to `struct composition'. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
113 #define COMPOSITION_GLYPH(cmp, n) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
114 XINT (XVECTOR (XVECTOR (XHASH_TABLE (composition_hash_table) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
115 ->key_and_value) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
116 ->contents[cmp->hash_index * 2]) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
117 ->contents[cmp->method == COMPOSITION_WITH_RULE_ALTCHARS \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
118 ? (n) * 2 : (n)])
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
119
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
120 /* Return the encoded composition rule to compose the Nth glyph of
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
121 rule-base composition specified by CMP. CMP is a pointer to
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
122 `struct composition'. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
123 #define COMPOSITION_RULE(cmp, n) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
124 XINT (XVECTOR (XVECTOR (XHASH_TABLE (composition_hash_table) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
125 ->key_and_value) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
126 ->contents[cmp->hash_index * 2]) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
127 ->contents[(n) * 2 - 1])
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
128
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
129 /* 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
130 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
131 (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
132 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
133 RULE_CODE is modified. */
39563e1a1b64 (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents: 89513
diff changeset
134
39563e1a1b64 (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents: 89513
diff changeset
135 #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
136 do { \
39563e1a1b64 (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents: 89513
diff changeset
137 xoff = (rule_code) >> 16; \
39563e1a1b64 (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents: 89513
diff changeset
138 yoff = ((rule_code) >> 8) & 0xFF; \
39563e1a1b64 (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents: 89513
diff changeset
139 rule_code &= 0xFF; \
39563e1a1b64 (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents: 89513
diff changeset
140 gref = (rule_code) / 12; \
39563e1a1b64 (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents: 89513
diff changeset
141 if (gref > 12) gref = 11; \
39563e1a1b64 (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents: 89513
diff changeset
142 nref = (rule_code) % 12; \
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
143 } while (0)
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
144
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
145 /* Return encoded composition rule for the pair of global reference
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
146 point GREF and new reference point NREF. If arguments are invalid,
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
147 return -1. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
148 #define COMPOSITION_ENCODE_RULE(gref, nref) \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
149 ((unsigned) (gref) < 12 && (unsigned) (nref) < 12 \
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
150 ? (gref) * 12 + (nref) : -1)
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
151
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
152 /* Data structure that records information about a composition
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
153 currently used in some buffers or strings.
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
154
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
155 When a composition is assigned an ID number (by
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
156 get_composition_id), this structure is allocated for the
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46939
diff changeset
157 composition and linked in composition_table[ID].
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
158
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
159 Identical compositions appearing at different places have the same
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
160 ID, and thus share the same instance of this structure. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
161
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
162 struct composition {
36691
144162f5b2e3 (struct composition): Change types of members; glyph_len to unsigned,
Kenichi Handa <handa@m17n.org>
parents: 33239
diff changeset
163 /* 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
164 unsigned glyph_len;
144162f5b2e3 (struct composition): Change types of members; glyph_len to unsigned,
Kenichi Handa <handa@m17n.org>
parents: 33239
diff changeset
165
144162f5b2e3 (struct composition): Change types of members; glyph_len to unsigned,
Kenichi Handa <handa@m17n.org>
parents: 33239
diff changeset
166 /* 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
167 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
168
89725
39563e1a1b64 (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents: 89513
diff changeset
169 short lbearing, rbearing;
39563e1a1b64 (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
Kenichi Handa <handa@m17n.org>
parents: 89513
diff changeset
170
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
171 /* How many columns the overall glyphs occupy on the screen. This
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
172 gives an approximate value for column calculation in
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
173 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
174 unsigned short width;
26992
c7f8ea6a37bd (struct composition): Change the order of declaring
Kenichi Handa <handa@m17n.org>
parents: 26848
diff changeset
175
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
176 /* Method of the composition. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
177 enum composition_method method;
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
178
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
179 /* Index to the composition hash table. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
180 int hash_index;
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
181
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
182 /* For which font we have calculated the remaining members. The
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
183 actual type is device dependent. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
184 void *font;
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
185
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
186 /* Pointer to an array of x-offset and y-offset (by pixels) of
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
187 glyphs. This points to a sufficient memory space (sizeof (int) *
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
188 glyph_len * 2) that is allocated when the composition is
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
189 registered in composition_table. X-offset and Y-offset of Nth
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
190 glyph are (2N)th and (2N+1)th elements respectively. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
191 short *offsets;
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
192 };
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
193
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
194 /* Table of pointers to the structure `composition' indexed by
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
195 COMPOSITION-ID. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
196 extern struct composition **composition_table;
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
197 /* Number of the currently registered compositions. */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
198 extern int n_compositions;
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
199
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
200 /* Mask bits for CHECK_MASK arg to update_compositions.
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
201 For a change in the region FROM and TO, check compositions ... */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
202 #define CHECK_HEAD 1 /* adjacent to FROM */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
203 #define CHECK_TAIL 2 /* adjacent to TO */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
204 #define CHECK_INSIDE 4 /* between FROM and TO */
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
205 #define CHECK_BORDER (CHECK_HEAD | CHECK_TAIL)
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
206 #define CHECK_ALL (CHECK_BORDER | CHECK_INSIDE)
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
207
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
208 extern Lisp_Object Qcomposition;
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
209 extern Lisp_Object composition_hash_table;
89282
309b9e0cb0c8 (Qauto_composed, Vauto_composition_function,
Kenichi Handa <handa@m17n.org>
parents: 88367
diff changeset
210 extern Lisp_Object Qauto_composed;
309b9e0cb0c8 (Qauto_composed, Vauto_composition_function,
Kenichi Handa <handa@m17n.org>
parents: 88367
diff changeset
211 extern Lisp_Object Qauto_composition_function;
110504
0fdd992ff057 Fix more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents: 109099
diff changeset
212 extern int get_composition_id (EMACS_INT, EMACS_INT, EMACS_INT,
0fdd992ff057 Fix more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents: 109099
diff changeset
213 Lisp_Object, Lisp_Object);
0fdd992ff057 Fix more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents: 109099
diff changeset
214 extern int find_composition (EMACS_INT, EMACS_INT, EMACS_INT *, EMACS_INT *,
0fdd992ff057 Fix more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents: 109099
diff changeset
215 Lisp_Object *, Lisp_Object);
109099
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
216 extern void update_compositions (EMACS_INT, EMACS_INT, int);
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
217 extern void make_composition_value_copy (Lisp_Object);
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
218 extern void compose_region (int, int, Lisp_Object, Lisp_Object,
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
219 Lisp_Object);
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
220 extern void syms_of_composite (void);
110504
0fdd992ff057 Fix more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents: 109099
diff changeset
221 extern void compose_text (EMACS_INT, EMACS_INT, Lisp_Object, Lisp_Object,
109099
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
222 Lisp_Object);
26848
d502b027b817 New file
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
223
97820
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
224 /* Macros for lispy glyph-string. This is completely different from
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
225 struct glyph_string. */
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
226
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
227 #define LGSTRING_HEADER(lgs) AREF (lgs, 0)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
228 #define LGSTRING_SET_HEADER(lgs, header) ASET (lgs, 0, header)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
229
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
230 #define LGSTRING_FONT(lgs) AREF (LGSTRING_HEADER (lgs), 0)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
231 #define LGSTRING_CHAR(lgs, i) AREF (LGSTRING_HEADER (lgs), (i) + 1)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
232 #define LGSTRING_CHAR_LEN(lgs) (ASIZE (LGSTRING_HEADER (lgs)) - 1)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
233
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
234 #define LGSTRING_SET_FONT(lgs, val) ASET (LGSTRING_HEADER (lgs), 0, (val))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
235 #define LGSTRING_SET_CHAR(lgs, i, c) ASET (LGSTRING_HEADER (lgs), (i) + 1, (c))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
236
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
237 #define LGSTRING_ID(lgs) AREF (lgs, 1)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
238 #define LGSTRING_SET_ID(lgs, id) ASET (lgs, 1, id)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
239
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
240 #define LGSTRING_GLYPH_LEN(lgs) (ASIZE ((lgs)) - 2)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
241 #define LGSTRING_GLYPH(lgs, idx) AREF ((lgs), (idx) + 2)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
242 #define LGSTRING_SET_GLYPH(lgs, idx, val) ASET ((lgs), (idx) + 2, (val))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
243
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
244 /* Vector size of Lispy glyph. */
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
245 enum lglyph_indices
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
246 {
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
247 LGLYPH_IX_FROM, LGLYPH_IX_TO, LGLYPH_IX_CHAR, LGLYPH_IX_CODE,
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
248 LGLYPH_IX_WIDTH, LGLYPH_IX_LBEARING, LGLYPH_IX_RBEARING,
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
249 LGLYPH_IX_ASCENT, LGLYPH_IX_DESCENT, LGLYPH_IX_ADJUSTMENT,
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
250 /* Not an index. */
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
251 LGLYPH_SIZE
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
252 };
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
253
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
254 #define LGLYPH_NEW() Fmake_vector (make_number (LGLYPH_SIZE), Qnil)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
255 #define LGLYPH_FROM(g) XINT (AREF ((g), LGLYPH_IX_FROM))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
256 #define LGLYPH_TO(g) XINT (AREF ((g), LGLYPH_IX_TO))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
257 #define LGLYPH_CHAR(g) XINT (AREF ((g), LGLYPH_IX_CHAR))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
258 #define LGLYPH_CODE(g) \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
259 (NILP (AREF ((g), LGLYPH_IX_CODE)) \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
260 ? FONT_INVALID_CODE \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
261 : CONSP (AREF ((g), LGLYPH_IX_CODE)) \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
262 ? ((XFASTINT (XCAR (AREF ((g), LGLYPH_IX_CODE))) << 16) \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
263 | (XFASTINT (XCDR (AREF ((g), LGLYPH_IX_CODE))))) \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
264 : XFASTINT (AREF ((g), LGLYPH_IX_CODE)))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
265 #define LGLYPH_WIDTH(g) XINT (AREF ((g), LGLYPH_IX_WIDTH))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
266 #define LGLYPH_LBEARING(g) XINT (AREF ((g), LGLYPH_IX_LBEARING))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
267 #define LGLYPH_RBEARING(g) XINT (AREF ((g), LGLYPH_IX_RBEARING))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
268 #define LGLYPH_ASCENT(g) XINT (AREF ((g), LGLYPH_IX_ASCENT))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
269 #define LGLYPH_DESCENT(g) XINT (AREF ((g), LGLYPH_IX_DESCENT))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
270 #define LGLYPH_ADJUSTMENT(g) AREF ((g), LGLYPH_IX_ADJUSTMENT)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
271 #define LGLYPH_SET_FROM(g, val) ASET ((g), LGLYPH_IX_FROM, make_number (val))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
272 #define LGLYPH_SET_TO(g, val) ASET ((g), LGLYPH_IX_TO, make_number (val))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
273 #define LGLYPH_SET_CHAR(g, val) ASET ((g), LGLYPH_IX_CHAR, make_number (val))
97909
ec291be9f039 (LGLYPH_SET_CODE): Add comment.
Kenichi Handa <handa@m17n.org>
parents: 97847
diff changeset
274 /* Callers must assure that VAL is not negative! */
97820
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
275 #define LGLYPH_SET_CODE(g, val) \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
276 do { \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
277 if (val == FONT_INVALID_CODE) \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
278 ASET ((g), LGLYPH_IX_CODE, Qnil); \
97847
2fb5b268febb (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents: 97820
diff changeset
279 else if ((EMACS_INT)val > MOST_POSITIVE_FIXNUM) \
97820
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
280 ASET ((g), LGLYPH_IX_CODE, Fcons (make_number ((val) >> 16), \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
281 make_number ((val) & 0xFFFF))); \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
282 else \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
283 ASET ((g), LGLYPH_IX_CODE, make_number (val)); \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
284 } while (0)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
285
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
286 #define LGLYPH_SET_WIDTH(g, val) ASET ((g), LGLYPH_IX_WIDTH, make_number (val))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
287 #define LGLYPH_SET_LBEARING(g, val) ASET ((g), LGLYPH_IX_LBEARING, make_number (val))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
288 #define LGLYPH_SET_RBEARING(g, val) ASET ((g), LGLYPH_IX_RBEARING, make_number (val))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
289 #define LGLYPH_SET_ASCENT(g, val) ASET ((g), LGLYPH_IX_ASCENT, make_number (val))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
290 #define LGLYPH_SET_DESCENT(g, val) ASET ((g), LGLYPH_IX_DESCENT, make_number (val))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
291 #define LGLYPH_SET_ADJUSTMENT(g, val) ASET ((g), LGLYPH_IX_ADJUSTMENT, (val))
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
292
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
293 #define LGLYPH_XOFF(g) (VECTORP (LGLYPH_ADJUSTMENT (g)) \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
294 ? XINT (AREF (LGLYPH_ADJUSTMENT (g), 0)) : 0)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
295 #define LGLYPH_YOFF(g) (VECTORP (LGLYPH_ADJUSTMENT (g)) \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
296 ? XINT (AREF (LGLYPH_ADJUSTMENT (g), 1)) : 0)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
297 #define LGLYPH_WADJUST(g) (VECTORP (LGLYPH_ADJUSTMENT (g)) \
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
298 ? XINT (AREF (LGLYPH_ADJUSTMENT (g), 2)) : 0)
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
299
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
300 struct composition_it;
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
301 struct face;
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
302 struct font_metrics;
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
303
109099
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
304 extern Lisp_Object composition_gstring_put_cache (Lisp_Object, int);
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
305 extern Lisp_Object composition_gstring_from_id (int);
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
306 extern int composition_gstring_p (Lisp_Object);
110504
0fdd992ff057 Fix more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents: 109099
diff changeset
307 extern int composition_gstring_width (Lisp_Object, EMACS_INT, EMACS_INT,
109099
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
308 struct font_metrics *);
97820
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
309
109099
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
310 extern void composition_compute_stop_pos (struct composition_it *,
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
311 EMACS_INT, EMACS_INT, EMACS_INT,
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
312 Lisp_Object);
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
313 extern int composition_reseat_it (struct composition_it *,
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
314 EMACS_INT, EMACS_INT, EMACS_INT,
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
315 struct window *, struct face *,
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
316 Lisp_Object);
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
317 extern int composition_update_it (struct composition_it *,
e16f43875a48 Remove P_ and __P macros.
Jan D <jan.h.d@swipnet.se>
parents: 106815
diff changeset
318 EMACS_INT, EMACS_INT, Lisp_Object);
97820
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
319
110559
9c63d46e000c Fix int/EMACS_INT use in keyboard.c.
Eli Zaretskii <eliz@gnu.org>
parents: 110504
diff changeset
320 extern EMACS_INT composition_adjust_point (EMACS_INT, EMACS_INT);
97820
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
321
45062be75131 * composite.h (enum composition_method): Delete
Kenichi Handa <handa@m17n.org>
parents: 94994
diff changeset
322 EXFUN (Fcomposition_get_gstring, 4);
91548
63d4513550f9 (Fcompose_region_internal, Fcompose_string_internal): Declare.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91327
diff changeset
323
29572
d88f50e982a1 (EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
Kenichi Handa <handa@m17n.org>
parents: 26992
diff changeset
324 #endif /* not EMACS_COMPOSITE_H */
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
325