Mercurial > emacs
annotate lisp/composite.el @ 89615:88fa74816908
(base64_encode_1): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 13 Nov 2003 06:03:46 +0000 |
parents | adfad852712a |
children | 65f1f8091f15 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37232
diff
changeset
|
1 ;;; composite.el --- support character composition |
26880 | 2 |
3 ;; Copyright (C) 1999 Electrotechnical Laboratory, JAPAN. | |
4 ;; Licensed to the Free Software Foundation. | |
5 | |
6 ;; Keywords: mule, multilingual, character composition | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37232
diff
changeset
|
25 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37232
diff
changeset
|
26 |
26880 | 27 ;;; Code: |
28 | |
29 (defconst reference-point-alist | |
30 '((tl . 0) (tc . 1) (tr . 2) | |
31 (Bl . 3) (Bc . 4) (Br . 5) | |
32 (bl . 6) (bc . 7) (br . 8) | |
33 (cl . 9) (cc . 10) (cr . 11) | |
34 (top-left . 0) (top-center . 1) (top-right . 2) | |
35 (base-left . 3) (base-center . 4) (base-right . 5) | |
36 (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) | |
37 (center-left . 9) (center-center . 10) (center-right . 11) | |
38 ;; For backward compatibility... | |
39 (ml . 3) (mc . 10) (mr . 5) | |
40 (mid-left . 3) (mid-center . 10) (mid-right . 5)) | |
41 "Alist of symbols vs integer codes of glyph reference points. | |
42 A glyph reference point symbol is to be used to specify a composition | |
89497 | 43 rule in COMPONENTS argument to such functions as `compose-region'. |
26880 | 44 |
45 Meanings of glyph reference point codes are as follows: | |
46 | |
47 0----1----2 <---- ascent 0:tl or top-left | |
48 | | 1:tc or top-center | |
49 | | 2:tr or top-right | |
50 | | 3:Bl or base-left 9:cl or center-left | |
51 9 10 11 <---- center 4:Bc or base-center 10:cc or center-center | |
52 | | 5:Br or base-right 11:cr or center-right | |
53 --3----4----5-- <-- baseline 6:bl or bottom-left | |
54 | | 7:bc or bottom-center | |
55 6----7----8 <---- descent 8:br or bottom-right | |
56 | |
57 Glyph reference point symbols are to be used to specify composition | |
58 rule of the form \(GLOBAL-REF-POINT . NEW-REF-POINT), where | |
59 GLOBAL-REF-POINT is a reference point in the overall glyphs already | |
60 composed, and NEW-REF-POINT is a reference point in the new glyph to | |
61 be added. | |
62 | |
63 For instance, if GLOBAL-REF-POINT is `br' (bottom-right) and | |
37232
cebd635be09b
(reference-point-alist): Doc fix.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35075
diff
changeset
|
64 NEW-REF-POINT is `tc' (top-center), the overall glyph is updated as |
26880 | 65 follows (the point `*' corresponds to both reference points): |
66 | |
67 +-------+--+ <--- new ascent | |
68 | | | | |
69 | global| | | |
70 | glyph | | | |
71 -- | | |-- <--- baseline \(doesn't change) | |
72 +----+--*--+ | |
73 | | new | | |
74 | |glyph| | |
75 +----+-----+ <--- new descent | |
76 ") | |
77 | |
78 ;; Encode composition rule RULE into an integer value. RULE is a cons | |
79 ;; of global and new reference point symbols. | |
80 ;; This must be compatible with C macro COMPOSITION_ENCODE_RULE | |
81 ;; defined in composite.h. | |
82 | |
83 (defun encode-composition-rule (rule) | |
84 (if (and (integerp rule) (< rule 144)) | |
85 ;; Already encoded. | |
86 rule | |
87 (or (consp rule) | |
88 (error "Invalid composition rule: %S" rule)) | |
89 (let ((gref (car rule)) | |
90 (nref (cdr rule))) | |
91 (or (integerp gref) | |
92 (setq gref (cdr (assq gref reference-point-alist)))) | |
93 (or (integerp nref) | |
94 (setq nref (cdr (assq nref reference-point-alist)))) | |
95 (or (and (>= gref 0) (< gref 12) (>= nref 0) (< nref 12)) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49512
diff
changeset
|
96 (error "Invalid composition rule: %S" rule)) |
26880 | 97 (+ (* gref 12) nref)))) |
98 | |
99 ;; Decode encoded composition rule RULE-CODE. The value is a cons of | |
100 ;; global and new reference point symbols. | |
101 ;; This must be compatible with C macro COMPOSITION_DECODE_RULE | |
102 ;; defined in composite.h. | |
103 | |
104 (defun decode-composition-rule (rule-code) | |
105 (or (and (natnump rule-code) (< rule-code 144)) | |
106 (error "Invalid encoded composition rule: %S" rule-code)) | |
107 (let ((gref (car (rassq (/ rule-code 12) reference-point-alist))) | |
108 (nref (car (rassq (% rule-code 12) reference-point-alist)))) | |
109 (or (and gref (symbolp gref) nref (symbolp nref)) | |
110 (error "Invalid composition rule code: %S" rule-code)) | |
111 (cons gref nref))) | |
112 | |
113 ;; Encode composition rules in composition components COMPONENTS. The | |
114 ;; value is a copy of COMPONENTS, where composition rules (cons of | |
115 ;; global and new glyph reference point symbols) are replaced with | |
116 ;; encoded composition rules. Optional 2nd argument NOCOPY non-nil | |
117 ;; means don't make a copy but modify COMPONENTS directly. | |
118 | |
119 (defun encode-composition-components (components &optional nocopy) | |
120 (or nocopy | |
121 (setq components (copy-sequence components))) | |
122 (if (vectorp components) | |
123 (let ((len (length components)) | |
124 (i 1)) | |
125 (while (< i len) | |
126 (aset components i | |
127 (encode-composition-rule (aref components i))) | |
128 (setq i (+ i 2)))) | |
129 (let ((tail (cdr components))) | |
130 (while tail | |
131 (setcar tail | |
132 (encode-composition-rule (car tail))) | |
133 (setq tail (nthcdr 2 tail))))) | |
134 components) | |
135 | |
136 ;; Decode composition rule codes in composition components COMPONENTS. | |
137 ;; The value is a copy of COMPONENTS, where composition rule codes are | |
138 ;; replaced with composition rules (cons of global and new glyph | |
139 ;; reference point symbols). Optional 2nd argument NOCOPY non-nil | |
140 ;; means don't make a copy but modify COMPONENTS directly. | |
141 ;; It is assumed that COMPONENTS is a vector and is for rule-base | |
142 ;; composition, thus (2N+1)th elements are rule codes. | |
143 | |
144 (defun decode-composition-components (components &optional nocopy) | |
145 (or nocopy | |
146 (setq components (copy-sequence components))) | |
147 (let ((len (length components)) | |
148 (i 1)) | |
149 (while (< i len) | |
150 (aset components i | |
151 (decode-composition-rule (aref components i))) | |
152 (setq i (+ i 2)))) | |
153 components) | |
154 | |
155 (defun compose-region (start end &optional components modification-func) | |
156 "Compose characters in the current region. | |
157 | |
46963 | 158 Characters are composed relatively, i.e. composed by overstricking or |
159 stacking depending on ascent, descent and other properties. | |
160 | |
26880 | 161 When called from a program, expects these four arguments. |
162 | |
163 First two arguments START and END are positions (integers or markers) | |
164 specifying the region. | |
165 | |
89497 | 166 Optional 3rd argument COMPONENTS, if non-nil, is a character, a string |
167 or a vector or list of integers and rules. | |
26880 | 168 |
169 If it is a character, it is an alternate character to display instead | |
170 of the text in the region. | |
171 | |
172 If it is a string, the elements are alternate characters. | |
173 | |
174 If it is a vector or list, it is a sequence of alternate characters and | |
175 composition rules, where (2N)th elements are characters and (2N+1)th | |
176 elements are composition rules to specify how to compose (2N+2)th | |
177 elements with previously composed N glyphs. | |
178 | |
179 A composition rule is a cons of global and new glyph reference point | |
180 symbols. See the documentation of `reference-point-alist' for more | |
181 detail. | |
182 | |
183 Optional 4th argument MODIFICATION-FUNC is a function to call to | |
184 adjust the composition when it gets invalid because of a change of | |
185 text in the composition." | |
186 (interactive "r") | |
187 (let ((modified-p (buffer-modified-p)) | |
188 (buffer-read-only nil)) | |
189 (if (or (vectorp components) (listp components)) | |
190 (setq components (encode-composition-components components))) | |
191 (compose-region-internal start end components modification-func) | |
192 (set-buffer-modified-p modified-p))) | |
193 | |
194 (defun decompose-region (start end) | |
195 "Decompose text in the current region. | |
196 | |
197 When called from a program, expects two arguments, | |
198 positions (integers or markers) specifying the region." | |
199 (interactive "r") | |
200 (let ((modified-p (buffer-modified-p)) | |
201 (buffer-read-only nil)) | |
202 (remove-text-properties start end '(composition nil)) | |
203 (set-buffer-modified-p modified-p))) | |
204 | |
205 (defun compose-string (string &optional start end components modification-func) | |
206 "Compose characters in string STRING. | |
207 | |
88808 | 208 The return value is STRING with the `composition' property put on all |
26880 | 209 the characters in it. |
210 | |
211 Optional 2nd and 3rd arguments START and END specify the range of | |
88808 | 212 STRING to be composed. They default to the beginning and the end of |
26880 | 213 STRING respectively. |
214 | |
215 Optional 4th argument COMPONENTS, if non-nil, is a character or a | |
216 sequence (vector, list, or string) of integers. See the function | |
217 `compose-region' for more detail. | |
218 | |
219 Optional 5th argument MODIFICATION-FUNC is a function to call to | |
220 adjust the composition when it gets invalid because of a change of | |
221 text in the composition." | |
222 (if (or (vectorp components) (listp components)) | |
223 (setq components (encode-composition-components components))) | |
224 (or start (setq start 0)) | |
225 (or end (setq end (length string))) | |
226 (compose-string-internal string start end components modification-func) | |
227 string) | |
228 | |
229 (defun decompose-string (string) | |
230 "Return STRING where `composition' property is removed." | |
231 (remove-text-properties 0 (length string) '(composition nil) string) | |
232 string) | |
233 | |
234 (defun compose-chars (&rest args) | |
235 "Return a string from arguments in which all characters are composed. | |
236 For relative composition, arguments are characters. | |
237 For rule-based composition, Mth \(where M is odd) arguments are | |
238 characters, and Nth \(where N is even) arguments are composition rules. | |
239 A composition rule is a cons of glyph reference points of the form | |
240 \(GLOBAL-REF-POINT . NEW-REF-POINT). See the documentation of | |
241 `reference-point-alist' for more detail." | |
242 (let (str components) | |
243 (if (consp (car (cdr args))) | |
244 ;; Rule-base composition. | |
245 (let ((len (length args)) | |
246 (tail (encode-composition-components args 'nocopy))) | |
247 | |
248 (while tail | |
249 (setq str (cons (car tail) str)) | |
250 (setq tail (nthcdr 2 tail))) | |
251 (setq str (concat (nreverse str)) | |
252 components args)) | |
253 ;; Relative composition. | |
254 (setq str (concat args))) | |
255 (compose-string-internal str 0 (length str) components))) | |
256 | |
257 (defun find-composition (pos &optional limit string detail-p) | |
258 "Return information about a composition at or nearest to buffer position POS. | |
259 | |
260 If the character at POS has `composition' property, the value is a list | |
261 of FROM, TO, and VALID-P. | |
262 | |
263 FROM and TO specify the range of text that has the same `composition' | |
264 property, VALID-P is non-nil if and only if this composition is valid. | |
265 | |
266 If there's no composition at POS, and the optional 2nd argument LIMIT | |
267 is non-nil, search for a composition toward LIMIT. | |
268 | |
269 If no composition is found, return nil. | |
270 | |
271 Optional 3rd argument STRING, if non-nil, is a string to look for a | |
272 composition in; nil means the current buffer. | |
273 | |
274 If a valid composition is found and the optional 4th argument DETAIL-P | |
275 is non-nil, the return value is a list of FROM, TO, COMPONENTS, | |
276 RELATIVE-P, MOD-FUNC, and WIDTH. | |
277 | |
278 COMPONENTS is a vector of integers, the meaning depends on RELATIVE-P. | |
279 | |
280 RELATIVE-P is t if the composition method is relative, else nil. | |
281 | |
282 If RELATIVE-P is t, COMPONENTS is a vector of characters to be | |
283 composed. If RELATIVE-P is nil, COMPONENTS is a vector of characters | |
284 and composition rules as described in `compose-region'. | |
285 | |
286 MOD-FUNC is a modification function of the composition. | |
287 | |
288 WIDTH is a number of columns the composition occupies on the screen." | |
289 (let ((result (find-composition-internal pos limit string detail-p))) | |
290 (if (and detail-p result (nth 2 result) (not (nth 3 result))) | |
291 ;; This is a valid rule-base composition. | |
292 (decode-composition-components (nth 2 result) 'nocopy)) | |
293 result)) | |
294 | |
295 | |
33244
59edd748e69a
(composition-function-table): Variable declaration
Kenichi Handa <handa@m17n.org>
parents:
30485
diff
changeset
|
296 (defun compose-chars-after (pos &optional limit object) |
26880 | 297 "Compose characters in current buffer after position POS. |
298 | |
299 It looks up the char-table `composition-function-table' (which see) by | |
300 a character after POS. If non-nil value is found, the format of the | |
301 value should be an alist of PATTERNs vs FUNCs, where PATTERNs are | |
302 regular expressions and FUNCs are functions. If the text after POS | |
303 matches one of PATTERNs, call the corresponding FUNC with three | |
304 arguments POS, TO, and PATTERN, where TO is the end position of text | |
305 matching PATTERN, and return what FUNC returns. Otherwise, return | |
306 nil. | |
307 | |
308 FUNC is responsible for composing the text properly. The return value | |
309 is: | |
310 nil -- if no characters were composed. | |
311 CHARS (integer) -- if CHARS characters were composed. | |
312 | |
313 Optional 2nd arg LIMIT, if non-nil, limits the matching of text. | |
314 | |
33244
59edd748e69a
(composition-function-table): Variable declaration
Kenichi Handa <handa@m17n.org>
parents:
30485
diff
changeset
|
315 Optional 3rd arg OBJECT, if non-nil, is a string that contains the |
89497 | 316 text to compose. In that case, POS and LIMIT index into the string. |
33244
59edd748e69a
(composition-function-table): Variable declaration
Kenichi Handa <handa@m17n.org>
parents:
30485
diff
changeset
|
317 |
26880 | 318 This function is the default value of `compose-chars-after-function'." |
319 (let ((tail (aref composition-function-table (char-after pos))) | |
320 pattern func result) | |
321 (when tail | |
30485
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
322 (save-match-data |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
323 (save-excursion |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49512
diff
changeset
|
324 (while (and tail (not func)) |
30485
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
325 (setq pattern (car (car tail)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
326 func (cdr (car tail))) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
327 (goto-char pos) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
328 (if (if limit |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
329 (and (re-search-forward pattern limit t) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
330 (= (match-beginning 0) pos)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
331 (looking-at pattern)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
332 (setq result (funcall func pos (match-end 0) pattern nil)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
333 (setq func nil tail (cdr tail))))))) |
26880 | 334 result)) |
335 | |
336 (defun compose-last-chars (args) | |
337 "Compose last characters. | |
35075
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
338 The argument is a parameterized event of the form |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
339 \(compose-last-chars N COMPONENTS), |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
340 where N is the number of characters before point to compose, |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
341 COMPONENTS, if non-nil, is the same as the argument to `compose-region' |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
342 \(which see). If it is nil, `compose-chars-after' is called, |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
343 and that function find a proper rule to compose the target characters. |
26880 | 344 This function is intended to be used from input methods. |
345 The global keymap binds special event `compose-last-chars' to this | |
35075
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
346 function. Input method may generate an event (compose-last-chars N COMPONENTS) |
26880 | 347 after a sequence character events." |
348 (interactive "e") | |
349 (let ((chars (nth 1 args))) | |
350 (if (and (numberp chars) | |
351 (>= (- (point) (point-min)) chars)) | |
35075
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
352 (if (nth 2 args) |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
353 (compose-region (- (point) chars) (point) (nth 2 args)) |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
354 (compose-chars-after (- (point) chars) (point)))))) |
26880 | 355 |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
356 (global-set-key [compose-last-chars] 'compose-last-chars) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
357 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
358 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
359 ;;; Automatic character composition. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
360 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
361 (defvar composition-function-table |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
362 (make-char-table nil) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
363 "Char table of functions for automatic character composition. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
364 For each character that has to be composed automatically with |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
365 preceding and/or following characters, this char table contains |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
366 a function to call to compose that character. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
367 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
368 Each function is called with two arguments, POS and STRING. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
369 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
370 If STRING is nil, POS is a position in the current buffer, and the |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
371 function has to compose a character at POS with surrounding characters |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
372 in the current buffer. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
373 |
89497 | 374 Otherwise, STRING is a string, and POS is an index into the string. In |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
375 this case, the function has to compose a character at POS with |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
376 surrounding characters in the string. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
377 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
378 See also the command `toggle-auto-composition'.") |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
379 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
380 ;; Copied from font-lock.el. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
381 (eval-when-compile |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
382 ;; Borrowed from lazy-lock.el. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
383 ;; We use this to preserve or protect things when modifying text properties. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
384 (defmacro save-buffer-state (varlist &rest body) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
385 "Bind variables according to VARLIST and eval BODY restoring buffer state." |
89307 | 386 `(let* ,(append varlist |
387 '((modified (buffer-modified-p)) (buffer-undo-list t) | |
388 (inhibit-read-only t) (inhibit-point-motion-hooks t) | |
389 (inhibit-modification-hooks t) | |
390 deactivate-mark buffer-file-name buffer-file-truename)) | |
391 ,@body | |
392 (unless modified | |
393 (restore-buffer-modified-p nil)))) | |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
394 (put 'save-buffer-state 'lisp-indent-function 1) |
89497 | 395 ;; Fixme: This makes bootstrapping fail with this error. |
89307 | 396 ;; Symbol's function definition is void: eval-defun |
397 ;;(def-edebug-spec save-buffer-state let) | |
398 ) | |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
399 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
400 (defun auto-compose-chars (pos string) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
401 "Compose characters after the buffer position POS. |
89497 | 402 If STRING is non-nil, it is a string, and POS is an index into the string. |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
403 In that case, compose characters in the string. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
404 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
405 This function is the default value of `auto-composition-function' (which see)." |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
406 (save-buffer-state nil |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
407 (save-excursion |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
408 (save-restriction |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
409 (save-match-data |
89559
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
410 (let ((start pos) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
411 (limit (next-single-property-change pos 'auto-composed string)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
412 ch func newpos) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
413 (if limit |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
414 (setq limit (1+ limit)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
415 (setq limit (if string (length string) (point-max)))) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
416 (catch 'tag |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
417 (if string |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
418 (while (< pos limit) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
419 (setq ch (aref string pos) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
420 pos (1+ pos)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
421 (if (= ch ?\n) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
422 (throw 'tag nil)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
423 (setq func (aref composition-function-table ch)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
424 (if (and (functionp func) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
425 (setq newpos (funcall func (1- pos) string)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
426 (> newpos pos)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
427 (setq pos newpos))) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
428 (while (< pos limit) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
429 (setq ch (char-after pos) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
430 pos (1+ pos)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
431 (if (= ch ?\n) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
432 (throw 'tag nil)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
433 (setq func (aref composition-function-table ch)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
434 (if (and (functionp func) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
435 (setq newpos (funcall func (1- pos) string)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
436 (> newpos pos)) |
44b83fad0b9b
(auto-composition-chunk-size): Variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
89528
diff
changeset
|
437 (setq pos newpos))))) |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
438 (put-text-property start pos 'auto-composed t string))))))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
439 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
440 (setq auto-composition-function 'auto-compose-chars) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
441 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
442 (defun toggle-auto-composition (&optional arg) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
443 "Change whether automatic character composition is enabled in this buffer. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
444 With arg, enable it iff arg is positive." |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
445 (interactive "P") |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
446 (let ((enable (if (null arg) (not auto-composition-function) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
447 (> (prefix-numeric-value arg) 0)))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
448 (if enable |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
449 (kill-local-variable 'auto-composition-function) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
450 (make-local-variable 'auto-composition-function) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
451 (setq auto-composition-function nil) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
452 (save-buffer-state nil |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
453 (save-restriction |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
454 (widen) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
455 (decompose-region (point-min) (point-max))))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
456 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
457 (save-buffer-state nil |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
458 (save-restriction |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
459 (widen) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
460 (put-text-property (point-min) (point-max) 'auto-composed nil))))) |
89528
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
461 |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
462 (defun auto-compose-region (from to) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
463 "Force automatic character composition on the region FROM and TO." |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
464 (save-excursion |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
465 (if (get-text-property from 'auto-composed) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
466 (setq from (next-single-property-change from 'auto-composed nil to))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
467 (goto-char from) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
468 (let ((modified-p (buffer-modified-p)) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
469 (inhibit-read-only '(composition auto-composed)) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
470 (stop (next-single-property-change (point) 'auto-composed nil to))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
471 (while (< (point) to) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
472 (if (= (point) stop) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
473 (progn |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
474 (goto-char (next-single-property-change (point) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
475 'auto-composed nil to)) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
476 (setq stop (next-single-property-change (point) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
477 'auto-composed nil to))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
478 (let ((func (aref composition-function-table (following-char))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
479 (pos (point))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
480 (if (functionp func) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
481 (goto-char (funcall func (point) nil))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
482 (if (<= (point) pos) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
483 (forward-char 1))))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
484 (put-text-property from to 'auto-composed t) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
485 (set-buffer-modified-p modified-p)))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
486 |
26880 | 487 |
488 ;;; The following codes are only for backward compatibility with Emacs | |
46045
c74a601c84b3
(decompose-composite-char): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
38414
diff
changeset
|
489 ;;; 20.4 and earlier. |
26880 | 490 |
491 (defun decompose-composite-char (char &optional type with-composition-rule) | |
492 "Convert CHAR to string. | |
493 | |
494 If optional 2nd arg TYPE is non-nil, it is `string', `list', or | |
49512
6a0305153436
(decompose-composite-char): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
46963
diff
changeset
|
495 `vector'. In this case, CHAR is converted to string, list of CHAR, or |
6a0305153436
(decompose-composite-char): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
46963
diff
changeset
|
496 vector of CHAR respectively. |
6a0305153436
(decompose-composite-char): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
46963
diff
changeset
|
497 Optional 3rd arg WITH-COMPOSITION-RULE is ignored." |
26880 | 498 (cond ((or (null type) (eq type 'string)) (char-to-string char)) |
499 ((eq type 'list) (list char)) | |
500 (t (vector char)))) | |
501 | |
29521
4ad26302d559
(decompose-composite-char): Declare it as obsolete.
Kenichi Handa <handa@m17n.org>
parents:
26880
diff
changeset
|
502 (make-obsolete 'decompose-composite-char 'char-to-string "21.1") |
4ad26302d559
(decompose-composite-char): Declare it as obsolete.
Kenichi Handa <handa@m17n.org>
parents:
26880
diff
changeset
|
503 |
26880 | 504 |
505 ;;; composite.el ends here |