1 ;;; composite.el --- support character composition
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5 ;; National Institute of Advanced Industrial Science and Technology (AIST)
6 ;; Registration Number H14PRO021
8 ;; Keywords: mule, multilingual, character composition
10 ;; This file is part of GNU Emacs.
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 3 of the License, or
15 ;; (at your option) any later version.
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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
43 rule in COMPONENTS argument to such functions as `compose-region'.
45 Meanings of glyph reference point codes are as follows:
47 0----1----2 <---- ascent 0:tl or top-left
48 | | 1:tc or top-center
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
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
63 For instance, if GLOBAL-REF-POINT is `br' (bottom-right) and
64 NEW-REF-POINT is `tc' (top-center), the overall glyph is updated as
65 follows (the point `*' corresponds to both reference points):
67 +-------+--+ <--- new ascent
71 -- | | |-- <--- baseline \(doesn't change)
75 +----+-----+ <--- new descent
77 A composition rule may have the form \(GLOBAL-REF-POINT
78 NEW-REF-POINT XOFF YOFF), where XOFF and YOFF specifies how much
79 to shift NEW-REF-POINT from GLOBAL-REF-POINT. In this case, XOFF
80 and YOFF are integers in the range -100..100 representing the
81 shifting percentage against the font size.")
85 (defun encode-composition-rule (rule)
86 "Encode composition rule RULE into an integer value.
87 RULE is a cons of global and new reference point symbols
88 \(see `reference-point-alist')."
90 ;; This must be compatible with C macro COMPOSITION_ENCODE_RULE
91 ;; defined in composite.h.
93 (if (and (integerp rule
) (< rule
144))
97 (let ((gref (car rule
))
100 (if (consp nref
) ; (GREF NREF XOFF YOFF)
102 (setq xoff
(nth 1 nref
)
105 (or (and (>= xoff -
100) (<= xoff
100)
106 (>= yoff -
100) (<= yoff
100))
107 (error "Invalid composition rule: %s" rule
))
108 (setq xoff
(+ xoff
128) yoff
(+ yoff
128)))
110 (setq xoff
0 yoff
0))
112 (setq gref
(cdr (assq gref reference-point-alist
))))
114 (setq nref
(cdr (assq nref reference-point-alist
))))
115 (or (and (>= gref
0) (< gref
12) (>= nref
0) (< nref
12))
116 (error "Invalid composition rule: %S" rule
))
117 (logior (lsh xoff
16) (lsh yoff
8) (+ (* gref
12) nref
)))
118 (error "Invalid composition rule: %S" rule
))))
120 ;; Decode encoded composition rule RULE-CODE. The value is a cons of
121 ;; global and new reference point symbols.
122 ;; This must be compatible with C macro COMPOSITION_DECODE_RULE
123 ;; defined in composite.h.
125 (defun decode-composition-rule (rule-code)
126 (or (and (natnump rule-code
) (< rule-code
#x1000000
))
127 (error "Invalid encoded composition rule: %S" rule-code
))
128 (let ((xoff (lsh rule-code -
16))
129 (yoff (logand (lsh rule-code -
8) #xFF
))
131 (setq rule-code
(logand rule-code
#xFF
)
132 gref
(car (rassq (/ rule-code
12) reference-point-alist
))
133 nref
(car (rassq (% rule-code
12) reference-point-alist
)))
134 (or (and gref
(symbolp gref
) nref
(symbolp nref
))
135 (error "Invalid composition rule code: %S" rule-code
))
136 (if (and (= xoff
0) (= yoff
0))
138 (setq xoff
(- xoff
128) yoff
(- yoff
128))
139 (list gref xoff yoff nref
))))
141 ;; Encode composition rules in composition components COMPONENTS. The
142 ;; value is a copy of COMPONENTS, where composition rules (cons of
143 ;; global and new glyph reference point symbols) are replaced with
144 ;; encoded composition rules. Optional 2nd argument NOCOPY non-nil
145 ;; means don't make a copy but modify COMPONENTS directly.
147 (defun encode-composition-components (components &optional nocopy
)
149 (setq components
(copy-sequence components
)))
150 (if (vectorp components
)
151 (let ((len (length components
))
155 (encode-composition-rule (aref components i
)))
157 (let ((tail (cdr components
)))
160 (encode-composition-rule (car tail
)))
161 (setq tail
(nthcdr 2 tail
)))))
164 ;; Decode composition rule codes in composition components COMPONENTS.
165 ;; The value is a copy of COMPONENTS, where composition rule codes are
166 ;; replaced with composition rules (cons of global and new glyph
167 ;; reference point symbols). Optional 2nd argument NOCOPY non-nil
168 ;; means don't make a copy but modify COMPONENTS directly.
169 ;; It is assumed that COMPONENTS is a vector and is for rule-base
170 ;; composition, thus (2N+1)th elements are rule codes.
172 (defun decode-composition-components (components &optional nocopy
)
174 (setq components
(copy-sequence components
)))
175 (let ((len (length components
))
179 (decode-composition-rule (aref components i
)))
183 (defun compose-region (start end
&optional components modification-func
)
184 "Compose characters in the current region.
186 Characters are composed relatively, i.e. composed by overstricking or
187 stacking depending on ascent, descent and other properties.
189 When called from a program, expects these four arguments.
191 First two arguments START and END are positions (integers or markers)
192 specifying the region.
194 Optional 3rd argument COMPONENTS, if non-nil, is a character, a string
195 or a vector or list of integers and rules.
197 If it is a character, it is an alternate character to display instead
198 of the text in the region.
200 If it is a string, the elements are alternate characters. In
201 this case, TAB element has a special meaning. If the first
202 characer is TAB, the glyphs are displayed with left padding space
203 so that no pixel overlaps with the previous column. If the last
204 character is TAB, the glyphs are displayed with rigth padding
205 space so that no pixel overlaps with the following column.
207 If it is a vector or list, it is a sequence of alternate characters and
208 composition rules, where (2N)th elements are characters and (2N+1)th
209 elements are composition rules to specify how to compose (2N+2)th
210 elements with previously composed N glyphs.
212 A composition rule is a cons of global and new glyph reference point
213 symbols. See the documentation of `reference-point-alist' for more
216 Optional 4th argument MODIFICATION-FUNC is a function to call to
217 adjust the composition when it gets invalid because of a change of
218 text in the composition."
220 (let ((modified-p (buffer-modified-p))
221 (inhibit-read-only t
))
222 (if (or (vectorp components
) (listp components
))
223 (setq components
(encode-composition-components components
)))
224 (compose-region-internal start end components modification-func
)
225 (restore-buffer-modified-p modified-p
)))
227 (defun decompose-region (start end
)
228 "Decompose text in the current region.
230 When called from a program, expects two arguments,
231 positions (integers or markers) specifying the region."
233 (let ((modified-p (buffer-modified-p))
234 (inhibit-read-only t
))
235 (remove-text-properties start end
'(composition nil
))
236 (restore-buffer-modified-p modified-p
)))
238 (defun compose-string (string &optional start end components modification-func
)
239 "Compose characters in string STRING.
241 The return value is STRING with the `composition' property put on all
242 the characters in it.
244 Optional 2nd and 3rd arguments START and END specify the range of
245 STRING to be composed. They default to the beginning and the end of
248 Optional 4th argument COMPONENTS, if non-nil, is a character or a
249 sequence (vector, list, or string) of integers. See the function
250 `compose-region' for more detail.
252 Optional 5th argument MODIFICATION-FUNC is a function to call to
253 adjust the composition when it gets invalid because of a change of
254 text in the composition."
255 (if (or (vectorp components
) (listp components
))
256 (setq components
(encode-composition-components components
)))
257 (or start
(setq start
0))
258 (or end
(setq end
(length string
)))
259 (compose-string-internal string start end components modification-func
)
262 (defun decompose-string (string)
263 "Return STRING where `composition' property is removed."
264 (remove-text-properties 0 (length string
) '(composition nil
) string
)
267 (defun compose-chars (&rest args
)
268 "Return a string from arguments in which all characters are composed.
269 For relative composition, arguments are characters.
270 For rule-based composition, Mth \(where M is odd) arguments are
271 characters, and Nth \(where N is even) arguments are composition rules.
272 A composition rule is a cons of glyph reference points of the form
273 \(GLOBAL-REF-POINT . NEW-REF-POINT). See the documentation of
274 `reference-point-alist' for more detail."
275 (let (str components
)
276 (if (consp (car (cdr args
)))
277 ;; Rule-base composition.
278 (let ((len (length args
))
279 (tail (encode-composition-components args
'nocopy
)))
282 (setq str
(cons (car tail
) str
))
283 (setq tail
(nthcdr 2 tail
)))
284 (setq str
(concat (nreverse str
))
286 ;; Relative composition.
287 (setq str
(concat args
)))
288 (compose-string-internal str
0 (length str
) components
)))
290 (defun find-composition (pos &optional limit string detail-p
)
291 "Return information about a composition at or nearest to buffer position POS.
293 If the character at POS has `composition' property, the value is a list
294 of FROM, TO, and VALID-P.
296 FROM and TO specify the range of text that has the same `composition'
297 property, VALID-P is t if this composition is valid, and nil if not.
299 If there's no composition at POS, and the optional 2nd argument LIMIT
300 is non-nil, search for a composition toward LIMIT.
302 If no composition is found, return nil.
304 Optional 3rd argument STRING, if non-nil, is a string to look for a
305 composition in; nil means the current buffer.
307 If a valid composition is found and the optional 4th argument DETAIL-P
308 is non-nil, the return value is a list of FROM, TO, COMPONENTS,
309 RELATIVE-P, MOD-FUNC, and WIDTH.
311 COMPONENTS is a vector of integers, the meaning depends on RELATIVE-P.
313 RELATIVE-P is t if the composition method is relative, else nil.
315 If RELATIVE-P is t, COMPONENTS is a vector of characters to be
316 composed. If RELATIVE-P is nil, COMPONENTS is a vector of characters
317 and composition rules as described in `compose-region'.
319 MOD-FUNC is a modification function of the composition.
321 WIDTH is a number of columns the composition occupies on the screen.
323 When Automatic Compostion mode is on, this function also finds a
324 chunk of text that is automatically composed. If such a chunk is
325 found closer to POS than the position that has `composition'
326 property, the value is a list of FROM, TO, and a glyph gstring
327 the specify how the chunk is composed. See the function
328 `composition-get-gstring' for the format of the glyph string."
329 (let ((result (find-composition-internal pos limit string detail-p
)))
330 (if (and detail-p
(> (length result
) 3) (nth 2 result
) (not (nth 3 result
)))
331 ;; This is a valid rule-base composition.
332 (decode-composition-components (nth 2 result
) 'nocopy
))
336 (defun compose-chars-after (pos &optional limit object
)
337 "Compose characters in current buffer after position POS.
339 It looks up the char-table `composition-function-table' (which
340 see) by a character at POS, and compose characters after POS
341 according to the contents of `composition-function-table'.
343 Optional 2nd arg LIMIT, if non-nil, limits characters to compose.
345 Optional 3rd arg OBJECT, if non-nil, is a string that contains the
346 text to compose. In that case, POS and LIMIT index into the string.
348 This function is the default value of `compose-chars-after-function'."
349 (let ((tail (aref composition-function-table
(char-after pos
)))
350 (font-obj (and (display-multi-font-p)
351 (and (not (stringp object
))
352 (font-at pos
(selected-window)))))
355 (setq limit
(if (stringp object
) (length object
) (point-max))))
356 (when (and font-obj tail
)
360 (if (functionp (car tail
))
361 (setq pattern nil func
(car tail
))
362 (setq pattern
(car (car tail
))
363 func
(cdr (car tail
))))
366 (if (and (if (stringp object
)
367 (eq (string-match pattern object
) 0)
368 (looking-at pattern
))
369 (<= (match-end 0) limit
))
371 (funcall func pos
(match-end 0) font-obj object
)))
372 (setq result
(funcall func pos limit font-obj object
)))
373 (if result
(setq tail nil
))))))
376 (defun compose-last-chars (args)
377 "Compose last characters.
378 The argument is a parameterized event of the form
379 \(compose-last-chars N COMPONENTS),
380 where N is the number of characters before point to compose,
381 COMPONENTS, if non-nil, is the same as the argument to `compose-region'
382 \(which see). If it is nil, `compose-chars-after' is called,
383 and that function finds a proper rule to compose the target characters.
384 This function is intended to be used from input methods.
385 The global keymap binds special event `compose-last-chars' to this
386 function. Input method may generate an event (compose-last-chars N COMPONENTS)
387 after a sequence of character events."
389 (let ((chars (nth 1 args
)))
390 (if (and (numberp chars
)
391 (>= (- (point) (point-min)) chars
))
393 (compose-region (- (point) chars
) (point) (nth 2 args
))
394 (compose-chars-after (- (point) chars
) (point))))))
396 (global-set-key [compose-last-chars
] 'compose-last-chars
)
399 ;;; Automatic character composition.
401 ;; Copied from font-lock.el.
403 ;; Borrowed from lazy-lock.el.
404 ;; We use this to preserve or protect things when modifying text properties.
405 (defmacro save-buffer-state
(varlist &rest body
)
406 "Bind variables according to VARLIST and eval BODY restoring buffer state."
407 `(let* ,(append varlist
408 '((modified (buffer-modified-p)) (buffer-undo-list t
)
409 (inhibit-read-only t
) (inhibit-point-motion-hooks t
)
410 (inhibit-modification-hooks t
)
411 deactivate-mark buffer-file-name buffer-file-truename
))
414 (restore-buffer-modified-p nil
))))
415 ;; Fixme: This makes bootstrapping fail with this error.
416 ;; Symbol's function definition is void: eval-defun
417 ;;(def-edebug-spec save-buffer-state let)
420 (put 'save-buffer-state
'lisp-indent-function
1)
422 ;; These macros must match with C macros LGSTRING_XXX and LGLYPH_XXX in font.h
423 (defsubst lgstring-header
(gstring) (aref gstring
0))
424 (defsubst lgstring-set-header
(gstring header
) (aset gstring
0 header
))
425 (defsubst lgstring-font
(gstring) (aref (lgstring-header gstring
) 0))
426 (defsubst lgstring-char
(gstring i
) (aref (lgstring-header gstring
) (1+ i
)))
427 (defsubst lgstring-char-len
(gstring) (1- (length (lgstring-header gstring
))))
428 (defsubst lgstring-shaped-p
(gstring) (aref gstring
1))
429 (defsubst lgstring-set-id
(gstring id
) (aset gstring
1 id
))
430 (defsubst lgstring-glyph
(gstring i
) (aref gstring
(+ i
2)))
431 (defsubst lgstring-glyph-len
(gstring) (- (length gstring
) 2))
432 (defsubst lgstring-set-glyph
(gstring i glyph
) (aset gstring
(+ i
2) glyph
))
434 (defsubst lglyph-from
(glyph) (aref glyph
0))
435 (defsubst lglyph-to
(glyph) (aref glyph
1))
436 (defsubst lglyph-char
(glyph) (aref glyph
2))
437 (defsubst lglyph-code
(glyph) (aref glyph
3))
438 (defsubst lglyph-width
(glyph) (aref glyph
4))
439 (defsubst lglyph-lbearing
(glyph) (aref glyph
5))
440 (defsubst lglyph-rbearing
(glyph) (aref glyph
6))
441 (defsubst lglyph-ascent
(glyph) (aref glyph
7))
442 (defsubst lglyph-descent
(glyph) (aref glyph
8))
443 (defsubst lglyph-adjustment
(glyph) (aref glyph
9))
445 (defsubst lglyph-set-from-to
(glyph from to
)
446 (progn (aset glyph
0 from
) (aset glyph
1 to
)))
447 (defsubst lglyph-set-char
(glyph char
) (aset glyph
2 char
))
448 (defsubst lglyph-set-width
(glyph width
) (aset glyph
4 width
))
449 (defsubst lglyph-set-adjustment
(glyph &optional xoff yoff wadjust
)
450 (aset glyph
9 (vector (or xoff
0) (or yoff
0) (or wadjust
0))))
452 (defsubst lglyph-copy
(glyph) (copy-sequence glyph
))
454 (defun lgstring-insert-glyph (gstring idx glyph
)
455 (let ((nglyphs (lgstring-glyph-len gstring
))
457 (while (and (< i nglyphs
) (setq g
(lgstring-glyph gstring i
)))
460 (setq gstring
(vconcat gstring
(vector glyph
)))
461 (if (< (1+ i
) nglyphs
)
462 (lgstring-set-glyph gstring
(1+ i
) nil
)))
464 (lgstring-set-glyph gstring i
(lgstring-glyph gstring
(1- i
)))
466 (lgstring-set-glyph gstring i glyph
)
469 (defun compose-glyph-string (gstring from to
)
470 (let ((glyph (lgstring-glyph gstring from
))
472 ascent descent lbearing rbearing
)
473 (setq from-pos
(lglyph-from glyph
)
474 to-pos
(lglyph-to (lgstring-glyph gstring
(1- to
))))
475 (lglyph-set-from-to glyph from-pos to-pos
)
476 (setq from
(1+ from
))
477 (while (and (< from to
)
478 (setq glyph
(lgstring-glyph gstring from
)))
479 (lglyph-set-from-to glyph from-pos to-pos
)
480 (let ((xoff (if (<= (lglyph-rbearing glyph
) 0) 0
481 (- (lglyph-width glyph
)))))
482 (lglyph-set-adjustment glyph xoff
0 0))
483 (setq from
(1+ from
)))
486 (defun compose-glyph-string-relative (gstring from to
&optional gap
)
487 (let ((font-object (lgstring-font gstring
))
488 (glyph (lgstring-glyph gstring from
))
490 ascent descent lbearing rbearing
)
492 (setq gap
(floor (* (font-get font-object
:size
) gap
)))
494 (setq from-pos
(lglyph-from glyph
)
495 to-pos
(lglyph-to (lgstring-glyph gstring
(1- to
)))
496 ascent
(lglyph-ascent glyph
)
497 descent
(lglyph-descent glyph
))
498 (lglyph-set-from-to glyph from-pos to-pos
)
499 (setq from
(1+ from
))
501 (setq glyph
(lgstring-glyph gstring from
))
502 (lglyph-set-from-to glyph from-pos to-pos
)
503 (let ((this-ascent (lglyph-ascent glyph
))
504 (this-descent (lglyph-descent glyph
))
506 (setq xoff
(if (<= (lglyph-rbearing glyph
) 0) 0
507 (- (lglyph-width glyph
))))
508 (if (> this-ascent
0)
509 (if (< this-descent
0)
510 (setq yoff
(- 0 ascent gap this-descent
)
511 ascent
(+ ascent gap this-ascent this-descent
))
513 (setq yoff
(+ descent gap this-ascent
)
514 descent
(+ descent gap this-ascent this-descent
)))
515 (if (or (/= xoff
0) (/= yoff
0))
516 (lglyph-set-adjustment glyph xoff yoff
0)))
517 (setq from
(1+ from
)))
520 (defun compose-gstring-for-graphic (gstring)
521 "Compose glyph-string GSTRING for graphic display.
522 Non-spacing characters are composed with the preceding base
523 character. If the preceding character is not a base character,
524 each non-spacing character is composed as a spacing character by
525 a padding space before and/or after the character.
527 All non-spacing characters has this function in
528 `composition-function-table' unless overwritten."
529 (let* ((header (lgstring-header gstring
))
530 (nchars (lgstring-char-len gstring
))
531 (nglyphs (lgstring-glyph-len gstring
))
532 (glyph (lgstring-glyph gstring
0)))
534 ;; A non-spacing character not following a proper base character.
536 (let ((lbearing (lglyph-lbearing glyph
))
537 (rbearing (lglyph-rbearing glyph
))
538 (width (lglyph-width glyph
))
541 (setq xoff
(- lbearing
))
542 (setq xoff
0 lbearing
0))
543 (if (< rbearing width
)
544 (setq rbearing width
))
545 (lglyph-set-adjustment glyph xoff
0 (- rbearing lbearing
))
548 ;; This sequence doesn't start with a proper base character.
549 ((memq (get-char-code-property (lgstring-char gstring
0)
551 '(Mn Mc Me Zs Zl Zp Cc Cf Cs
))
554 ;; A base character and the following non-spacing characters.
556 (let ((gstr (font-shape-gstring gstring
)))
558 (> (lglyph-to (lgstring-glyph gstr
0)) 0))
560 ;; The shaper of the font couldn't shape the gstring.
561 ;; Shape them according to canonical-combining-class.
562 (lgstring-set-id gstring nil
)
563 (let* ((width (lglyph-width glyph
))
564 (ascent (lglyph-ascent glyph
))
565 (descent (lglyph-descent glyph
))
566 (rbearing (lglyph-rbearing glyph
))
567 (lbearing (lglyph-lbearing glyph
))
568 (center (/ (+ lbearing rbearing
) 2))
569 (gap (round (* (font-get (lgstring-font gstring
) :size
) 0.1)))
572 (setq glyph
(lgstring-glyph gstring i
))
574 (let* ((class (get-char-code-property
575 (lglyph-char glyph
) 'canonical-combining-class
))
576 (lb (lglyph-lbearing glyph
))
577 (rb (lglyph-rbearing glyph
))
578 (as (lglyph-ascent glyph
))
579 (de (lglyph-descent glyph
))
582 (when (and class
(>= class
200) (<= class
240))
586 (setq xoff
(- lbearing ce
)
587 yoff
(if (> as
0) 0 (+ descent as
))))
589 (if (> as
0) (setq as
0))
590 (setq xoff
(- center ce
)
591 yoff
(if (> as
0) 0 (+ descent as
))))
593 (if (> as
0) (setq as
0))
594 (setq xoff
(- rbearing ce
)
595 yoff
(if (> as
0) 0 (+ descent as
))))
597 (setq xoff
(- lbearing rb
)))
599 (setq xoff
(- rbearing lb
)))
601 (setq xoff
(- lbearing ce
)
602 yoff
(if (>= de
0) 0 (- (- ascent
) de
))))
604 (setq xoff
(- center ce
)
605 yoff
(if (>= de
0) 0 (- (- ascent
) de
))))
607 (setq xoff
(- rbearing ce
)
608 yoff
(if (>= de
0) 0 (- (- ascent
) de
))))
610 (setq xoff
(- lbearing ce
)
611 yoff
(if (> as
0) 0 (+ descent as gap
))))
613 (setq xoff
(- center ce
)
614 yoff
(if (> as
0) 0 (+ descent as gap
))))
616 (setq xoff
(- rbearing ce
)
617 yoff
(if (> as
0) 0 (+ descent as gap
))))
619 (setq xoff
(- lbearing rb
)))
621 (setq xoff
(- rbearing lb
)))
623 (setq xoff
(- lbearing ce
)
624 yoff
(if (>= de
0) 0 (- (- ascent
) de gap
))))
626 (setq xoff
(- center ce
)
627 yoff
(if (>= de
0) 0 (- (- ascent
) de gap
))))
629 (setq xoff
(- rbearing ce
)
630 yoff
(if (>= de
0) 0 (- (+ ascent de
) gap
)))))
631 (lglyph-set-adjustment glyph
(- xoff width
) yoff
)
639 (setq descent de
))))))
641 (while (and (< i nglyphs
) (setq glyph
(lgstring-glyph gstring i
)))
642 (lglyph-set-from-to glyph
0 (1- nchars
))
646 (let ((elt '(["[[:alpha:]]\\c^+" 1 compose-gstring-for-graphic
]
647 [nil
0 compose-gstring-for-graphic
])))
651 (set-char-table-range composition-function-table key elt
)))
654 (defun compose-gstring-for-terminal (gstring)
655 "Compose glyph string GSTRING for terminal display.
656 Non-spacing characters are composed with the preceding base
657 character. If the preceding character is not a base character,
658 each non-spacing character is composed as a spacing character by
659 a prepending a space before it."
660 (let* ((header (lgstring-header gstring
))
661 (nchars (lgstring-char-len gstring
))
662 (nglyphs (lgstring-glyph-len gstring
))
665 (while (and (< i nglyphs
)
666 (setq glyph
(lgstring-glyph gstring i
)))
667 (if (= (lglyph-width glyph
) 0)
669 ;; Compose by prepending a space.
670 (setq gstring
(lgstring-insert-glyph gstring i
(lglyph-copy glyph
))
671 nglyphs
(lgstring-glyph-len gstring
))
672 (lglyph-set-char (lgstring-glyph gstring i
) 32)
674 (let ((from (lglyph-from glyph
))
675 (to (lglyph-to glyph
))
677 (while (and (< j nglyphs
)
678 (setq glyph
(lgstring-glyph gstring j
))
679 (= (lglyph-width glyph
) 0))
680 (setq to
(lglyph-to glyph
)
683 (setq glyph
(lgstring-glyph gstring i
))
684 (lglyph-set-from-to glyph from to
)
689 (defun auto-compose-chars (func from to font-object string
)
690 "Compose the characters at FROM by FUNC.
691 FUNC is called with one argument GSTRING which is built for characters
692 in the region FROM (inclusive) and TO (exclusive).
694 If the character are composed on a graphic display, FONT-OBJECT
697 Otherwise, FONT-OBJECT is nil, and the fucntion
698 `compose-gstring-for-terminal' is used instead of FUNC.
700 If STRING is non-nil, it is a string, and FROM and TO are indices
701 into the string. In that case, compose characters in the string.
703 The value is a gstring containing information for shaping the characters.
705 This function is the default value of `auto-composition-function' (which see)."
706 (let ((gstring (composition-get-gstring from to font-object string
)))
707 (if (lgstring-shaped-p gstring
)
710 (setq func
'compose-gstring-for-terminal
))
711 (funcall func gstring
))))
713 (make-variable-buffer-local 'auto-composition-function
)
716 (define-minor-mode auto-composition-mode
717 "Toggle Auto Composition mode.
718 With ARG, turn Auto Composition mode off if and only if ARG is a non-positive
719 number; if ARG is nil, toggle Auto Composition mode; anything else turns Auto
722 When Auto Composition is enabled, text characters are automatically composed
723 by functions registered in `composition-function-table' (which see).
725 You can use `global-auto-composition-mode' to turn on
726 Auto Composition mode in all buffers (this is the default)."
729 (setq auto-composition-mode nil
))
730 (cond (auto-composition-mode
731 (add-hook 'after-change-functions
'auto-composition-after-change nil t
)
732 (setq auto-composition-function
'auto-compose-chars
))
734 (remove-hook 'after-change-functions
'auto-composition-after-change t
)
735 (setq auto-composition-function nil
)))
736 (save-buffer-state nil
739 (remove-text-properties (point-min) (point-max) '(auto-composed nil
))
740 (decompose-region (point-min) (point-max)))))
742 (defun auto-composition-after-change (start end old-len
)
743 (save-buffer-state nil
744 (if (< start
(point-min))
745 (setq start
(point-min)))
746 (if (> end
(point-max))
747 (setq end
(point-max)))
748 (when (and auto-composition-mode
(not memory-full
))
750 (when (and (> start
(point-min))
751 (setq func2
(aref composition-function-table
752 (char-after (1- start
))))
753 (or (= start
(point-max))
754 (not (setq func1
(aref composition-function-table
755 (char-after start
))))
757 (setq start
(1- start
)
759 (while (eq func1 func2
)
760 (if (> start
(point-min))
761 (setq start
(1- start
)
762 func2
(aref composition-function-table
765 (when (and (< end
(point-max))
766 (setq func2
(aref composition-function-table
768 (or (= end
(point-min))
769 (not (setq func1
(aref composition-function-table
770 (char-after (1- end
)))))
774 (while (eq func1 func2
)
775 (if (< end
(point-max))
776 (setq func2
(aref composition-function-table
781 (remove-text-properties start end
'(auto-composed nil
)))))))
783 (defun turn-on-auto-composition-if-enabled ()
784 (if enable-multibyte-characters
785 (auto-composition-mode 1)))
788 (define-global-minor-mode global-auto-composition-mode
789 auto-composition-mode turn-on-auto-composition-if-enabled
791 :initialize
'custom-initialize-safe-default
792 :init-value
(not noninteractive
)
793 :group
'auto-composition
796 (defun toggle-auto-composition (&optional arg
)
797 "Change whether automatic character composition is enabled in this buffer.
798 With arg, enable it if and only if arg is positive."
800 (let ((enable (if (null arg
) (not auto-composition-function
)
801 (> (prefix-numeric-value arg
) 0))))
803 (kill-local-variable 'auto-composition-function
)
804 (make-local-variable 'auto-composition-function
)
805 (setq auto-composition-function nil
)
806 (save-buffer-state nil
809 (decompose-region (point-min) (point-max)))))
811 (save-buffer-state nil
814 (remove-text-properties (point-min) (point-max)
815 '(auto-composed nil
))))))
817 (defun auto-compose-region (from to
)
818 "Force automatic character composition on the region FROM and TO."
820 (if (get-text-property from
'auto-composed
)
821 (setq from
(next-single-property-change from
'auto-composed nil to
)))
823 (let ((modified-p (buffer-modified-p))
824 (inhibit-read-only '(composition auto-composed
))
825 (stop (next-single-property-change (point) 'auto-composed nil to
)))
826 (while (< (point) to
)
829 (goto-char (next-single-property-change (point)
830 'auto-composed nil to
))
831 (setq stop
(next-single-property-change (point)
832 'auto-composed nil to
)))
833 (let ((func (aref composition-function-table
(following-char)))
834 (font-obj (and (display-multi-font-p)
835 (font-at (point) (selected-window))))
837 (if (and (functionp func
) font-obj
)
838 (goto-char (funcall func
(point) to font-obj nil
)))
841 (put-text-property from to
'auto-composed t
)
842 (set-buffer-modified-p modified-p
))))
845 ;; The following codes are only for backward compatibility with Emacs
848 (defun decompose-composite-char (char &optional type with-composition-rule
)
849 "Convert CHAR to string.
851 If optional 2nd arg TYPE is non-nil, it is `string', `list', or
852 `vector'. In this case, CHAR is converted to string, list of CHAR, or
853 vector of CHAR respectively.
854 Optional 3rd arg WITH-COMPOSITION-RULE is ignored."
855 (cond ((or (null type
) (eq type
'string
)) (char-to-string char
))
856 ((eq type
'list
) (list char
))
859 (make-obsolete 'decompose-composite-char
'char-to-string
"21.1")
863 ;; arch-tag: ee703d77-1723-45d4-a31f-e9f0f867aa33
864 ;;; composite.el ends here